blob: ea1e56e21a310214da9abe5ce03393cc6be12916 [file] [log] [blame]
Thomas Gleixneraf1a8892019-05-20 19:08:12 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * raid5.c : Multiple Devices driver for Linux
4 * Copyright (C) 1996, 1997 Ingo Molnar, Miguel de Icaza, Gadi Oxman
5 * Copyright (C) 1999, 2000 Ingo Molnar
NeilBrown16a53ec2006-06-26 00:27:38 -07006 * Copyright (C) 2002, 2003 H. Peter Anvin
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
NeilBrown16a53ec2006-06-26 00:27:38 -07008 * RAID-4/5/6 management functions.
9 * Thanks to Penguin Computing for making the RAID-6 development possible
10 * by donating a test server!
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 */
12
NeilBrownae3c20c2006-07-10 04:44:17 -070013/*
14 * BITMAP UNPLUGGING:
15 *
16 * The sequencing for updating the bitmap reliably is a little
17 * subtle (and I got it wrong the first time) so it deserves some
18 * explanation.
19 *
20 * We group bitmap updates into batches. Each batch has a number.
21 * We may write out several batches at once, but that isn't very important.
NeilBrown7c13edc2011-04-18 18:25:43 +100022 * conf->seq_write is the number of the last batch successfully written.
23 * conf->seq_flush is the number of the last batch that was closed to
NeilBrownae3c20c2006-07-10 04:44:17 -070024 * new additions.
25 * When we discover that we will need to write to any block in a stripe
26 * (in add_stripe_bio) we update the in-memory bitmap and record in sh->bm_seq
NeilBrown7c13edc2011-04-18 18:25:43 +100027 * the number of the batch it will be in. This is seq_flush+1.
NeilBrownae3c20c2006-07-10 04:44:17 -070028 * When we are ready to do a write, if that batch hasn't been written yet,
29 * we plug the array and queue the stripe for later.
30 * When an unplug happens, we increment bm_flush, thus closing the current
31 * batch.
32 * When we notice that bm_flush > bm_write, we write out all pending updates
33 * to the bitmap, and advance bm_write to where bm_flush was.
34 * This may occasionally write a bit out twice, but is sure never to
35 * miss any bits.
36 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
NeilBrownbff61972009-03-31 14:33:13 +110038#include <linux/blkdev.h>
NeilBrownf6705572006-03-27 01:18:11 -080039#include <linux/kthread.h>
Dan Williamsf701d582009-03-31 15:09:39 +110040#include <linux/raid/pq.h>
Dan Williams91c00922007-01-02 13:52:30 -070041#include <linux/async_tx.h>
Paul Gortmaker056075c2011-07-03 13:58:33 -040042#include <linux/module.h>
Dan Williams07a3b412009-08-29 19:13:13 -070043#include <linux/async.h>
NeilBrownbff61972009-03-31 14:33:13 +110044#include <linux/seq_file.h>
Dan Williams36d1c642009-07-14 11:48:22 -070045#include <linux/cpu.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090046#include <linux/slab.h>
Christian Dietrich8bda4702011-07-27 11:00:36 +100047#include <linux/ratelimit.h>
Shaohua Li851c30c2013-08-28 14:30:16 +080048#include <linux/nodemask.h>
Ingo Molnar3f07c012017-02-08 18:51:30 +010049
NeilBrowna9add5d2012-10-31 11:59:09 +110050#include <trace/events/block.h>
Shaohua Liaaf9f122017-03-03 22:06:12 -080051#include <linux/list_sort.h>
NeilBrowna9add5d2012-10-31 11:59:09 +110052
NeilBrown43b2e5d2009-03-31 14:33:13 +110053#include "md.h"
NeilBrownbff61972009-03-31 14:33:13 +110054#include "raid5.h"
Trela Maciej54071b32010-03-08 16:02:42 +110055#include "raid0.h"
Mike Snitzer935fe092017-10-10 17:02:41 -040056#include "md-bitmap.h"
Artur Paszkiewiczff875732017-03-09 09:59:58 +010057#include "raid5-log.h"
NeilBrown72626682005-09-09 16:23:54 -070058
Shaohua Li394ed8e2017-01-04 16:10:19 -080059#define UNSUPPORTED_MDDEV_FLAGS (1L << MD_FAILFAST_SUPPORTED)
60
Shaohua Li851c30c2013-08-28 14:30:16 +080061#define cpu_to_group(cpu) cpu_to_node(cpu)
62#define ANY_GROUP NUMA_NO_NODE
63
NeilBrown8e0e99b2014-10-02 13:45:00 +100064static bool devices_handle_discard_safely = false;
65module_param(devices_handle_discard_safely, bool, 0644);
66MODULE_PARM_DESC(devices_handle_discard_safely,
67 "Set to Y if all devices in each array reliably return zeroes on reads from discarded regions");
Shaohua Li851c30c2013-08-28 14:30:16 +080068static struct workqueue_struct *raid5_wq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
NeilBrownd1688a62011-10-11 16:49:52 +110070static inline struct hlist_head *stripe_hash(struct r5conf *conf, sector_t sect)
NeilBrowndb298e12011-10-07 14:23:00 +110071{
Yufen Yuc911c462020-07-18 05:29:07 -040072 int hash = (sect >> RAID5_STRIPE_SHIFT(conf)) & HASH_MASK;
NeilBrowndb298e12011-10-07 14:23:00 +110073 return &conf->stripe_hashtbl[hash];
74}
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Yufen Yuc911c462020-07-18 05:29:07 -040076static inline int stripe_hash_locks_hash(struct r5conf *conf, sector_t sect)
Shaohua Li566c09c2013-11-14 15:16:17 +110077{
Yufen Yuc911c462020-07-18 05:29:07 -040078 return (sect >> RAID5_STRIPE_SHIFT(conf)) & STRIPE_HASH_LOCKS_MASK;
Shaohua Li566c09c2013-11-14 15:16:17 +110079}
80
81static inline void lock_device_hash_lock(struct r5conf *conf, int hash)
82{
83 spin_lock_irq(conf->hash_locks + hash);
84 spin_lock(&conf->device_lock);
85}
86
87static inline void unlock_device_hash_lock(struct r5conf *conf, int hash)
88{
89 spin_unlock(&conf->device_lock);
90 spin_unlock_irq(conf->hash_locks + hash);
91}
92
93static inline void lock_all_device_hash_locks_irq(struct r5conf *conf)
94{
95 int i;
Julia Cartwright3d05f3a2017-04-28 12:41:02 -050096 spin_lock_irq(conf->hash_locks);
Shaohua Li566c09c2013-11-14 15:16:17 +110097 for (i = 1; i < NR_STRIPE_HASH_LOCKS; i++)
98 spin_lock_nest_lock(conf->hash_locks + i, conf->hash_locks);
99 spin_lock(&conf->device_lock);
100}
101
102static inline void unlock_all_device_hash_locks_irq(struct r5conf *conf)
103{
104 int i;
105 spin_unlock(&conf->device_lock);
Julia Cartwright3d05f3a2017-04-28 12:41:02 -0500106 for (i = NR_STRIPE_HASH_LOCKS - 1; i; i--)
107 spin_unlock(conf->hash_locks + i);
108 spin_unlock_irq(conf->hash_locks);
Shaohua Li566c09c2013-11-14 15:16:17 +1100109}
110
NeilBrownd0dabf72009-03-31 14:39:38 +1100111/* Find first data disk in a raid6 stripe */
112static inline int raid6_d0(struct stripe_head *sh)
113{
NeilBrown67cc2b82009-03-31 14:39:38 +1100114 if (sh->ddf_layout)
115 /* ddf always start from first device */
116 return 0;
117 /* md starts just after Q block */
NeilBrownd0dabf72009-03-31 14:39:38 +1100118 if (sh->qd_idx == sh->disks - 1)
119 return 0;
120 else
121 return sh->qd_idx + 1;
122}
NeilBrown16a53ec2006-06-26 00:27:38 -0700123static inline int raid6_next_disk(int disk, int raid_disks)
124{
125 disk++;
126 return (disk < raid_disks) ? disk : 0;
127}
Dan Williamsa4456852007-07-09 11:56:43 -0700128
NeilBrownd0dabf72009-03-31 14:39:38 +1100129/* When walking through the disks in a raid5, starting at raid6_d0,
130 * We need to map each disk to a 'slot', where the data disks are slot
131 * 0 .. raid_disks-3, the parity disk is raid_disks-2 and the Q disk
132 * is raid_disks-1. This help does that mapping.
133 */
NeilBrown67cc2b82009-03-31 14:39:38 +1100134static int raid6_idx_to_slot(int idx, struct stripe_head *sh,
135 int *count, int syndrome_disks)
NeilBrownd0dabf72009-03-31 14:39:38 +1100136{
Dan Williams66295422009-10-19 18:09:32 -0700137 int slot = *count;
NeilBrown67cc2b82009-03-31 14:39:38 +1100138
NeilBrowne4424fe2009-10-16 16:27:34 +1100139 if (sh->ddf_layout)
Dan Williams66295422009-10-19 18:09:32 -0700140 (*count)++;
NeilBrownd0dabf72009-03-31 14:39:38 +1100141 if (idx == sh->pd_idx)
NeilBrown67cc2b82009-03-31 14:39:38 +1100142 return syndrome_disks;
NeilBrownd0dabf72009-03-31 14:39:38 +1100143 if (idx == sh->qd_idx)
NeilBrown67cc2b82009-03-31 14:39:38 +1100144 return syndrome_disks + 1;
NeilBrowne4424fe2009-10-16 16:27:34 +1100145 if (!sh->ddf_layout)
Dan Williams66295422009-10-19 18:09:32 -0700146 (*count)++;
NeilBrownd0dabf72009-03-31 14:39:38 +1100147 return slot;
148}
149
NeilBrownd1688a62011-10-11 16:49:52 +1100150static void print_raid5_conf (struct r5conf *conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
Dan Williams600aa102008-06-28 08:32:05 +1000152static int stripe_operations_active(struct stripe_head *sh)
153{
154 return sh->check_state || sh->reconstruct_state ||
155 test_bit(STRIPE_BIOFILL_RUN, &sh->state) ||
156 test_bit(STRIPE_COMPUTE_RUN, &sh->state);
157}
158
Shaohua Li535ae4e2017-02-15 19:37:32 -0800159static bool stripe_is_lowprio(struct stripe_head *sh)
160{
161 return (test_bit(STRIPE_R5C_FULL_STRIPE, &sh->state) ||
162 test_bit(STRIPE_R5C_PARTIAL_STRIPE, &sh->state)) &&
163 !test_bit(STRIPE_R5C_CACHING, &sh->state);
164}
165
Shaohua Li851c30c2013-08-28 14:30:16 +0800166static void raid5_wakeup_stripe_thread(struct stripe_head *sh)
167{
168 struct r5conf *conf = sh->raid_conf;
169 struct r5worker_group *group;
Shaohua Libfc90cb2013-08-29 15:40:32 +0800170 int thread_cnt;
Shaohua Li851c30c2013-08-28 14:30:16 +0800171 int i, cpu = sh->cpu;
172
173 if (!cpu_online(cpu)) {
174 cpu = cpumask_any(cpu_online_mask);
175 sh->cpu = cpu;
176 }
177
178 if (list_empty(&sh->lru)) {
179 struct r5worker_group *group;
180 group = conf->worker_groups + cpu_to_group(cpu);
Shaohua Li535ae4e2017-02-15 19:37:32 -0800181 if (stripe_is_lowprio(sh))
182 list_add_tail(&sh->lru, &group->loprio_list);
183 else
184 list_add_tail(&sh->lru, &group->handle_list);
Shaohua Libfc90cb2013-08-29 15:40:32 +0800185 group->stripes_cnt++;
186 sh->group = group;
Shaohua Li851c30c2013-08-28 14:30:16 +0800187 }
188
189 if (conf->worker_cnt_per_group == 0) {
190 md_wakeup_thread(conf->mddev->thread);
191 return;
192 }
193
194 group = conf->worker_groups + cpu_to_group(sh->cpu);
195
Shaohua Libfc90cb2013-08-29 15:40:32 +0800196 group->workers[0].working = true;
197 /* at least one worker should run to avoid race */
198 queue_work_on(sh->cpu, raid5_wq, &group->workers[0].work);
199
200 thread_cnt = group->stripes_cnt / MAX_STRIPE_BATCH - 1;
201 /* wakeup more workers */
202 for (i = 1; i < conf->worker_cnt_per_group && thread_cnt > 0; i++) {
203 if (group->workers[i].working == false) {
204 group->workers[i].working = true;
205 queue_work_on(sh->cpu, raid5_wq,
206 &group->workers[i].work);
207 thread_cnt--;
208 }
209 }
Shaohua Li851c30c2013-08-28 14:30:16 +0800210}
211
Shaohua Li566c09c2013-11-14 15:16:17 +1100212static void do_release_stripe(struct r5conf *conf, struct stripe_head *sh,
213 struct list_head *temp_inactive_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214{
Song Liu1e6d6902016-11-17 15:24:39 -0800215 int i;
216 int injournal = 0; /* number of date pages with R5_InJournal */
217
Shaohua Li4eb788d2012-07-19 16:01:31 +1000218 BUG_ON(!list_empty(&sh->lru));
219 BUG_ON(atomic_read(&conf->active_stripes)==0);
Song Liu1e6d6902016-11-17 15:24:39 -0800220
221 if (r5c_is_writeback(conf->log))
222 for (i = sh->disks; i--; )
223 if (test_bit(R5_InJournal, &sh->dev[i].flags))
224 injournal++;
Song Liua39f7af2016-11-17 15:24:40 -0800225 /*
Song Liu5ddf0442017-05-11 17:03:44 -0700226 * In the following cases, the stripe cannot be released to cached
227 * lists. Therefore, we make the stripe write out and set
228 * STRIPE_HANDLE:
229 * 1. when quiesce in r5c write back;
230 * 2. when resync is requested fot the stripe.
Song Liua39f7af2016-11-17 15:24:40 -0800231 */
Song Liu5ddf0442017-05-11 17:03:44 -0700232 if (test_bit(STRIPE_SYNC_REQUESTED, &sh->state) ||
233 (conf->quiesce && r5c_is_writeback(conf->log) &&
234 !test_bit(STRIPE_HANDLE, &sh->state) && injournal != 0)) {
Song Liua39f7af2016-11-17 15:24:40 -0800235 if (test_bit(STRIPE_R5C_CACHING, &sh->state))
236 r5c_make_stripe_write_out(sh);
237 set_bit(STRIPE_HANDLE, &sh->state);
238 }
Song Liu1e6d6902016-11-17 15:24:39 -0800239
Shaohua Li4eb788d2012-07-19 16:01:31 +1000240 if (test_bit(STRIPE_HANDLE, &sh->state)) {
241 if (test_bit(STRIPE_DELAYED, &sh->state) &&
Jes Sorensenad3ab8b2015-01-29 12:38:29 -0500242 !test_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
Shaohua Li4eb788d2012-07-19 16:01:31 +1000243 list_add_tail(&sh->lru, &conf->delayed_list);
Jes Sorensenad3ab8b2015-01-29 12:38:29 -0500244 else if (test_bit(STRIPE_BIT_DELAY, &sh->state) &&
Shaohua Li4eb788d2012-07-19 16:01:31 +1000245 sh->bm_seq - conf->seq_write > 0)
246 list_add_tail(&sh->lru, &conf->bitmap_list);
247 else {
248 clear_bit(STRIPE_DELAYED, &sh->state);
249 clear_bit(STRIPE_BIT_DELAY, &sh->state);
Shaohua Li851c30c2013-08-28 14:30:16 +0800250 if (conf->worker_cnt_per_group == 0) {
Shaohua Li535ae4e2017-02-15 19:37:32 -0800251 if (stripe_is_lowprio(sh))
252 list_add_tail(&sh->lru,
253 &conf->loprio_list);
254 else
255 list_add_tail(&sh->lru,
256 &conf->handle_list);
Shaohua Li851c30c2013-08-28 14:30:16 +0800257 } else {
258 raid5_wakeup_stripe_thread(sh);
259 return;
260 }
Shaohua Li4eb788d2012-07-19 16:01:31 +1000261 }
262 md_wakeup_thread(conf->mddev->thread);
263 } else {
264 BUG_ON(stripe_operations_active(sh));
265 if (test_and_clear_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
266 if (atomic_dec_return(&conf->preread_active_stripes)
267 < IO_THRESHOLD)
268 md_wakeup_thread(conf->mddev->thread);
269 atomic_dec(&conf->active_stripes);
Song Liu1e6d6902016-11-17 15:24:39 -0800270 if (!test_bit(STRIPE_EXPANDING, &sh->state)) {
271 if (!r5c_is_writeback(conf->log))
272 list_add_tail(&sh->lru, temp_inactive_list);
273 else {
274 WARN_ON(test_bit(R5_InJournal, &sh->dev[sh->pd_idx].flags));
275 if (injournal == 0)
276 list_add_tail(&sh->lru, temp_inactive_list);
277 else if (injournal == conf->raid_disks - conf->max_degraded) {
278 /* full stripe */
279 if (!test_and_set_bit(STRIPE_R5C_FULL_STRIPE, &sh->state))
280 atomic_inc(&conf->r5c_cached_full_stripes);
281 if (test_and_clear_bit(STRIPE_R5C_PARTIAL_STRIPE, &sh->state))
282 atomic_dec(&conf->r5c_cached_partial_stripes);
283 list_add_tail(&sh->lru, &conf->r5c_full_stripe_list);
Song Liua39f7af2016-11-17 15:24:40 -0800284 r5c_check_cached_full_stripe(conf);
Song Liu03b047f2017-01-11 13:39:14 -0800285 } else
286 /*
287 * STRIPE_R5C_PARTIAL_STRIPE is set in
288 * r5c_try_caching_write(). No need to
289 * set it again.
290 */
Song Liu1e6d6902016-11-17 15:24:39 -0800291 list_add_tail(&sh->lru, &conf->r5c_partial_stripe_list);
Song Liu1e6d6902016-11-17 15:24:39 -0800292 }
293 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 }
295}
NeilBrownd0dabf72009-03-31 14:39:38 +1100296
Shaohua Li566c09c2013-11-14 15:16:17 +1100297static void __release_stripe(struct r5conf *conf, struct stripe_head *sh,
298 struct list_head *temp_inactive_list)
Shaohua Li4eb788d2012-07-19 16:01:31 +1000299{
300 if (atomic_dec_and_test(&sh->count))
Shaohua Li566c09c2013-11-14 15:16:17 +1100301 do_release_stripe(conf, sh, temp_inactive_list);
302}
303
304/*
305 * @hash could be NR_STRIPE_HASH_LOCKS, then we have a list of inactive_list
306 *
307 * Be careful: Only one task can add/delete stripes from temp_inactive_list at
308 * given time. Adding stripes only takes device lock, while deleting stripes
309 * only takes hash lock.
310 */
311static void release_inactive_stripe_list(struct r5conf *conf,
312 struct list_head *temp_inactive_list,
313 int hash)
314{
315 int size;
Shaohua Li6ab2a4b2016-02-25 16:24:42 -0800316 bool do_wakeup = false;
Shaohua Li566c09c2013-11-14 15:16:17 +1100317 unsigned long flags;
318
319 if (hash == NR_STRIPE_HASH_LOCKS) {
320 size = NR_STRIPE_HASH_LOCKS;
321 hash = NR_STRIPE_HASH_LOCKS - 1;
322 } else
323 size = 1;
324 while (size) {
325 struct list_head *list = &temp_inactive_list[size - 1];
326
327 /*
Shaohua Li6d036f72015-08-13 14:31:57 -0700328 * We don't hold any lock here yet, raid5_get_active_stripe() might
Shaohua Li566c09c2013-11-14 15:16:17 +1100329 * remove stripes from the list
330 */
331 if (!list_empty_careful(list)) {
332 spin_lock_irqsave(conf->hash_locks + hash, flags);
Shaohua Li4bda5562013-11-14 15:16:17 +1100333 if (list_empty(conf->inactive_list + hash) &&
334 !list_empty(list))
335 atomic_dec(&conf->empty_inactive_list_nr);
Shaohua Li566c09c2013-11-14 15:16:17 +1100336 list_splice_tail_init(list, conf->inactive_list + hash);
Shaohua Li6ab2a4b2016-02-25 16:24:42 -0800337 do_wakeup = true;
Shaohua Li566c09c2013-11-14 15:16:17 +1100338 spin_unlock_irqrestore(conf->hash_locks + hash, flags);
339 }
340 size--;
341 hash--;
342 }
343
344 if (do_wakeup) {
Shaohua Li6ab2a4b2016-02-25 16:24:42 -0800345 wake_up(&conf->wait_for_stripe);
Yuanhan Liub1b46482015-05-08 18:19:06 +1000346 if (atomic_read(&conf->active_stripes) == 0)
347 wake_up(&conf->wait_for_quiescent);
Shaohua Li566c09c2013-11-14 15:16:17 +1100348 if (conf->retry_read_aligned)
349 md_wakeup_thread(conf->mddev->thread);
350 }
Shaohua Li4eb788d2012-07-19 16:01:31 +1000351}
352
Shaohua Li773ca822013-08-27 17:50:39 +0800353/* should hold conf->device_lock already */
Shaohua Li566c09c2013-11-14 15:16:17 +1100354static int release_stripe_list(struct r5conf *conf,
355 struct list_head *temp_inactive_list)
Shaohua Li773ca822013-08-27 17:50:39 +0800356{
Byungchul Parkeae82632017-02-14 16:26:24 +0900357 struct stripe_head *sh, *t;
Shaohua Li773ca822013-08-27 17:50:39 +0800358 int count = 0;
359 struct llist_node *head;
360
361 head = llist_del_all(&conf->released_stripes);
Shaohua Lid265d9d2013-08-28 14:29:05 +0800362 head = llist_reverse_order(head);
Byungchul Parkeae82632017-02-14 16:26:24 +0900363 llist_for_each_entry_safe(sh, t, head, release_list) {
Shaohua Li566c09c2013-11-14 15:16:17 +1100364 int hash;
365
Shaohua Li773ca822013-08-27 17:50:39 +0800366 /* sh could be readded after STRIPE_ON_RELEASE_LIST is cleard */
367 smp_mb();
368 clear_bit(STRIPE_ON_RELEASE_LIST, &sh->state);
369 /*
370 * Don't worry the bit is set here, because if the bit is set
371 * again, the count is always > 1. This is true for
372 * STRIPE_ON_UNPLUG_LIST bit too.
373 */
Shaohua Li566c09c2013-11-14 15:16:17 +1100374 hash = sh->hash_lock_index;
375 __release_stripe(conf, sh, &temp_inactive_list[hash]);
Shaohua Li773ca822013-08-27 17:50:39 +0800376 count++;
377 }
378
379 return count;
380}
381
Shaohua Li6d036f72015-08-13 14:31:57 -0700382void raid5_release_stripe(struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383{
NeilBrownd1688a62011-10-11 16:49:52 +1100384 struct r5conf *conf = sh->raid_conf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 unsigned long flags;
Shaohua Li566c09c2013-11-14 15:16:17 +1100386 struct list_head list;
387 int hash;
Shaohua Li773ca822013-08-27 17:50:39 +0800388 bool wakeup;
NeilBrown16a53ec2006-06-26 00:27:38 -0700389
Eivind Sartocf170f32014-05-28 13:39:23 +1000390 /* Avoid release_list until the last reference.
391 */
392 if (atomic_add_unless(&sh->count, -1, 1))
393 return;
394
majianpengad4068d2013-11-14 15:16:15 +1100395 if (unlikely(!conf->mddev->thread) ||
396 test_and_set_bit(STRIPE_ON_RELEASE_LIST, &sh->state))
Shaohua Li773ca822013-08-27 17:50:39 +0800397 goto slow_path;
398 wakeup = llist_add(&sh->release_list, &conf->released_stripes);
399 if (wakeup)
400 md_wakeup_thread(conf->mddev->thread);
401 return;
402slow_path:
Shaohua Li773ca822013-08-27 17:50:39 +0800403 /* we are ok here if STRIPE_ON_RELEASE_LIST is set or not */
Anna-Maria Gleixner685dbca2018-07-03 22:01:36 +0200404 if (atomic_dec_and_lock_irqsave(&sh->count, &conf->device_lock, flags)) {
Shaohua Li566c09c2013-11-14 15:16:17 +1100405 INIT_LIST_HEAD(&list);
406 hash = sh->hash_lock_index;
407 do_release_stripe(conf, sh, &list);
Anna-Maria Gleixner08edaaa2018-07-03 22:01:37 +0200408 spin_unlock_irqrestore(&conf->device_lock, flags);
Shaohua Li566c09c2013-11-14 15:16:17 +1100409 release_inactive_stripe_list(conf, &list, hash);
Shaohua Li4eb788d2012-07-19 16:01:31 +1000410 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411}
412
NeilBrownfccddba2006-01-06 00:20:33 -0800413static inline void remove_hash(struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414{
Dan Williams45b42332007-07-09 11:56:43 -0700415 pr_debug("remove_hash(), stripe %llu\n",
416 (unsigned long long)sh->sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
NeilBrownfccddba2006-01-06 00:20:33 -0800418 hlist_del_init(&sh->hash);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419}
420
NeilBrownd1688a62011-10-11 16:49:52 +1100421static inline void insert_hash(struct r5conf *conf, struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422{
NeilBrownfccddba2006-01-06 00:20:33 -0800423 struct hlist_head *hp = stripe_hash(conf, sh->sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
Dan Williams45b42332007-07-09 11:56:43 -0700425 pr_debug("insert_hash(), stripe %llu\n",
426 (unsigned long long)sh->sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
NeilBrownfccddba2006-01-06 00:20:33 -0800428 hlist_add_head(&sh->hash, hp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429}
430
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431/* find an idle stripe, make sure it is unhashed, and return it. */
Shaohua Li566c09c2013-11-14 15:16:17 +1100432static struct stripe_head *get_free_stripe(struct r5conf *conf, int hash)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433{
434 struct stripe_head *sh = NULL;
435 struct list_head *first;
436
Shaohua Li566c09c2013-11-14 15:16:17 +1100437 if (list_empty(conf->inactive_list + hash))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 goto out;
Shaohua Li566c09c2013-11-14 15:16:17 +1100439 first = (conf->inactive_list + hash)->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 sh = list_entry(first, struct stripe_head, lru);
441 list_del_init(first);
442 remove_hash(sh);
443 atomic_inc(&conf->active_stripes);
Shaohua Li566c09c2013-11-14 15:16:17 +1100444 BUG_ON(hash != sh->hash_lock_index);
Shaohua Li4bda5562013-11-14 15:16:17 +1100445 if (list_empty(conf->inactive_list + hash))
446 atomic_inc(&conf->empty_inactive_list_nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447out:
448 return sh;
449}
450
Yufen Yu046169f2020-08-20 09:22:12 -0400451#if PAGE_SIZE != DEFAULT_STRIPE_SIZE
452static void free_stripe_pages(struct stripe_head *sh)
453{
454 int i;
455 struct page *p;
456
457 /* Have not allocate page pool */
458 if (!sh->pages)
459 return;
460
461 for (i = 0; i < sh->nr_pages; i++) {
462 p = sh->pages[i];
463 if (p)
464 put_page(p);
465 sh->pages[i] = NULL;
466 }
467}
468
469static int alloc_stripe_pages(struct stripe_head *sh, gfp_t gfp)
470{
471 int i;
472 struct page *p;
473
474 for (i = 0; i < sh->nr_pages; i++) {
475 /* The page have allocated. */
476 if (sh->pages[i])
477 continue;
478
479 p = alloc_page(gfp);
480 if (!p) {
481 free_stripe_pages(sh);
482 return -ENOMEM;
483 }
484 sh->pages[i] = p;
485 }
486 return 0;
487}
488
489static int
490init_stripe_shared_pages(struct stripe_head *sh, struct r5conf *conf, int disks)
491{
492 int nr_pages, cnt;
493
494 if (sh->pages)
495 return 0;
496
497 /* Each of the sh->dev[i] need one conf->stripe_size */
498 cnt = PAGE_SIZE / conf->stripe_size;
499 nr_pages = (disks + cnt - 1) / cnt;
500
501 sh->pages = kcalloc(nr_pages, sizeof(struct page *), GFP_KERNEL);
502 if (!sh->pages)
503 return -ENOMEM;
504 sh->nr_pages = nr_pages;
505 sh->stripes_per_page = cnt;
506 return 0;
507}
508#endif
509
NeilBrowne4e11e32010-06-16 16:45:16 +1000510static void shrink_buffers(struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 int i;
NeilBrowne4e11e32010-06-16 16:45:16 +1000513 int num = sh->raid_conf->pool_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
Yufen Yu046169f2020-08-20 09:22:12 -0400515#if PAGE_SIZE == DEFAULT_STRIPE_SIZE
NeilBrowne4e11e32010-06-16 16:45:16 +1000516 for (i = 0; i < num ; i++) {
Yufen Yu046169f2020-08-20 09:22:12 -0400517 struct page *p;
518
Shaohua Lid592a992014-05-21 17:57:44 +0800519 WARN_ON(sh->dev[i].page != sh->dev[i].orig_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 p = sh->dev[i].page;
521 if (!p)
522 continue;
523 sh->dev[i].page = NULL;
NeilBrown2d1f3b52006-01-06 00:20:31 -0800524 put_page(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 }
Yufen Yu046169f2020-08-20 09:22:12 -0400526#else
527 for (i = 0; i < num; i++)
528 sh->dev[i].page = NULL;
529 free_stripe_pages(sh); /* Free pages */
530#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531}
532
NeilBrowna9683a72015-02-25 12:02:51 +1100533static int grow_buffers(struct stripe_head *sh, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534{
535 int i;
NeilBrowne4e11e32010-06-16 16:45:16 +1000536 int num = sh->raid_conf->pool_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
Yufen Yu046169f2020-08-20 09:22:12 -0400538#if PAGE_SIZE == DEFAULT_STRIPE_SIZE
NeilBrowne4e11e32010-06-16 16:45:16 +1000539 for (i = 0; i < num; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 struct page *page;
541
NeilBrowna9683a72015-02-25 12:02:51 +1100542 if (!(page = alloc_page(gfp))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 return 1;
544 }
545 sh->dev[i].page = page;
Shaohua Lid592a992014-05-21 17:57:44 +0800546 sh->dev[i].orig_page = page;
Yufen Yu7aba13b2020-08-20 09:22:06 -0400547 sh->dev[i].offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 }
Yufen Yu046169f2020-08-20 09:22:12 -0400549#else
550 if (alloc_stripe_pages(sh, gfp))
551 return -ENOMEM;
Artur Paszkiewicz3418d032017-03-09 09:59:59 +0100552
Yufen Yu046169f2020-08-20 09:22:12 -0400553 for (i = 0; i < num; i++) {
554 sh->dev[i].page = raid5_get_dev_page(sh, i);
555 sh->dev[i].orig_page = sh->dev[i].page;
556 sh->dev[i].offset = raid5_get_page_offset(sh, i);
557 }
558#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 return 0;
560}
561
NeilBrownd1688a62011-10-11 16:49:52 +1100562static void stripe_set_idx(sector_t stripe, struct r5conf *conf, int previous,
NeilBrown911d4ee2009-03-31 14:39:38 +1100563 struct stripe_head *sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
NeilBrownb5663ba2009-03-31 14:39:38 +1100565static void init_stripe(struct stripe_head *sh, sector_t sector, int previous)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566{
NeilBrownd1688a62011-10-11 16:49:52 +1100567 struct r5conf *conf = sh->raid_conf;
Shaohua Li566c09c2013-11-14 15:16:17 +1100568 int i, seq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +0200570 BUG_ON(atomic_read(&sh->count) != 0);
571 BUG_ON(test_bit(STRIPE_HANDLE, &sh->state));
Dan Williams600aa102008-06-28 08:32:05 +1000572 BUG_ON(stripe_operations_active(sh));
shli@kernel.org59fc6302014-12-15 12:57:03 +1100573 BUG_ON(sh->batch_head);
Dan Williamsd84e0f12007-01-02 13:52:30 -0700574
Dan Williams45b42332007-07-09 11:56:43 -0700575 pr_debug("init_stripe called, stripe %llu\n",
Markus Stockhausenb8e6a152014-08-23 20:19:27 +1000576 (unsigned long long)sector);
Shaohua Li566c09c2013-11-14 15:16:17 +1100577retry:
578 seq = read_seqcount_begin(&conf->gen_lock);
NeilBrown86b42c72009-03-31 15:19:03 +1100579 sh->generation = conf->generation - previous;
NeilBrownb5663ba2009-03-31 14:39:38 +1100580 sh->disks = previous ? conf->previous_raid_disks : conf->raid_disks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 sh->sector = sector;
NeilBrown911d4ee2009-03-31 14:39:38 +1100582 stripe_set_idx(sector, conf, previous, sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 sh->state = 0;
584
NeilBrown7ecaa1e2006-03-27 01:18:08 -0800585 for (i = sh->disks; i--; ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 struct r5dev *dev = &sh->dev[i];
587
Dan Williamsd84e0f12007-01-02 13:52:30 -0700588 if (dev->toread || dev->read || dev->towrite || dev->written ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 test_bit(R5_LOCKED, &dev->flags)) {
NeilBrowncc6167b2016-11-02 14:16:50 +1100590 pr_err("sector=%llx i=%d %p %p %p %p %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 (unsigned long long)sh->sector, i, dev->toread,
Dan Williamsd84e0f12007-01-02 13:52:30 -0700592 dev->read, dev->towrite, dev->written,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 test_bit(R5_LOCKED, &dev->flags));
NeilBrown8cfa7b02011-07-27 11:00:36 +1000594 WARN_ON(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 }
596 dev->flags = 0;
Guoqing Jiang27a4ff82017-08-10 16:12:17 +0800597 dev->sector = raid5_compute_blocknr(sh, i, previous);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 }
Shaohua Li566c09c2013-11-14 15:16:17 +1100599 if (read_seqcount_retry(&conf->gen_lock, seq))
600 goto retry;
shli@kernel.org7a87f432014-12-15 12:57:03 +1100601 sh->overwrite_disks = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 insert_hash(conf, sh);
Shaohua Li851c30c2013-08-28 14:30:16 +0800603 sh->cpu = smp_processor_id();
shli@kernel.orgda41ba62014-12-15 12:57:03 +1100604 set_bit(STRIPE_BATCH_READY, &sh->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605}
606
NeilBrownd1688a62011-10-11 16:49:52 +1100607static struct stripe_head *__find_stripe(struct r5conf *conf, sector_t sector,
NeilBrown86b42c72009-03-31 15:19:03 +1100608 short generation)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609{
610 struct stripe_head *sh;
611
Dan Williams45b42332007-07-09 11:56:43 -0700612 pr_debug("__find_stripe, sector %llu\n", (unsigned long long)sector);
Sasha Levinb67bfe02013-02-27 17:06:00 -0800613 hlist_for_each_entry(sh, stripe_hash(conf, sector), hash)
NeilBrown86b42c72009-03-31 15:19:03 +1100614 if (sh->sector == sector && sh->generation == generation)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 return sh;
Dan Williams45b42332007-07-09 11:56:43 -0700616 pr_debug("__stripe %llu not in cache\n", (unsigned long long)sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 return NULL;
618}
619
NeilBrown674806d2010-06-16 17:17:53 +1000620/*
621 * Need to check if array has failed when deciding whether to:
622 * - start an array
623 * - remove non-faulty devices
624 * - add a spare
625 * - allow a reshape
626 * This determination is simple when no reshape is happening.
627 * However if there is a reshape, we need to carefully check
628 * both the before and after sections.
629 * This is because some failed devices may only affect one
630 * of the two sections, and some non-in_sync devices may
631 * be insync in the section most affected by failed devices.
632 */
Song Liu2e38a372017-01-24 10:45:30 -0800633int raid5_calc_degraded(struct r5conf *conf)
NeilBrown674806d2010-06-16 17:17:53 +1000634{
NeilBrown908f4fb2011-12-23 10:17:50 +1100635 int degraded, degraded2;
NeilBrown674806d2010-06-16 17:17:53 +1000636 int i;
NeilBrown674806d2010-06-16 17:17:53 +1000637
638 rcu_read_lock();
639 degraded = 0;
640 for (i = 0; i < conf->previous_raid_disks; i++) {
NeilBrown3cb03002011-10-11 16:45:26 +1100641 struct md_rdev *rdev = rcu_dereference(conf->disks[i].rdev);
NeilBrowne5c86472012-09-19 12:52:30 +1000642 if (rdev && test_bit(Faulty, &rdev->flags))
643 rdev = rcu_dereference(conf->disks[i].replacement);
NeilBrown674806d2010-06-16 17:17:53 +1000644 if (!rdev || test_bit(Faulty, &rdev->flags))
645 degraded++;
646 else if (test_bit(In_sync, &rdev->flags))
647 ;
648 else
649 /* not in-sync or faulty.
650 * If the reshape increases the number of devices,
651 * this is being recovered by the reshape, so
652 * this 'previous' section is not in_sync.
653 * If the number of devices is being reduced however,
654 * the device can only be part of the array if
655 * we are reverting a reshape, so this section will
656 * be in-sync.
657 */
658 if (conf->raid_disks >= conf->previous_raid_disks)
659 degraded++;
660 }
661 rcu_read_unlock();
NeilBrown908f4fb2011-12-23 10:17:50 +1100662 if (conf->raid_disks == conf->previous_raid_disks)
663 return degraded;
NeilBrown674806d2010-06-16 17:17:53 +1000664 rcu_read_lock();
NeilBrown908f4fb2011-12-23 10:17:50 +1100665 degraded2 = 0;
NeilBrown674806d2010-06-16 17:17:53 +1000666 for (i = 0; i < conf->raid_disks; i++) {
NeilBrown3cb03002011-10-11 16:45:26 +1100667 struct md_rdev *rdev = rcu_dereference(conf->disks[i].rdev);
NeilBrowne5c86472012-09-19 12:52:30 +1000668 if (rdev && test_bit(Faulty, &rdev->flags))
669 rdev = rcu_dereference(conf->disks[i].replacement);
NeilBrown674806d2010-06-16 17:17:53 +1000670 if (!rdev || test_bit(Faulty, &rdev->flags))
NeilBrown908f4fb2011-12-23 10:17:50 +1100671 degraded2++;
NeilBrown674806d2010-06-16 17:17:53 +1000672 else if (test_bit(In_sync, &rdev->flags))
673 ;
674 else
675 /* not in-sync or faulty.
676 * If reshape increases the number of devices, this
677 * section has already been recovered, else it
678 * almost certainly hasn't.
679 */
680 if (conf->raid_disks <= conf->previous_raid_disks)
NeilBrown908f4fb2011-12-23 10:17:50 +1100681 degraded2++;
NeilBrown674806d2010-06-16 17:17:53 +1000682 }
683 rcu_read_unlock();
NeilBrown908f4fb2011-12-23 10:17:50 +1100684 if (degraded2 > degraded)
685 return degraded2;
686 return degraded;
687}
688
689static int has_failed(struct r5conf *conf)
690{
691 int degraded;
692
693 if (conf->mddev->reshape_position == MaxSector)
694 return conf->mddev->degraded > conf->max_degraded;
695
Song Liu2e38a372017-01-24 10:45:30 -0800696 degraded = raid5_calc_degraded(conf);
NeilBrown674806d2010-06-16 17:17:53 +1000697 if (degraded > conf->max_degraded)
698 return 1;
699 return 0;
700}
701
Shaohua Li6d036f72015-08-13 14:31:57 -0700702struct stripe_head *
703raid5_get_active_stripe(struct r5conf *conf, sector_t sector,
704 int previous, int noblock, int noquiesce)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705{
706 struct stripe_head *sh;
Yufen Yuc911c462020-07-18 05:29:07 -0400707 int hash = stripe_hash_locks_hash(conf, sector);
ZhengYuan Liuff00d3b2016-07-28 14:22:14 +0800708 int inc_empty_inactive_list_flag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709
Dan Williams45b42332007-07-09 11:56:43 -0700710 pr_debug("get_stripe, sector %llu\n", (unsigned long long)sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
Shaohua Li566c09c2013-11-14 15:16:17 +1100712 spin_lock_irq(conf->hash_locks + hash);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
714 do {
Yuanhan Liub1b46482015-05-08 18:19:06 +1000715 wait_event_lock_irq(conf->wait_for_quiescent,
NeilBrowna8c906c2009-06-09 14:39:59 +1000716 conf->quiesce == 0 || noquiesce,
Shaohua Li566c09c2013-11-14 15:16:17 +1100717 *(conf->hash_locks + hash));
NeilBrown86b42c72009-03-31 15:19:03 +1100718 sh = __find_stripe(conf, sector, conf->generation - previous);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 if (!sh) {
NeilBrownedbe83a2015-02-26 12:47:56 +1100720 if (!test_bit(R5_INACTIVE_BLOCKED, &conf->cache_state)) {
Shaohua Li566c09c2013-11-14 15:16:17 +1100721 sh = get_free_stripe(conf, hash);
Shaohua Li713bc5c2015-05-28 17:33:47 -0700722 if (!sh && !test_bit(R5_DID_ALLOC,
723 &conf->cache_state))
NeilBrownedbe83a2015-02-26 12:47:56 +1100724 set_bit(R5_ALLOC_MORE,
725 &conf->cache_state);
726 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 if (noblock && sh == NULL)
728 break;
Song Liua39f7af2016-11-17 15:24:40 -0800729
730 r5c_check_stripe_cache_usage(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 if (!sh) {
NeilBrown54233992015-02-26 12:21:04 +1100732 set_bit(R5_INACTIVE_BLOCKED,
733 &conf->cache_state);
Song Liua39f7af2016-11-17 15:24:40 -0800734 r5l_wake_reclaim(conf->log, 0);
Shaohua Li6ab2a4b2016-02-25 16:24:42 -0800735 wait_event_lock_irq(
736 conf->wait_for_stripe,
Shaohua Li566c09c2013-11-14 15:16:17 +1100737 !list_empty(conf->inactive_list + hash) &&
738 (atomic_read(&conf->active_stripes)
739 < (conf->max_nr_stripes * 3 / 4)
NeilBrown54233992015-02-26 12:21:04 +1100740 || !test_bit(R5_INACTIVE_BLOCKED,
741 &conf->cache_state)),
Shaohua Li6ab2a4b2016-02-25 16:24:42 -0800742 *(conf->hash_locks + hash));
NeilBrown54233992015-02-26 12:21:04 +1100743 clear_bit(R5_INACTIVE_BLOCKED,
744 &conf->cache_state);
NeilBrown7da9d452014-01-22 11:45:03 +1100745 } else {
NeilBrownb5663ba2009-03-31 14:39:38 +1100746 init_stripe(sh, sector, previous);
NeilBrown7da9d452014-01-22 11:45:03 +1100747 atomic_inc(&sh->count);
748 }
Shaohua Lie240c182014-04-09 11:27:42 +0800749 } else if (!atomic_inc_not_zero(&sh->count)) {
NeilBrown6d183de2013-11-28 10:55:27 +1100750 spin_lock(&conf->device_lock);
Shaohua Lie240c182014-04-09 11:27:42 +0800751 if (!atomic_read(&sh->count)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 if (!test_bit(STRIPE_HANDLE, &sh->state))
753 atomic_inc(&conf->active_stripes);
NeilBrown5af9bef2014-01-14 15:16:10 +1100754 BUG_ON(list_empty(&sh->lru) &&
755 !test_bit(STRIPE_EXPANDING, &sh->state));
ZhengYuan Liuff00d3b2016-07-28 14:22:14 +0800756 inc_empty_inactive_list_flag = 0;
757 if (!list_empty(conf->inactive_list + hash))
758 inc_empty_inactive_list_flag = 1;
NeilBrown16a53ec2006-06-26 00:27:38 -0700759 list_del_init(&sh->lru);
ZhengYuan Liuff00d3b2016-07-28 14:22:14 +0800760 if (list_empty(conf->inactive_list + hash) && inc_empty_inactive_list_flag)
761 atomic_inc(&conf->empty_inactive_list_nr);
Shaohua Libfc90cb2013-08-29 15:40:32 +0800762 if (sh->group) {
763 sh->group->stripes_cnt--;
764 sh->group = NULL;
765 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 }
NeilBrown7da9d452014-01-22 11:45:03 +1100767 atomic_inc(&sh->count);
NeilBrown6d183de2013-11-28 10:55:27 +1100768 spin_unlock(&conf->device_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 }
770 } while (sh == NULL);
771
Shaohua Li566c09c2013-11-14 15:16:17 +1100772 spin_unlock_irq(conf->hash_locks + hash);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 return sh;
774}
775
shli@kernel.org7a87f432014-12-15 12:57:03 +1100776static bool is_full_stripe_write(struct stripe_head *sh)
777{
778 BUG_ON(sh->overwrite_disks > (sh->disks - sh->raid_conf->max_degraded));
779 return sh->overwrite_disks == (sh->disks - sh->raid_conf->max_degraded);
780}
781
shli@kernel.org59fc6302014-12-15 12:57:03 +1100782static void lock_two_stripes(struct stripe_head *sh1, struct stripe_head *sh2)
Christoph Hellwig368ecad2019-04-04 18:56:15 +0200783 __acquires(&sh1->stripe_lock)
784 __acquires(&sh2->stripe_lock)
shli@kernel.org59fc6302014-12-15 12:57:03 +1100785{
shli@kernel.org59fc6302014-12-15 12:57:03 +1100786 if (sh1 > sh2) {
Julia Cartwright3d05f3a2017-04-28 12:41:02 -0500787 spin_lock_irq(&sh2->stripe_lock);
shli@kernel.org59fc6302014-12-15 12:57:03 +1100788 spin_lock_nested(&sh1->stripe_lock, 1);
789 } else {
Julia Cartwright3d05f3a2017-04-28 12:41:02 -0500790 spin_lock_irq(&sh1->stripe_lock);
shli@kernel.org59fc6302014-12-15 12:57:03 +1100791 spin_lock_nested(&sh2->stripe_lock, 1);
792 }
793}
794
795static void unlock_two_stripes(struct stripe_head *sh1, struct stripe_head *sh2)
Christoph Hellwig368ecad2019-04-04 18:56:15 +0200796 __releases(&sh1->stripe_lock)
797 __releases(&sh2->stripe_lock)
shli@kernel.org59fc6302014-12-15 12:57:03 +1100798{
799 spin_unlock(&sh1->stripe_lock);
Julia Cartwright3d05f3a2017-04-28 12:41:02 -0500800 spin_unlock_irq(&sh2->stripe_lock);
shli@kernel.org59fc6302014-12-15 12:57:03 +1100801}
802
803/* Only freshly new full stripe normal write stripe can be added to a batch list */
804static bool stripe_can_batch(struct stripe_head *sh)
805{
Shaohua Li9c3e3332015-08-13 14:32:02 -0700806 struct r5conf *conf = sh->raid_conf;
807
Shaohua Lie254de62018-08-29 11:05:42 -0700808 if (raid5_has_log(conf) || raid5_has_ppl(conf))
Shaohua Li9c3e3332015-08-13 14:32:02 -0700809 return false;
shli@kernel.org59fc6302014-12-15 12:57:03 +1100810 return test_bit(STRIPE_BATCH_READY, &sh->state) &&
NeilBrownd0852df52015-05-27 08:43:45 +1000811 !test_bit(STRIPE_BITMAP_PENDING, &sh->state) &&
shli@kernel.org59fc6302014-12-15 12:57:03 +1100812 is_full_stripe_write(sh);
813}
814
815/* we only do back search */
816static void stripe_add_to_batch_list(struct r5conf *conf, struct stripe_head *sh)
817{
818 struct stripe_head *head;
819 sector_t head_sector, tmp_sec;
820 int hash;
821 int dd_idx;
ZhengYuan Liuff00d3b2016-07-28 14:22:14 +0800822 int inc_empty_inactive_list_flag;
shli@kernel.org59fc6302014-12-15 12:57:03 +1100823
shli@kernel.org59fc6302014-12-15 12:57:03 +1100824 /* Don't cross chunks, so stripe pd_idx/qd_idx is the same */
825 tmp_sec = sh->sector;
826 if (!sector_div(tmp_sec, conf->chunk_sectors))
827 return;
Yufen Yuc911c462020-07-18 05:29:07 -0400828 head_sector = sh->sector - RAID5_STRIPE_SECTORS(conf);
shli@kernel.org59fc6302014-12-15 12:57:03 +1100829
Yufen Yuc911c462020-07-18 05:29:07 -0400830 hash = stripe_hash_locks_hash(conf, head_sector);
shli@kernel.org59fc6302014-12-15 12:57:03 +1100831 spin_lock_irq(conf->hash_locks + hash);
832 head = __find_stripe(conf, head_sector, conf->generation);
833 if (head && !atomic_inc_not_zero(&head->count)) {
834 spin_lock(&conf->device_lock);
835 if (!atomic_read(&head->count)) {
836 if (!test_bit(STRIPE_HANDLE, &head->state))
837 atomic_inc(&conf->active_stripes);
838 BUG_ON(list_empty(&head->lru) &&
839 !test_bit(STRIPE_EXPANDING, &head->state));
ZhengYuan Liuff00d3b2016-07-28 14:22:14 +0800840 inc_empty_inactive_list_flag = 0;
841 if (!list_empty(conf->inactive_list + hash))
842 inc_empty_inactive_list_flag = 1;
shli@kernel.org59fc6302014-12-15 12:57:03 +1100843 list_del_init(&head->lru);
ZhengYuan Liuff00d3b2016-07-28 14:22:14 +0800844 if (list_empty(conf->inactive_list + hash) && inc_empty_inactive_list_flag)
845 atomic_inc(&conf->empty_inactive_list_nr);
shli@kernel.org59fc6302014-12-15 12:57:03 +1100846 if (head->group) {
847 head->group->stripes_cnt--;
848 head->group = NULL;
849 }
850 }
851 atomic_inc(&head->count);
852 spin_unlock(&conf->device_lock);
853 }
854 spin_unlock_irq(conf->hash_locks + hash);
855
856 if (!head)
857 return;
858 if (!stripe_can_batch(head))
859 goto out;
860
861 lock_two_stripes(head, sh);
862 /* clear_batch_ready clear the flag */
863 if (!stripe_can_batch(head) || !stripe_can_batch(sh))
864 goto unlock_out;
865
866 if (sh->batch_head)
867 goto unlock_out;
868
869 dd_idx = 0;
870 while (dd_idx == sh->pd_idx || dd_idx == sh->qd_idx)
871 dd_idx++;
Jens Axboe1eff9d32016-08-05 15:35:16 -0600872 if (head->dev[dd_idx].towrite->bi_opf != sh->dev[dd_idx].towrite->bi_opf ||
Mike Christie796a5cf2016-06-05 14:32:07 -0500873 bio_op(head->dev[dd_idx].towrite) != bio_op(sh->dev[dd_idx].towrite))
shli@kernel.org59fc6302014-12-15 12:57:03 +1100874 goto unlock_out;
875
876 if (head->batch_head) {
877 spin_lock(&head->batch_head->batch_lock);
878 /* This batch list is already running */
879 if (!stripe_can_batch(head)) {
880 spin_unlock(&head->batch_head->batch_lock);
881 goto unlock_out;
882 }
Shaohua Li36648472017-08-25 10:40:02 -0700883 /*
884 * We must assign batch_head of this stripe within the
885 * batch_lock, otherwise clear_batch_ready of batch head
886 * stripe could clear BATCH_READY bit of this stripe and
887 * this stripe->batch_head doesn't get assigned, which
888 * could confuse clear_batch_ready for this stripe
889 */
890 sh->batch_head = head->batch_head;
shli@kernel.org59fc6302014-12-15 12:57:03 +1100891
892 /*
893 * at this point, head's BATCH_READY could be cleared, but we
894 * can still add the stripe to batch list
895 */
896 list_add(&sh->batch_list, &head->batch_list);
897 spin_unlock(&head->batch_head->batch_lock);
shli@kernel.org59fc6302014-12-15 12:57:03 +1100898 } else {
899 head->batch_head = head;
900 sh->batch_head = head->batch_head;
901 spin_lock(&head->batch_lock);
902 list_add_tail(&sh->batch_list, &head->batch_list);
903 spin_unlock(&head->batch_lock);
904 }
905
906 if (test_and_clear_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
907 if (atomic_dec_return(&conf->preread_active_stripes)
908 < IO_THRESHOLD)
909 md_wakeup_thread(conf->mddev->thread);
910
NeilBrown2b6b2452015-05-21 15:10:01 +1000911 if (test_and_clear_bit(STRIPE_BIT_DELAY, &sh->state)) {
912 int seq = sh->bm_seq;
913 if (test_bit(STRIPE_BIT_DELAY, &sh->batch_head->state) &&
914 sh->batch_head->bm_seq > seq)
915 seq = sh->batch_head->bm_seq;
916 set_bit(STRIPE_BIT_DELAY, &sh->batch_head->state);
917 sh->batch_head->bm_seq = seq;
918 }
919
shli@kernel.org59fc6302014-12-15 12:57:03 +1100920 atomic_inc(&sh->count);
921unlock_out:
922 unlock_two_stripes(head, sh);
923out:
Shaohua Li6d036f72015-08-13 14:31:57 -0700924 raid5_release_stripe(head);
shli@kernel.org59fc6302014-12-15 12:57:03 +1100925}
926
NeilBrown05616be2012-05-21 09:27:00 +1000927/* Determine if 'data_offset' or 'new_data_offset' should be used
928 * in this stripe_head.
929 */
930static int use_new_offset(struct r5conf *conf, struct stripe_head *sh)
931{
932 sector_t progress = conf->reshape_progress;
933 /* Need a memory barrier to make sure we see the value
934 * of conf->generation, or ->data_offset that was set before
935 * reshape_progress was updated.
936 */
937 smp_rmb();
938 if (progress == MaxSector)
939 return 0;
940 if (sh->generation == conf->generation - 1)
941 return 0;
942 /* We are in a reshape, and this is a new-generation stripe,
943 * so use new_data_offset.
944 */
945 return 1;
946}
947
Shaohua Liaaf9f122017-03-03 22:06:12 -0800948static void dispatch_bio_list(struct bio_list *tmp)
Shaohua Li765d7042017-01-04 09:33:23 -0800949{
Shaohua Li765d7042017-01-04 09:33:23 -0800950 struct bio *bio;
951
Shaohua Liaaf9f122017-03-03 22:06:12 -0800952 while ((bio = bio_list_pop(tmp)))
Christoph Hellwiged00aab2020-07-01 10:59:44 +0200953 submit_bio_noacct(bio);
Shaohua Li765d7042017-01-04 09:33:23 -0800954}
955
Shaohua Liaaf9f122017-03-03 22:06:12 -0800956static int cmp_stripe(void *priv, struct list_head *a, struct list_head *b)
Shaohua Li765d7042017-01-04 09:33:23 -0800957{
Shaohua Liaaf9f122017-03-03 22:06:12 -0800958 const struct r5pending_data *da = list_entry(a,
959 struct r5pending_data, sibling);
960 const struct r5pending_data *db = list_entry(b,
961 struct r5pending_data, sibling);
962 if (da->sector > db->sector)
963 return 1;
964 if (da->sector < db->sector)
965 return -1;
966 return 0;
967}
968
969static void dispatch_defer_bios(struct r5conf *conf, int target,
970 struct bio_list *list)
971{
972 struct r5pending_data *data;
973 struct list_head *first, *next = NULL;
974 int cnt = 0;
975
976 if (conf->pending_data_cnt == 0)
Shaohua Li765d7042017-01-04 09:33:23 -0800977 return;
Shaohua Liaaf9f122017-03-03 22:06:12 -0800978
979 list_sort(NULL, &conf->pending_list, cmp_stripe);
980
981 first = conf->pending_list.next;
982
983 /* temporarily move the head */
984 if (conf->next_pending_data)
985 list_move_tail(&conf->pending_list,
986 &conf->next_pending_data->sibling);
987
988 while (!list_empty(&conf->pending_list)) {
989 data = list_first_entry(&conf->pending_list,
990 struct r5pending_data, sibling);
991 if (&data->sibling == first)
992 first = data->sibling.next;
993 next = data->sibling.next;
994
995 bio_list_merge(list, &data->bios);
996 list_move(&data->sibling, &conf->free_list);
997 cnt++;
998 if (cnt >= target)
999 break;
Shaohua Li765d7042017-01-04 09:33:23 -08001000 }
Shaohua Liaaf9f122017-03-03 22:06:12 -08001001 conf->pending_data_cnt -= cnt;
1002 BUG_ON(conf->pending_data_cnt < 0 || cnt < target);
1003
1004 if (next != &conf->pending_list)
1005 conf->next_pending_data = list_entry(next,
1006 struct r5pending_data, sibling);
1007 else
1008 conf->next_pending_data = NULL;
1009 /* list isn't empty */
1010 if (first != &conf->pending_list)
1011 list_move_tail(&conf->pending_list, first);
1012}
1013
1014static void flush_deferred_bios(struct r5conf *conf)
1015{
1016 struct bio_list tmp = BIO_EMPTY_LIST;
1017
1018 if (conf->pending_data_cnt == 0)
1019 return;
1020
Shaohua Li765d7042017-01-04 09:33:23 -08001021 spin_lock(&conf->pending_bios_lock);
Shaohua Liaaf9f122017-03-03 22:06:12 -08001022 dispatch_defer_bios(conf, conf->pending_data_cnt, &tmp);
1023 BUG_ON(conf->pending_data_cnt != 0);
Shaohua Li765d7042017-01-04 09:33:23 -08001024 spin_unlock(&conf->pending_bios_lock);
Shaohua Liaaf9f122017-03-03 22:06:12 -08001025
1026 dispatch_bio_list(&tmp);
1027}
1028
1029static void defer_issue_bios(struct r5conf *conf, sector_t sector,
1030 struct bio_list *bios)
1031{
1032 struct bio_list tmp = BIO_EMPTY_LIST;
1033 struct r5pending_data *ent;
1034
1035 spin_lock(&conf->pending_bios_lock);
1036 ent = list_first_entry(&conf->free_list, struct r5pending_data,
1037 sibling);
1038 list_move_tail(&ent->sibling, &conf->pending_list);
1039 ent->sector = sector;
1040 bio_list_init(&ent->bios);
1041 bio_list_merge(&ent->bios, bios);
1042 conf->pending_data_cnt++;
1043 if (conf->pending_data_cnt >= PENDING_IO_MAX)
1044 dispatch_defer_bios(conf, PENDING_IO_ONE_FLUSH, &tmp);
1045
1046 spin_unlock(&conf->pending_bios_lock);
1047
1048 dispatch_bio_list(&tmp);
Shaohua Li765d7042017-01-04 09:33:23 -08001049}
1050
NeilBrown6712ecf2007-09-27 12:47:43 +02001051static void
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001052raid5_end_read_request(struct bio *bi);
NeilBrown6712ecf2007-09-27 12:47:43 +02001053static void
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001054raid5_end_write_request(struct bio *bi);
Dan Williams91c00922007-01-02 13:52:30 -07001055
Dan Williamsc4e5ac02008-06-28 08:31:53 +10001056static void ops_run_io(struct stripe_head *sh, struct stripe_head_state *s)
Dan Williams91c00922007-01-02 13:52:30 -07001057{
NeilBrownd1688a62011-10-11 16:49:52 +11001058 struct r5conf *conf = sh->raid_conf;
Dan Williams91c00922007-01-02 13:52:30 -07001059 int i, disks = sh->disks;
shli@kernel.org59fc6302014-12-15 12:57:03 +11001060 struct stripe_head *head_sh = sh;
Shaohua Liaaf9f122017-03-03 22:06:12 -08001061 struct bio_list pending_bios = BIO_EMPTY_LIST;
1062 bool should_defer;
Dan Williams91c00922007-01-02 13:52:30 -07001063
1064 might_sleep();
1065
Artur Paszkiewiczff875732017-03-09 09:59:58 +01001066 if (log_stripe(sh, s) == 0)
1067 return;
Song Liu1e6d6902016-11-17 15:24:39 -08001068
Shaohua Liaaf9f122017-03-03 22:06:12 -08001069 should_defer = conf->batch_bio_dispatch && conf->group_cnt;
Shaohua Lif6bed0e2015-08-13 14:31:59 -07001070
Dan Williams91c00922007-01-02 13:52:30 -07001071 for (i = disks; i--; ) {
Mike Christie796a5cf2016-06-05 14:32:07 -05001072 int op, op_flags = 0;
NeilBrown9a3e1102011-12-23 10:17:53 +11001073 int replace_only = 0;
NeilBrown977df362011-12-23 10:17:53 +11001074 struct bio *bi, *rbi;
1075 struct md_rdev *rdev, *rrdev = NULL;
shli@kernel.org59fc6302014-12-15 12:57:03 +11001076
1077 sh = head_sh;
Tejun Heoe9c74692010-09-03 11:56:18 +02001078 if (test_and_clear_bit(R5_Wantwrite, &sh->dev[i].flags)) {
Mike Christie796a5cf2016-06-05 14:32:07 -05001079 op = REQ_OP_WRITE;
Tejun Heoe9c74692010-09-03 11:56:18 +02001080 if (test_and_clear_bit(R5_WantFUA, &sh->dev[i].flags))
Christoph Hellwig70fd7612016-11-01 07:40:10 -06001081 op_flags = REQ_FUA;
Shaohua Li9e4447682012-10-11 13:49:49 +11001082 if (test_bit(R5_Discard, &sh->dev[i].flags))
Mike Christie796a5cf2016-06-05 14:32:07 -05001083 op = REQ_OP_DISCARD;
Tejun Heoe9c74692010-09-03 11:56:18 +02001084 } else if (test_and_clear_bit(R5_Wantread, &sh->dev[i].flags))
Mike Christie796a5cf2016-06-05 14:32:07 -05001085 op = REQ_OP_READ;
NeilBrown9a3e1102011-12-23 10:17:53 +11001086 else if (test_and_clear_bit(R5_WantReplace,
1087 &sh->dev[i].flags)) {
Mike Christie796a5cf2016-06-05 14:32:07 -05001088 op = REQ_OP_WRITE;
NeilBrown9a3e1102011-12-23 10:17:53 +11001089 replace_only = 1;
1090 } else
Dan Williams91c00922007-01-02 13:52:30 -07001091 continue;
Shaohua Libc0934f2012-05-22 13:55:05 +10001092 if (test_and_clear_bit(R5_SyncIO, &sh->dev[i].flags))
Mike Christie796a5cf2016-06-05 14:32:07 -05001093 op_flags |= REQ_SYNC;
Dan Williams91c00922007-01-02 13:52:30 -07001094
shli@kernel.org59fc6302014-12-15 12:57:03 +11001095again:
Dan Williams91c00922007-01-02 13:52:30 -07001096 bi = &sh->dev[i].req;
NeilBrown977df362011-12-23 10:17:53 +11001097 rbi = &sh->dev[i].rreq; /* For writing to replacement */
Dan Williams91c00922007-01-02 13:52:30 -07001098
Dan Williams91c00922007-01-02 13:52:30 -07001099 rcu_read_lock();
NeilBrown9a3e1102011-12-23 10:17:53 +11001100 rrdev = rcu_dereference(conf->disks[i].replacement);
NeilBrowndd054fc2011-12-23 10:17:53 +11001101 smp_mb(); /* Ensure that if rrdev is NULL, rdev won't be */
1102 rdev = rcu_dereference(conf->disks[i].rdev);
1103 if (!rdev) {
1104 rdev = rrdev;
1105 rrdev = NULL;
1106 }
Mike Christie796a5cf2016-06-05 14:32:07 -05001107 if (op_is_write(op)) {
NeilBrown9a3e1102011-12-23 10:17:53 +11001108 if (replace_only)
1109 rdev = NULL;
NeilBrowndd054fc2011-12-23 10:17:53 +11001110 if (rdev == rrdev)
1111 /* We raced and saw duplicates */
1112 rrdev = NULL;
NeilBrown9a3e1102011-12-23 10:17:53 +11001113 } else {
shli@kernel.org59fc6302014-12-15 12:57:03 +11001114 if (test_bit(R5_ReadRepl, &head_sh->dev[i].flags) && rrdev)
NeilBrown9a3e1102011-12-23 10:17:53 +11001115 rdev = rrdev;
1116 rrdev = NULL;
1117 }
NeilBrown977df362011-12-23 10:17:53 +11001118
Dan Williams91c00922007-01-02 13:52:30 -07001119 if (rdev && test_bit(Faulty, &rdev->flags))
1120 rdev = NULL;
1121 if (rdev)
1122 atomic_inc(&rdev->nr_pending);
NeilBrown977df362011-12-23 10:17:53 +11001123 if (rrdev && test_bit(Faulty, &rrdev->flags))
1124 rrdev = NULL;
1125 if (rrdev)
1126 atomic_inc(&rrdev->nr_pending);
Dan Williams91c00922007-01-02 13:52:30 -07001127 rcu_read_unlock();
1128
NeilBrown73e92e52011-07-28 11:39:22 +10001129 /* We have already checked bad blocks for reads. Now
NeilBrown977df362011-12-23 10:17:53 +11001130 * need to check for writes. We never accept write errors
1131 * on the replacement, so we don't to check rrdev.
NeilBrown73e92e52011-07-28 11:39:22 +10001132 */
Mike Christie796a5cf2016-06-05 14:32:07 -05001133 while (op_is_write(op) && rdev &&
NeilBrown73e92e52011-07-28 11:39:22 +10001134 test_bit(WriteErrorSeen, &rdev->flags)) {
1135 sector_t first_bad;
1136 int bad_sectors;
Yufen Yuc911c462020-07-18 05:29:07 -04001137 int bad = is_badblock(rdev, sh->sector, RAID5_STRIPE_SECTORS(conf),
NeilBrown73e92e52011-07-28 11:39:22 +10001138 &first_bad, &bad_sectors);
1139 if (!bad)
1140 break;
1141
1142 if (bad < 0) {
1143 set_bit(BlockedBadBlocks, &rdev->flags);
1144 if (!conf->mddev->external &&
Shaohua Li29530792016-12-08 15:48:19 -08001145 conf->mddev->sb_flags) {
NeilBrown73e92e52011-07-28 11:39:22 +10001146 /* It is very unlikely, but we might
1147 * still need to write out the
1148 * bad block log - better give it
1149 * a chance*/
1150 md_check_recovery(conf->mddev);
1151 }
majianpeng18507532012-07-03 12:11:54 +10001152 /*
1153 * Because md_wait_for_blocked_rdev
1154 * will dec nr_pending, we must
1155 * increment it first.
1156 */
1157 atomic_inc(&rdev->nr_pending);
NeilBrown73e92e52011-07-28 11:39:22 +10001158 md_wait_for_blocked_rdev(rdev, conf->mddev);
1159 } else {
1160 /* Acknowledged bad block - skip the write */
1161 rdev_dec_pending(rdev, conf->mddev);
1162 rdev = NULL;
1163 }
1164 }
1165
Dan Williams91c00922007-01-02 13:52:30 -07001166 if (rdev) {
NeilBrown9a3e1102011-12-23 10:17:53 +11001167 if (s->syncing || s->expanding || s->expanded
1168 || s->replacing)
Yufen Yuc911c462020-07-18 05:29:07 -04001169 md_sync_acct(rdev->bdev, RAID5_STRIPE_SECTORS(conf));
Dan Williams91c00922007-01-02 13:52:30 -07001170
Dan Williams2b7497f2008-06-28 08:31:52 +10001171 set_bit(STRIPE_IO_STARTED, &sh->state);
1172
Christoph Hellwig74d46992017-08-23 19:10:32 +02001173 bio_set_dev(bi, rdev->bdev);
Mike Christie796a5cf2016-06-05 14:32:07 -05001174 bio_set_op_attrs(bi, op, op_flags);
1175 bi->bi_end_io = op_is_write(op)
Kent Overstreet2f6db2a2012-09-11 12:26:38 -07001176 ? raid5_end_write_request
1177 : raid5_end_read_request;
1178 bi->bi_private = sh;
1179
Mike Christie6296b962016-06-05 14:32:21 -05001180 pr_debug("%s: for %llu schedule op %d on disc %d\n",
Harvey Harrisone46b272b2008-04-28 02:15:50 -07001181 __func__, (unsigned long long)sh->sector,
Jens Axboe1eff9d32016-08-05 15:35:16 -06001182 bi->bi_opf, i);
Dan Williams91c00922007-01-02 13:52:30 -07001183 atomic_inc(&sh->count);
shli@kernel.org59fc6302014-12-15 12:57:03 +11001184 if (sh != head_sh)
1185 atomic_inc(&head_sh->count);
NeilBrown05616be2012-05-21 09:27:00 +10001186 if (use_new_offset(conf, sh))
Kent Overstreet4f024f32013-10-11 15:44:27 -07001187 bi->bi_iter.bi_sector = (sh->sector
NeilBrown05616be2012-05-21 09:27:00 +10001188 + rdev->new_data_offset);
1189 else
Kent Overstreet4f024f32013-10-11 15:44:27 -07001190 bi->bi_iter.bi_sector = (sh->sector
NeilBrown05616be2012-05-21 09:27:00 +10001191 + rdev->data_offset);
shli@kernel.org59fc6302014-12-15 12:57:03 +11001192 if (test_bit(R5_ReadNoMerge, &head_sh->dev[i].flags))
Jens Axboe1eff9d32016-08-05 15:35:16 -06001193 bi->bi_opf |= REQ_NOMERGE;
majianpeng3f9e7c12012-07-31 10:04:21 +10001194
Shaohua Lid592a992014-05-21 17:57:44 +08001195 if (test_bit(R5_SkipCopy, &sh->dev[i].flags))
1196 WARN_ON(test_bit(R5_UPTODATE, &sh->dev[i].flags));
Song Liu86aa1392017-01-12 17:22:41 -08001197
1198 if (!op_is_write(op) &&
1199 test_bit(R5_InJournal, &sh->dev[i].flags))
1200 /*
1201 * issuing read for a page in journal, this
1202 * must be preparing for prexor in rmw; read
1203 * the data into orig_page
1204 */
1205 sh->dev[i].vec.bv_page = sh->dev[i].orig_page;
1206 else
1207 sh->dev[i].vec.bv_page = sh->dev[i].page;
Kent Overstreet4997b722013-05-30 08:44:39 +02001208 bi->bi_vcnt = 1;
Yufen Yuc911c462020-07-18 05:29:07 -04001209 bi->bi_io_vec[0].bv_len = RAID5_STRIPE_SIZE(conf);
Yufen Yu7aba13b2020-08-20 09:22:06 -04001210 bi->bi_io_vec[0].bv_offset = sh->dev[i].offset;
Yufen Yuc911c462020-07-18 05:29:07 -04001211 bi->bi_iter.bi_size = RAID5_STRIPE_SIZE(conf);
Mariusz Dabrowski2cd259a2018-04-19 19:28:10 +02001212 bi->bi_write_hint = sh->dev[i].write_hint;
1213 if (!rrdev)
Eugene Syromiatnikovf1934892019-09-20 17:58:28 +02001214 sh->dev[i].write_hint = RWH_WRITE_LIFE_NOT_SET;
Shaohua Li37c61ff2013-10-19 14:50:28 +08001215 /*
1216 * If this is discard request, set bi_vcnt 0. We don't
1217 * want to confuse SCSI because SCSI will replace payload
1218 */
Mike Christie796a5cf2016-06-05 14:32:07 -05001219 if (op == REQ_OP_DISCARD)
Shaohua Li37c61ff2013-10-19 14:50:28 +08001220 bi->bi_vcnt = 0;
NeilBrown977df362011-12-23 10:17:53 +11001221 if (rrdev)
1222 set_bit(R5_DOUBLE_LOCKED, &sh->dev[i].flags);
Jonathan Brassowe3620a32013-03-07 16:22:01 -06001223
1224 if (conf->mddev->gendisk)
Christoph Hellwig74d46992017-08-23 19:10:32 +02001225 trace_block_bio_remap(bi->bi_disk->queue,
Jonathan Brassowe3620a32013-03-07 16:22:01 -06001226 bi, disk_devt(conf->mddev->gendisk),
1227 sh->dev[i].sector);
Shaohua Liaaf9f122017-03-03 22:06:12 -08001228 if (should_defer && op_is_write(op))
1229 bio_list_add(&pending_bios, bi);
1230 else
Christoph Hellwiged00aab2020-07-01 10:59:44 +02001231 submit_bio_noacct(bi);
NeilBrown977df362011-12-23 10:17:53 +11001232 }
1233 if (rrdev) {
NeilBrown9a3e1102011-12-23 10:17:53 +11001234 if (s->syncing || s->expanding || s->expanded
1235 || s->replacing)
Yufen Yuc911c462020-07-18 05:29:07 -04001236 md_sync_acct(rrdev->bdev, RAID5_STRIPE_SECTORS(conf));
NeilBrown977df362011-12-23 10:17:53 +11001237
1238 set_bit(STRIPE_IO_STARTED, &sh->state);
1239
Christoph Hellwig74d46992017-08-23 19:10:32 +02001240 bio_set_dev(rbi, rrdev->bdev);
Mike Christie796a5cf2016-06-05 14:32:07 -05001241 bio_set_op_attrs(rbi, op, op_flags);
1242 BUG_ON(!op_is_write(op));
Kent Overstreet2f6db2a2012-09-11 12:26:38 -07001243 rbi->bi_end_io = raid5_end_write_request;
1244 rbi->bi_private = sh;
1245
Mike Christie6296b962016-06-05 14:32:21 -05001246 pr_debug("%s: for %llu schedule op %d on "
NeilBrown977df362011-12-23 10:17:53 +11001247 "replacement disc %d\n",
1248 __func__, (unsigned long long)sh->sector,
Jens Axboe1eff9d32016-08-05 15:35:16 -06001249 rbi->bi_opf, i);
NeilBrown977df362011-12-23 10:17:53 +11001250 atomic_inc(&sh->count);
shli@kernel.org59fc6302014-12-15 12:57:03 +11001251 if (sh != head_sh)
1252 atomic_inc(&head_sh->count);
NeilBrown05616be2012-05-21 09:27:00 +10001253 if (use_new_offset(conf, sh))
Kent Overstreet4f024f32013-10-11 15:44:27 -07001254 rbi->bi_iter.bi_sector = (sh->sector
NeilBrown05616be2012-05-21 09:27:00 +10001255 + rrdev->new_data_offset);
1256 else
Kent Overstreet4f024f32013-10-11 15:44:27 -07001257 rbi->bi_iter.bi_sector = (sh->sector
NeilBrown05616be2012-05-21 09:27:00 +10001258 + rrdev->data_offset);
Shaohua Lid592a992014-05-21 17:57:44 +08001259 if (test_bit(R5_SkipCopy, &sh->dev[i].flags))
1260 WARN_ON(test_bit(R5_UPTODATE, &sh->dev[i].flags));
1261 sh->dev[i].rvec.bv_page = sh->dev[i].page;
Kent Overstreet4997b722013-05-30 08:44:39 +02001262 rbi->bi_vcnt = 1;
Yufen Yuc911c462020-07-18 05:29:07 -04001263 rbi->bi_io_vec[0].bv_len = RAID5_STRIPE_SIZE(conf);
Yufen Yu7aba13b2020-08-20 09:22:06 -04001264 rbi->bi_io_vec[0].bv_offset = sh->dev[i].offset;
Yufen Yuc911c462020-07-18 05:29:07 -04001265 rbi->bi_iter.bi_size = RAID5_STRIPE_SIZE(conf);
Mariusz Dabrowski2cd259a2018-04-19 19:28:10 +02001266 rbi->bi_write_hint = sh->dev[i].write_hint;
Eugene Syromiatnikovf1934892019-09-20 17:58:28 +02001267 sh->dev[i].write_hint = RWH_WRITE_LIFE_NOT_SET;
Shaohua Li37c61ff2013-10-19 14:50:28 +08001268 /*
1269 * If this is discard request, set bi_vcnt 0. We don't
1270 * want to confuse SCSI because SCSI will replace payload
1271 */
Mike Christie796a5cf2016-06-05 14:32:07 -05001272 if (op == REQ_OP_DISCARD)
Shaohua Li37c61ff2013-10-19 14:50:28 +08001273 rbi->bi_vcnt = 0;
Jonathan Brassowe3620a32013-03-07 16:22:01 -06001274 if (conf->mddev->gendisk)
Christoph Hellwig74d46992017-08-23 19:10:32 +02001275 trace_block_bio_remap(rbi->bi_disk->queue,
Jonathan Brassowe3620a32013-03-07 16:22:01 -06001276 rbi, disk_devt(conf->mddev->gendisk),
1277 sh->dev[i].sector);
Shaohua Liaaf9f122017-03-03 22:06:12 -08001278 if (should_defer && op_is_write(op))
1279 bio_list_add(&pending_bios, rbi);
1280 else
Christoph Hellwiged00aab2020-07-01 10:59:44 +02001281 submit_bio_noacct(rbi);
NeilBrown977df362011-12-23 10:17:53 +11001282 }
1283 if (!rdev && !rrdev) {
Mike Christie796a5cf2016-06-05 14:32:07 -05001284 if (op_is_write(op))
Dan Williams91c00922007-01-02 13:52:30 -07001285 set_bit(STRIPE_DEGRADED, &sh->state);
Mike Christie6296b962016-06-05 14:32:21 -05001286 pr_debug("skip op %d on disc %d for sector %llu\n",
Jens Axboe1eff9d32016-08-05 15:35:16 -06001287 bi->bi_opf, i, (unsigned long long)sh->sector);
Dan Williams91c00922007-01-02 13:52:30 -07001288 clear_bit(R5_LOCKED, &sh->dev[i].flags);
1289 set_bit(STRIPE_HANDLE, &sh->state);
1290 }
shli@kernel.org59fc6302014-12-15 12:57:03 +11001291
1292 if (!head_sh->batch_head)
1293 continue;
1294 sh = list_first_entry(&sh->batch_list, struct stripe_head,
1295 batch_list);
1296 if (sh != head_sh)
1297 goto again;
Dan Williams91c00922007-01-02 13:52:30 -07001298 }
Shaohua Liaaf9f122017-03-03 22:06:12 -08001299
1300 if (should_defer && !bio_list_empty(&pending_bios))
1301 defer_issue_bios(conf, head_sh->sector, &pending_bios);
Dan Williams91c00922007-01-02 13:52:30 -07001302}
1303
1304static struct dma_async_tx_descriptor *
Shaohua Lid592a992014-05-21 17:57:44 +08001305async_copy_data(int frombio, struct bio *bio, struct page **page,
Yufen Yu248728d2020-08-20 09:22:07 -04001306 unsigned int poff, sector_t sector, struct dma_async_tx_descriptor *tx,
Song Liu1e6d6902016-11-17 15:24:39 -08001307 struct stripe_head *sh, int no_skipcopy)
Dan Williams91c00922007-01-02 13:52:30 -07001308{
Kent Overstreet79886132013-11-23 17:19:00 -08001309 struct bio_vec bvl;
1310 struct bvec_iter iter;
Dan Williams91c00922007-01-02 13:52:30 -07001311 struct page *bio_page;
Dan Williams91c00922007-01-02 13:52:30 -07001312 int page_offset;
Dan Williamsa08abd82009-06-03 11:43:59 -07001313 struct async_submit_ctl submit;
Dan Williams0403e382009-09-08 17:42:50 -07001314 enum async_tx_flags flags = 0;
Yufen Yuc911c462020-07-18 05:29:07 -04001315 struct r5conf *conf = sh->raid_conf;
Dan Williams91c00922007-01-02 13:52:30 -07001316
Kent Overstreet4f024f32013-10-11 15:44:27 -07001317 if (bio->bi_iter.bi_sector >= sector)
1318 page_offset = (signed)(bio->bi_iter.bi_sector - sector) * 512;
Dan Williams91c00922007-01-02 13:52:30 -07001319 else
Kent Overstreet4f024f32013-10-11 15:44:27 -07001320 page_offset = (signed)(sector - bio->bi_iter.bi_sector) * -512;
Dan Williamsa08abd82009-06-03 11:43:59 -07001321
Dan Williams0403e382009-09-08 17:42:50 -07001322 if (frombio)
1323 flags |= ASYNC_TX_FENCE;
1324 init_async_submit(&submit, flags, tx, NULL, NULL, NULL);
1325
Kent Overstreet79886132013-11-23 17:19:00 -08001326 bio_for_each_segment(bvl, bio, iter) {
1327 int len = bvl.bv_len;
Dan Williams91c00922007-01-02 13:52:30 -07001328 int clen;
1329 int b_offset = 0;
1330
1331 if (page_offset < 0) {
1332 b_offset = -page_offset;
1333 page_offset += b_offset;
1334 len -= b_offset;
1335 }
1336
Yufen Yuc911c462020-07-18 05:29:07 -04001337 if (len > 0 && page_offset + len > RAID5_STRIPE_SIZE(conf))
1338 clen = RAID5_STRIPE_SIZE(conf) - page_offset;
Dan Williams91c00922007-01-02 13:52:30 -07001339 else
1340 clen = len;
1341
1342 if (clen > 0) {
Kent Overstreet79886132013-11-23 17:19:00 -08001343 b_offset += bvl.bv_offset;
1344 bio_page = bvl.bv_page;
Shaohua Lid592a992014-05-21 17:57:44 +08001345 if (frombio) {
Yufen Yuc911c462020-07-18 05:29:07 -04001346 if (conf->skip_copy &&
Shaohua Lid592a992014-05-21 17:57:44 +08001347 b_offset == 0 && page_offset == 0 &&
Yufen Yuc911c462020-07-18 05:29:07 -04001348 clen == RAID5_STRIPE_SIZE(conf) &&
Song Liu1e6d6902016-11-17 15:24:39 -08001349 !no_skipcopy)
Shaohua Lid592a992014-05-21 17:57:44 +08001350 *page = bio_page;
1351 else
Yufen Yu248728d2020-08-20 09:22:07 -04001352 tx = async_memcpy(*page, bio_page, page_offset + poff,
Dan Williamsa08abd82009-06-03 11:43:59 -07001353 b_offset, clen, &submit);
Shaohua Lid592a992014-05-21 17:57:44 +08001354 } else
1355 tx = async_memcpy(bio_page, *page, b_offset,
Yufen Yu248728d2020-08-20 09:22:07 -04001356 page_offset + poff, clen, &submit);
Dan Williams91c00922007-01-02 13:52:30 -07001357 }
Dan Williamsa08abd82009-06-03 11:43:59 -07001358 /* chain the operations */
1359 submit.depend_tx = tx;
1360
Dan Williams91c00922007-01-02 13:52:30 -07001361 if (clen < len) /* hit end of page */
1362 break;
1363 page_offset += len;
1364 }
1365
1366 return tx;
1367}
1368
1369static void ops_complete_biofill(void *stripe_head_ref)
1370{
1371 struct stripe_head *sh = stripe_head_ref;
Dan Williamse4d84902007-09-24 10:06:13 -07001372 int i;
Yufen Yuc911c462020-07-18 05:29:07 -04001373 struct r5conf *conf = sh->raid_conf;
Dan Williams91c00922007-01-02 13:52:30 -07001374
Harvey Harrisone46b272b2008-04-28 02:15:50 -07001375 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001376 (unsigned long long)sh->sector);
1377
1378 /* clear completed biofills */
1379 for (i = sh->disks; i--; ) {
1380 struct r5dev *dev = &sh->dev[i];
Dan Williams91c00922007-01-02 13:52:30 -07001381
1382 /* acknowledge completion of a biofill operation */
Dan Williamse4d84902007-09-24 10:06:13 -07001383 /* and check if we need to reply to a read request,
1384 * new R5_Wantfill requests are held off until
Dan Williams83de75c2008-06-28 08:31:58 +10001385 * !STRIPE_BIOFILL_RUN
Dan Williamse4d84902007-09-24 10:06:13 -07001386 */
1387 if (test_and_clear_bit(R5_Wantfill, &dev->flags)) {
Dan Williams91c00922007-01-02 13:52:30 -07001388 struct bio *rbi, *rbi2;
Dan Williams91c00922007-01-02 13:52:30 -07001389
Dan Williams91c00922007-01-02 13:52:30 -07001390 BUG_ON(!dev->read);
1391 rbi = dev->read;
1392 dev->read = NULL;
Kent Overstreet4f024f32013-10-11 15:44:27 -07001393 while (rbi && rbi->bi_iter.bi_sector <
Yufen Yuc911c462020-07-18 05:29:07 -04001394 dev->sector + RAID5_STRIPE_SECTORS(conf)) {
1395 rbi2 = r5_next_bio(conf, rbi, dev->sector);
NeilBrown016c76a2017-03-15 14:05:13 +11001396 bio_endio(rbi);
Dan Williams91c00922007-01-02 13:52:30 -07001397 rbi = rbi2;
1398 }
1399 }
1400 }
Dan Williams83de75c2008-06-28 08:31:58 +10001401 clear_bit(STRIPE_BIOFILL_RUN, &sh->state);
Dan Williams91c00922007-01-02 13:52:30 -07001402
Dan Williamse4d84902007-09-24 10:06:13 -07001403 set_bit(STRIPE_HANDLE, &sh->state);
Shaohua Li6d036f72015-08-13 14:31:57 -07001404 raid5_release_stripe(sh);
Dan Williams91c00922007-01-02 13:52:30 -07001405}
1406
1407static void ops_run_biofill(struct stripe_head *sh)
1408{
1409 struct dma_async_tx_descriptor *tx = NULL;
Dan Williamsa08abd82009-06-03 11:43:59 -07001410 struct async_submit_ctl submit;
Dan Williams91c00922007-01-02 13:52:30 -07001411 int i;
Yufen Yuc911c462020-07-18 05:29:07 -04001412 struct r5conf *conf = sh->raid_conf;
Dan Williams91c00922007-01-02 13:52:30 -07001413
shli@kernel.org59fc6302014-12-15 12:57:03 +11001414 BUG_ON(sh->batch_head);
Harvey Harrisone46b272b2008-04-28 02:15:50 -07001415 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001416 (unsigned long long)sh->sector);
1417
1418 for (i = sh->disks; i--; ) {
1419 struct r5dev *dev = &sh->dev[i];
1420 if (test_bit(R5_Wantfill, &dev->flags)) {
1421 struct bio *rbi;
Shaohua Lib17459c2012-07-19 16:01:31 +10001422 spin_lock_irq(&sh->stripe_lock);
Dan Williams91c00922007-01-02 13:52:30 -07001423 dev->read = rbi = dev->toread;
1424 dev->toread = NULL;
Shaohua Lib17459c2012-07-19 16:01:31 +10001425 spin_unlock_irq(&sh->stripe_lock);
Kent Overstreet4f024f32013-10-11 15:44:27 -07001426 while (rbi && rbi->bi_iter.bi_sector <
Yufen Yuc911c462020-07-18 05:29:07 -04001427 dev->sector + RAID5_STRIPE_SECTORS(conf)) {
Shaohua Lid592a992014-05-21 17:57:44 +08001428 tx = async_copy_data(0, rbi, &dev->page,
Yufen Yu248728d2020-08-20 09:22:07 -04001429 dev->offset,
Song Liu1e6d6902016-11-17 15:24:39 -08001430 dev->sector, tx, sh, 0);
Yufen Yuc911c462020-07-18 05:29:07 -04001431 rbi = r5_next_bio(conf, rbi, dev->sector);
Dan Williams91c00922007-01-02 13:52:30 -07001432 }
1433 }
1434 }
1435
1436 atomic_inc(&sh->count);
Dan Williamsa08abd82009-06-03 11:43:59 -07001437 init_async_submit(&submit, ASYNC_TX_ACK, tx, ops_complete_biofill, sh, NULL);
1438 async_trigger_callback(&submit);
Dan Williams91c00922007-01-02 13:52:30 -07001439}
1440
Dan Williams4e7d2c02009-08-29 19:13:11 -07001441static void mark_target_uptodate(struct stripe_head *sh, int target)
1442{
1443 struct r5dev *tgt;
1444
1445 if (target < 0)
1446 return;
1447
1448 tgt = &sh->dev[target];
1449 set_bit(R5_UPTODATE, &tgt->flags);
1450 BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
1451 clear_bit(R5_Wantcompute, &tgt->flags);
1452}
1453
Dan Williamsac6b53b2009-07-14 13:40:19 -07001454static void ops_complete_compute(void *stripe_head_ref)
Dan Williams91c00922007-01-02 13:52:30 -07001455{
1456 struct stripe_head *sh = stripe_head_ref;
Dan Williams91c00922007-01-02 13:52:30 -07001457
Harvey Harrisone46b272b2008-04-28 02:15:50 -07001458 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001459 (unsigned long long)sh->sector);
1460
Dan Williamsac6b53b2009-07-14 13:40:19 -07001461 /* mark the computed target(s) as uptodate */
Dan Williams4e7d2c02009-08-29 19:13:11 -07001462 mark_target_uptodate(sh, sh->ops.target);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001463 mark_target_uptodate(sh, sh->ops.target2);
Dan Williams4e7d2c02009-08-29 19:13:11 -07001464
Dan Williamsecc65c92008-06-28 08:31:57 +10001465 clear_bit(STRIPE_COMPUTE_RUN, &sh->state);
1466 if (sh->check_state == check_state_compute_run)
1467 sh->check_state = check_state_compute_result;
Dan Williams91c00922007-01-02 13:52:30 -07001468 set_bit(STRIPE_HANDLE, &sh->state);
Shaohua Li6d036f72015-08-13 14:31:57 -07001469 raid5_release_stripe(sh);
Dan Williams91c00922007-01-02 13:52:30 -07001470}
1471
Dan Williamsd6f38f32009-07-14 11:50:52 -07001472/* return a pointer to the address conversion region of the scribble buffer */
Kent Overstreetb330e6a2019-03-11 23:31:06 -07001473static struct page **to_addr_page(struct raid5_percpu *percpu, int i)
Dan Williams91c00922007-01-02 13:52:30 -07001474{
Kent Overstreetb330e6a2019-03-11 23:31:06 -07001475 return percpu->scribble + i * percpu->scribble_obj_size;
shli@kernel.org46d5b782014-12-15 12:57:02 +11001476}
1477
1478/* return a pointer to the address conversion region of the scribble buffer */
Kent Overstreetb330e6a2019-03-11 23:31:06 -07001479static addr_conv_t *to_addr_conv(struct stripe_head *sh,
1480 struct raid5_percpu *percpu, int i)
shli@kernel.org46d5b782014-12-15 12:57:02 +11001481{
Kent Overstreetb330e6a2019-03-11 23:31:06 -07001482 return (void *) (to_addr_page(percpu, i) + sh->disks + 2);
Dan Williamsd6f38f32009-07-14 11:50:52 -07001483}
1484
Yufen Yu7aba13b2020-08-20 09:22:06 -04001485/*
1486 * Return a pointer to record offset address.
1487 */
1488static unsigned int *
1489to_addr_offs(struct stripe_head *sh, struct raid5_percpu *percpu)
1490{
1491 return (unsigned int *) (to_addr_conv(sh, percpu, 0) + sh->disks + 2);
1492}
1493
Dan Williamsd6f38f32009-07-14 11:50:52 -07001494static struct dma_async_tx_descriptor *
1495ops_run_compute5(struct stripe_head *sh, struct raid5_percpu *percpu)
1496{
Dan Williams91c00922007-01-02 13:52:30 -07001497 int disks = sh->disks;
shli@kernel.org46d5b782014-12-15 12:57:02 +11001498 struct page **xor_srcs = to_addr_page(percpu, 0);
Yufen Yu7aba13b2020-08-20 09:22:06 -04001499 unsigned int *off_srcs = to_addr_offs(sh, percpu);
Dan Williams91c00922007-01-02 13:52:30 -07001500 int target = sh->ops.target;
1501 struct r5dev *tgt = &sh->dev[target];
1502 struct page *xor_dest = tgt->page;
Yufen Yu7aba13b2020-08-20 09:22:06 -04001503 unsigned int off_dest = tgt->offset;
Dan Williams91c00922007-01-02 13:52:30 -07001504 int count = 0;
1505 struct dma_async_tx_descriptor *tx;
Dan Williamsa08abd82009-06-03 11:43:59 -07001506 struct async_submit_ctl submit;
Dan Williams91c00922007-01-02 13:52:30 -07001507 int i;
1508
shli@kernel.org59fc6302014-12-15 12:57:03 +11001509 BUG_ON(sh->batch_head);
1510
Dan Williams91c00922007-01-02 13:52:30 -07001511 pr_debug("%s: stripe %llu block: %d\n",
Harvey Harrisone46b272b2008-04-28 02:15:50 -07001512 __func__, (unsigned long long)sh->sector, target);
Dan Williams91c00922007-01-02 13:52:30 -07001513 BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
1514
Yufen Yu7aba13b2020-08-20 09:22:06 -04001515 for (i = disks; i--; ) {
1516 if (i != target) {
1517 off_srcs[count] = sh->dev[i].offset;
Dan Williams91c00922007-01-02 13:52:30 -07001518 xor_srcs[count++] = sh->dev[i].page;
Yufen Yu7aba13b2020-08-20 09:22:06 -04001519 }
1520 }
Dan Williams91c00922007-01-02 13:52:30 -07001521
1522 atomic_inc(&sh->count);
1523
Dan Williams0403e382009-09-08 17:42:50 -07001524 init_async_submit(&submit, ASYNC_TX_FENCE|ASYNC_TX_XOR_ZERO_DST, NULL,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001525 ops_complete_compute, sh, to_addr_conv(sh, percpu, 0));
Dan Williams91c00922007-01-02 13:52:30 -07001526 if (unlikely(count == 1))
Yufen Yu7aba13b2020-08-20 09:22:06 -04001527 tx = async_memcpy(xor_dest, xor_srcs[0], off_dest, off_srcs[0],
Yufen Yuc911c462020-07-18 05:29:07 -04001528 RAID5_STRIPE_SIZE(sh->raid_conf), &submit);
Dan Williams91c00922007-01-02 13:52:30 -07001529 else
Yufen Yua7c224a2020-08-20 09:22:09 -04001530 tx = async_xor_offs(xor_dest, off_dest, xor_srcs, off_srcs, count,
Yufen Yuc911c462020-07-18 05:29:07 -04001531 RAID5_STRIPE_SIZE(sh->raid_conf), &submit);
Dan Williams91c00922007-01-02 13:52:30 -07001532
Dan Williams91c00922007-01-02 13:52:30 -07001533 return tx;
1534}
1535
Dan Williamsac6b53b2009-07-14 13:40:19 -07001536/* set_syndrome_sources - populate source buffers for gen_syndrome
1537 * @srcs - (struct page *) array of size sh->disks
Yufen Yud69454b2020-08-20 09:22:10 -04001538 * @offs - (unsigned int) array of offset for each page
Dan Williamsac6b53b2009-07-14 13:40:19 -07001539 * @sh - stripe_head to parse
1540 *
1541 * Populates srcs in proper layout order for the stripe and returns the
1542 * 'count' of sources to be used in a call to async_gen_syndrome. The P
1543 * destination buffer is recorded in srcs[count] and the Q destination
1544 * is recorded in srcs[count+1]].
1545 */
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001546static int set_syndrome_sources(struct page **srcs,
Yufen Yud69454b2020-08-20 09:22:10 -04001547 unsigned int *offs,
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001548 struct stripe_head *sh,
1549 int srctype)
Dan Williamsac6b53b2009-07-14 13:40:19 -07001550{
1551 int disks = sh->disks;
1552 int syndrome_disks = sh->ddf_layout ? disks : (disks - 2);
1553 int d0_idx = raid6_d0(sh);
1554 int count;
1555 int i;
1556
1557 for (i = 0; i < disks; i++)
NeilBrown5dd33c92009-10-16 16:40:25 +11001558 srcs[i] = NULL;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001559
1560 count = 0;
1561 i = d0_idx;
1562 do {
1563 int slot = raid6_idx_to_slot(i, sh, &count, syndrome_disks);
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001564 struct r5dev *dev = &sh->dev[i];
Dan Williamsac6b53b2009-07-14 13:40:19 -07001565
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001566 if (i == sh->qd_idx || i == sh->pd_idx ||
1567 (srctype == SYNDROME_SRC_ALL) ||
1568 (srctype == SYNDROME_SRC_WANT_DRAIN &&
Song Liu1e6d6902016-11-17 15:24:39 -08001569 (test_bit(R5_Wantdrain, &dev->flags) ||
1570 test_bit(R5_InJournal, &dev->flags))) ||
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001571 (srctype == SYNDROME_SRC_WRITTEN &&
Song Liu09777622017-03-13 13:44:35 -07001572 (dev->written ||
1573 test_bit(R5_InJournal, &dev->flags)))) {
Song Liu1e6d6902016-11-17 15:24:39 -08001574 if (test_bit(R5_InJournal, &dev->flags))
1575 srcs[slot] = sh->dev[i].orig_page;
1576 else
1577 srcs[slot] = sh->dev[i].page;
Yufen Yud69454b2020-08-20 09:22:10 -04001578 /*
1579 * For R5_InJournal, PAGE_SIZE must be 4KB and will
1580 * not shared page. In that case, dev[i].offset
1581 * is 0.
1582 */
1583 offs[slot] = sh->dev[i].offset;
Song Liu1e6d6902016-11-17 15:24:39 -08001584 }
Dan Williamsac6b53b2009-07-14 13:40:19 -07001585 i = raid6_next_disk(i, disks);
1586 } while (i != d0_idx);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001587
NeilBrowne4424fe2009-10-16 16:27:34 +11001588 return syndrome_disks;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001589}
1590
1591static struct dma_async_tx_descriptor *
1592ops_run_compute6_1(struct stripe_head *sh, struct raid5_percpu *percpu)
1593{
1594 int disks = sh->disks;
shli@kernel.org46d5b782014-12-15 12:57:02 +11001595 struct page **blocks = to_addr_page(percpu, 0);
Yufen Yua7c224a2020-08-20 09:22:09 -04001596 unsigned int *offs = to_addr_offs(sh, percpu);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001597 int target;
1598 int qd_idx = sh->qd_idx;
1599 struct dma_async_tx_descriptor *tx;
1600 struct async_submit_ctl submit;
1601 struct r5dev *tgt;
1602 struct page *dest;
Yufen Yua7c224a2020-08-20 09:22:09 -04001603 unsigned int dest_off;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001604 int i;
1605 int count;
1606
shli@kernel.org59fc6302014-12-15 12:57:03 +11001607 BUG_ON(sh->batch_head);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001608 if (sh->ops.target < 0)
1609 target = sh->ops.target2;
1610 else if (sh->ops.target2 < 0)
1611 target = sh->ops.target;
1612 else
1613 /* we should only have one valid target */
1614 BUG();
1615 BUG_ON(target < 0);
1616 pr_debug("%s: stripe %llu block: %d\n",
1617 __func__, (unsigned long long)sh->sector, target);
1618
1619 tgt = &sh->dev[target];
1620 BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
1621 dest = tgt->page;
Yufen Yua7c224a2020-08-20 09:22:09 -04001622 dest_off = tgt->offset;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001623
1624 atomic_inc(&sh->count);
1625
1626 if (target == qd_idx) {
Yufen Yud69454b2020-08-20 09:22:10 -04001627 count = set_syndrome_sources(blocks, offs, sh, SYNDROME_SRC_ALL);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001628 blocks[count] = NULL; /* regenerating p is not necessary */
1629 BUG_ON(blocks[count+1] != dest); /* q should already be set */
Dan Williams0403e382009-09-08 17:42:50 -07001630 init_async_submit(&submit, ASYNC_TX_FENCE, NULL,
1631 ops_complete_compute, sh,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001632 to_addr_conv(sh, percpu, 0));
Yufen Yud69454b2020-08-20 09:22:10 -04001633 tx = async_gen_syndrome(blocks, offs, count+2,
Yufen Yuc911c462020-07-18 05:29:07 -04001634 RAID5_STRIPE_SIZE(sh->raid_conf), &submit);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001635 } else {
1636 /* Compute any data- or p-drive using XOR */
1637 count = 0;
1638 for (i = disks; i-- ; ) {
1639 if (i == target || i == qd_idx)
1640 continue;
Yufen Yua7c224a2020-08-20 09:22:09 -04001641 offs[count] = sh->dev[i].offset;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001642 blocks[count++] = sh->dev[i].page;
1643 }
1644
Dan Williams0403e382009-09-08 17:42:50 -07001645 init_async_submit(&submit, ASYNC_TX_FENCE|ASYNC_TX_XOR_ZERO_DST,
1646 NULL, ops_complete_compute, sh,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001647 to_addr_conv(sh, percpu, 0));
Yufen Yua7c224a2020-08-20 09:22:09 -04001648 tx = async_xor_offs(dest, dest_off, blocks, offs, count,
Yufen Yuc911c462020-07-18 05:29:07 -04001649 RAID5_STRIPE_SIZE(sh->raid_conf), &submit);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001650 }
1651
1652 return tx;
1653}
1654
1655static struct dma_async_tx_descriptor *
1656ops_run_compute6_2(struct stripe_head *sh, struct raid5_percpu *percpu)
1657{
1658 int i, count, disks = sh->disks;
1659 int syndrome_disks = sh->ddf_layout ? disks : disks-2;
1660 int d0_idx = raid6_d0(sh);
1661 int faila = -1, failb = -1;
1662 int target = sh->ops.target;
1663 int target2 = sh->ops.target2;
1664 struct r5dev *tgt = &sh->dev[target];
1665 struct r5dev *tgt2 = &sh->dev[target2];
1666 struct dma_async_tx_descriptor *tx;
shli@kernel.org46d5b782014-12-15 12:57:02 +11001667 struct page **blocks = to_addr_page(percpu, 0);
Yufen Yua7c224a2020-08-20 09:22:09 -04001668 unsigned int *offs = to_addr_offs(sh, percpu);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001669 struct async_submit_ctl submit;
1670
shli@kernel.org59fc6302014-12-15 12:57:03 +11001671 BUG_ON(sh->batch_head);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001672 pr_debug("%s: stripe %llu block1: %d block2: %d\n",
1673 __func__, (unsigned long long)sh->sector, target, target2);
1674 BUG_ON(target < 0 || target2 < 0);
1675 BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
1676 BUG_ON(!test_bit(R5_Wantcompute, &tgt2->flags));
1677
Dan Williams6c910a72009-09-16 12:24:54 -07001678 /* we need to open-code set_syndrome_sources to handle the
Dan Williamsac6b53b2009-07-14 13:40:19 -07001679 * slot number conversion for 'faila' and 'failb'
1680 */
Yufen Yua7c224a2020-08-20 09:22:09 -04001681 for (i = 0; i < disks ; i++) {
1682 offs[i] = 0;
NeilBrown5dd33c92009-10-16 16:40:25 +11001683 blocks[i] = NULL;
Yufen Yua7c224a2020-08-20 09:22:09 -04001684 }
Dan Williamsac6b53b2009-07-14 13:40:19 -07001685 count = 0;
1686 i = d0_idx;
1687 do {
1688 int slot = raid6_idx_to_slot(i, sh, &count, syndrome_disks);
1689
Yufen Yua7c224a2020-08-20 09:22:09 -04001690 offs[slot] = sh->dev[i].offset;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001691 blocks[slot] = sh->dev[i].page;
1692
1693 if (i == target)
1694 faila = slot;
1695 if (i == target2)
1696 failb = slot;
1697 i = raid6_next_disk(i, disks);
1698 } while (i != d0_idx);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001699
1700 BUG_ON(faila == failb);
1701 if (failb < faila)
1702 swap(faila, failb);
1703 pr_debug("%s: stripe: %llu faila: %d failb: %d\n",
1704 __func__, (unsigned long long)sh->sector, faila, failb);
1705
1706 atomic_inc(&sh->count);
1707
1708 if (failb == syndrome_disks+1) {
1709 /* Q disk is one of the missing disks */
1710 if (faila == syndrome_disks) {
1711 /* Missing P+Q, just recompute */
Dan Williams0403e382009-09-08 17:42:50 -07001712 init_async_submit(&submit, ASYNC_TX_FENCE, NULL,
1713 ops_complete_compute, sh,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001714 to_addr_conv(sh, percpu, 0));
Yufen Yud69454b2020-08-20 09:22:10 -04001715 return async_gen_syndrome(blocks, offs, syndrome_disks+2,
Yufen Yuc911c462020-07-18 05:29:07 -04001716 RAID5_STRIPE_SIZE(sh->raid_conf),
1717 &submit);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001718 } else {
1719 struct page *dest;
Yufen Yua7c224a2020-08-20 09:22:09 -04001720 unsigned int dest_off;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001721 int data_target;
1722 int qd_idx = sh->qd_idx;
1723
1724 /* Missing D+Q: recompute D from P, then recompute Q */
1725 if (target == qd_idx)
1726 data_target = target2;
1727 else
1728 data_target = target;
1729
1730 count = 0;
1731 for (i = disks; i-- ; ) {
1732 if (i == data_target || i == qd_idx)
1733 continue;
Yufen Yua7c224a2020-08-20 09:22:09 -04001734 offs[count] = sh->dev[i].offset;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001735 blocks[count++] = sh->dev[i].page;
1736 }
1737 dest = sh->dev[data_target].page;
Yufen Yua7c224a2020-08-20 09:22:09 -04001738 dest_off = sh->dev[data_target].offset;
Dan Williams0403e382009-09-08 17:42:50 -07001739 init_async_submit(&submit,
1740 ASYNC_TX_FENCE|ASYNC_TX_XOR_ZERO_DST,
1741 NULL, NULL, NULL,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001742 to_addr_conv(sh, percpu, 0));
Yufen Yua7c224a2020-08-20 09:22:09 -04001743 tx = async_xor_offs(dest, dest_off, blocks, offs, count,
Yufen Yuc911c462020-07-18 05:29:07 -04001744 RAID5_STRIPE_SIZE(sh->raid_conf),
Dan Williamsac6b53b2009-07-14 13:40:19 -07001745 &submit);
1746
Yufen Yud69454b2020-08-20 09:22:10 -04001747 count = set_syndrome_sources(blocks, offs, sh, SYNDROME_SRC_ALL);
Dan Williams0403e382009-09-08 17:42:50 -07001748 init_async_submit(&submit, ASYNC_TX_FENCE, tx,
1749 ops_complete_compute, sh,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001750 to_addr_conv(sh, percpu, 0));
Yufen Yud69454b2020-08-20 09:22:10 -04001751 return async_gen_syndrome(blocks, offs, count+2,
Yufen Yuc911c462020-07-18 05:29:07 -04001752 RAID5_STRIPE_SIZE(sh->raid_conf),
1753 &submit);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001754 }
Dan Williamsac6b53b2009-07-14 13:40:19 -07001755 } else {
Dan Williams6c910a72009-09-16 12:24:54 -07001756 init_async_submit(&submit, ASYNC_TX_FENCE, NULL,
1757 ops_complete_compute, sh,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001758 to_addr_conv(sh, percpu, 0));
Dan Williams6c910a72009-09-16 12:24:54 -07001759 if (failb == syndrome_disks) {
1760 /* We're missing D+P. */
1761 return async_raid6_datap_recov(syndrome_disks+2,
Yufen Yuc911c462020-07-18 05:29:07 -04001762 RAID5_STRIPE_SIZE(sh->raid_conf),
1763 faila,
Yufen Yu4f86ff52020-08-20 09:22:11 -04001764 blocks, offs, &submit);
Dan Williams6c910a72009-09-16 12:24:54 -07001765 } else {
1766 /* We're missing D+D. */
1767 return async_raid6_2data_recov(syndrome_disks+2,
Yufen Yuc911c462020-07-18 05:29:07 -04001768 RAID5_STRIPE_SIZE(sh->raid_conf),
1769 faila, failb,
Yufen Yu4f86ff52020-08-20 09:22:11 -04001770 blocks, offs, &submit);
Dan Williams6c910a72009-09-16 12:24:54 -07001771 }
Dan Williamsac6b53b2009-07-14 13:40:19 -07001772 }
1773}
1774
Dan Williams91c00922007-01-02 13:52:30 -07001775static void ops_complete_prexor(void *stripe_head_ref)
1776{
1777 struct stripe_head *sh = stripe_head_ref;
1778
Harvey Harrisone46b272b2008-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);
Song Liu1e6d6902016-11-17 15:24:39 -08001781
1782 if (r5c_is_writeback(sh->raid_conf->log))
1783 /*
1784 * raid5-cache write back uses orig_page during prexor.
1785 * After prexor, it is time to free orig_page
1786 */
1787 r5c_release_extra_page(sh);
Dan Williams91c00922007-01-02 13:52:30 -07001788}
1789
1790static struct dma_async_tx_descriptor *
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001791ops_run_prexor5(struct stripe_head *sh, struct raid5_percpu *percpu,
1792 struct dma_async_tx_descriptor *tx)
Dan Williams91c00922007-01-02 13:52:30 -07001793{
Dan Williams91c00922007-01-02 13:52:30 -07001794 int disks = sh->disks;
shli@kernel.org46d5b782014-12-15 12:57:02 +11001795 struct page **xor_srcs = to_addr_page(percpu, 0);
Yufen Yua7c224a2020-08-20 09:22:09 -04001796 unsigned int *off_srcs = to_addr_offs(sh, percpu);
Dan Williams91c00922007-01-02 13:52:30 -07001797 int count = 0, pd_idx = sh->pd_idx, i;
Dan Williamsa08abd82009-06-03 11:43:59 -07001798 struct async_submit_ctl submit;
Dan Williams91c00922007-01-02 13:52:30 -07001799
1800 /* existing parity data subtracted */
Yufen Yua7c224a2020-08-20 09:22:09 -04001801 unsigned int off_dest = off_srcs[count] = sh->dev[pd_idx].offset;
Dan Williams91c00922007-01-02 13:52:30 -07001802 struct page *xor_dest = xor_srcs[count++] = sh->dev[pd_idx].page;
1803
shli@kernel.org59fc6302014-12-15 12:57:03 +11001804 BUG_ON(sh->batch_head);
Harvey Harrisone46b272b2008-04-28 02:15:50 -07001805 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001806 (unsigned long long)sh->sector);
1807
1808 for (i = disks; i--; ) {
1809 struct r5dev *dev = &sh->dev[i];
1810 /* Only process blocks that are known to be uptodate */
Yufen Yua7c224a2020-08-20 09:22:09 -04001811 if (test_bit(R5_InJournal, &dev->flags)) {
1812 /*
1813 * For this case, PAGE_SIZE must be equal to 4KB and
1814 * page offset is zero.
1815 */
1816 off_srcs[count] = dev->offset;
Song Liu1e6d6902016-11-17 15:24:39 -08001817 xor_srcs[count++] = dev->orig_page;
Yufen Yua7c224a2020-08-20 09:22:09 -04001818 } else if (test_bit(R5_Wantdrain, &dev->flags)) {
1819 off_srcs[count] = dev->offset;
Dan Williams91c00922007-01-02 13:52:30 -07001820 xor_srcs[count++] = dev->page;
Yufen Yua7c224a2020-08-20 09:22:09 -04001821 }
Dan Williams91c00922007-01-02 13:52:30 -07001822 }
1823
Dan Williams0403e382009-09-08 17:42:50 -07001824 init_async_submit(&submit, ASYNC_TX_FENCE|ASYNC_TX_XOR_DROP_DST, tx,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001825 ops_complete_prexor, sh, to_addr_conv(sh, percpu, 0));
Yufen Yua7c224a2020-08-20 09:22:09 -04001826 tx = async_xor_offs(xor_dest, off_dest, xor_srcs, off_srcs, count,
Yufen Yuc911c462020-07-18 05:29:07 -04001827 RAID5_STRIPE_SIZE(sh->raid_conf), &submit);
Dan Williams91c00922007-01-02 13:52:30 -07001828
1829 return tx;
1830}
1831
1832static struct dma_async_tx_descriptor *
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001833ops_run_prexor6(struct stripe_head *sh, struct raid5_percpu *percpu,
1834 struct dma_async_tx_descriptor *tx)
1835{
1836 struct page **blocks = to_addr_page(percpu, 0);
Yufen Yud69454b2020-08-20 09:22:10 -04001837 unsigned int *offs = to_addr_offs(sh, percpu);
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001838 int count;
1839 struct async_submit_ctl submit;
1840
1841 pr_debug("%s: stripe %llu\n", __func__,
1842 (unsigned long long)sh->sector);
1843
Yufen Yud69454b2020-08-20 09:22:10 -04001844 count = set_syndrome_sources(blocks, offs, sh, SYNDROME_SRC_WANT_DRAIN);
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001845
1846 init_async_submit(&submit, ASYNC_TX_FENCE|ASYNC_TX_PQ_XOR_DST, tx,
1847 ops_complete_prexor, sh, to_addr_conv(sh, percpu, 0));
Yufen Yud69454b2020-08-20 09:22:10 -04001848 tx = async_gen_syndrome(blocks, offs, count+2,
Yufen Yuc911c462020-07-18 05:29:07 -04001849 RAID5_STRIPE_SIZE(sh->raid_conf), &submit);
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001850
1851 return tx;
1852}
1853
1854static struct dma_async_tx_descriptor *
Dan Williamsd8ee0722008-06-28 08:32:06 +10001855ops_run_biodrain(struct stripe_head *sh, struct dma_async_tx_descriptor *tx)
Dan Williams91c00922007-01-02 13:52:30 -07001856{
Song Liu1e6d6902016-11-17 15:24:39 -08001857 struct r5conf *conf = sh->raid_conf;
Dan Williams91c00922007-01-02 13:52:30 -07001858 int disks = sh->disks;
Dan Williamsd8ee0722008-06-28 08:32:06 +10001859 int i;
shli@kernel.org59fc6302014-12-15 12:57:03 +11001860 struct stripe_head *head_sh = sh;
Dan Williams91c00922007-01-02 13:52:30 -07001861
Harvey Harrisone46b272b2008-04-28 02:15:50 -07001862 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001863 (unsigned long long)sh->sector);
1864
1865 for (i = disks; i--; ) {
shli@kernel.org59fc6302014-12-15 12:57:03 +11001866 struct r5dev *dev;
Dan Williams91c00922007-01-02 13:52:30 -07001867 struct bio *chosen;
Dan Williams91c00922007-01-02 13:52:30 -07001868
shli@kernel.org59fc6302014-12-15 12:57:03 +11001869 sh = head_sh;
1870 if (test_and_clear_bit(R5_Wantdrain, &head_sh->dev[i].flags)) {
Dan Williams91c00922007-01-02 13:52:30 -07001871 struct bio *wbi;
1872
shli@kernel.org59fc6302014-12-15 12:57:03 +11001873again:
1874 dev = &sh->dev[i];
Song Liu1e6d6902016-11-17 15:24:39 -08001875 /*
1876 * clear R5_InJournal, so when rewriting a page in
1877 * journal, it is not skipped by r5l_log_stripe()
1878 */
1879 clear_bit(R5_InJournal, &dev->flags);
Shaohua Lib17459c2012-07-19 16:01:31 +10001880 spin_lock_irq(&sh->stripe_lock);
Dan Williams91c00922007-01-02 13:52:30 -07001881 chosen = dev->towrite;
1882 dev->towrite = NULL;
shli@kernel.org7a87f432014-12-15 12:57:03 +11001883 sh->overwrite_disks = 0;
Dan Williams91c00922007-01-02 13:52:30 -07001884 BUG_ON(dev->written);
1885 wbi = dev->written = chosen;
Shaohua Lib17459c2012-07-19 16:01:31 +10001886 spin_unlock_irq(&sh->stripe_lock);
Shaohua Lid592a992014-05-21 17:57:44 +08001887 WARN_ON(dev->page != dev->orig_page);
Dan Williams91c00922007-01-02 13:52:30 -07001888
Kent Overstreet4f024f32013-10-11 15:44:27 -07001889 while (wbi && wbi->bi_iter.bi_sector <
Yufen Yuc911c462020-07-18 05:29:07 -04001890 dev->sector + RAID5_STRIPE_SECTORS(conf)) {
Jens Axboe1eff9d32016-08-05 15:35:16 -06001891 if (wbi->bi_opf & REQ_FUA)
Tejun Heoe9c74692010-09-03 11:56:18 +02001892 set_bit(R5_WantFUA, &dev->flags);
Jens Axboe1eff9d32016-08-05 15:35:16 -06001893 if (wbi->bi_opf & REQ_SYNC)
Shaohua Libc0934f2012-05-22 13:55:05 +10001894 set_bit(R5_SyncIO, &dev->flags);
Mike Christie796a5cf2016-06-05 14:32:07 -05001895 if (bio_op(wbi) == REQ_OP_DISCARD)
Shaohua Li620125f2012-10-11 13:49:05 +11001896 set_bit(R5_Discard, &dev->flags);
Shaohua Lid592a992014-05-21 17:57:44 +08001897 else {
1898 tx = async_copy_data(1, wbi, &dev->page,
Yufen Yu248728d2020-08-20 09:22:07 -04001899 dev->offset,
Song Liu1e6d6902016-11-17 15:24:39 -08001900 dev->sector, tx, sh,
1901 r5c_is_writeback(conf->log));
1902 if (dev->page != dev->orig_page &&
1903 !r5c_is_writeback(conf->log)) {
Shaohua Lid592a992014-05-21 17:57:44 +08001904 set_bit(R5_SkipCopy, &dev->flags);
1905 clear_bit(R5_UPTODATE, &dev->flags);
1906 clear_bit(R5_OVERWRITE, &dev->flags);
1907 }
1908 }
Yufen Yuc911c462020-07-18 05:29:07 -04001909 wbi = r5_next_bio(conf, wbi, dev->sector);
Dan Williams91c00922007-01-02 13:52:30 -07001910 }
shli@kernel.org59fc6302014-12-15 12:57:03 +11001911
1912 if (head_sh->batch_head) {
1913 sh = list_first_entry(&sh->batch_list,
1914 struct stripe_head,
1915 batch_list);
1916 if (sh == head_sh)
1917 continue;
1918 goto again;
1919 }
Dan Williams91c00922007-01-02 13:52:30 -07001920 }
1921 }
1922
1923 return tx;
1924}
1925
Dan Williamsac6b53b2009-07-14 13:40:19 -07001926static void ops_complete_reconstruct(void *stripe_head_ref)
Dan Williams91c00922007-01-02 13:52:30 -07001927{
1928 struct stripe_head *sh = stripe_head_ref;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001929 int disks = sh->disks;
1930 int pd_idx = sh->pd_idx;
1931 int qd_idx = sh->qd_idx;
1932 int i;
Shaohua Li9e4447682012-10-11 13:49:49 +11001933 bool fua = false, sync = false, discard = false;
Dan Williams91c00922007-01-02 13:52:30 -07001934
Harvey Harrisone46b272b2008-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
Shaohua Libc0934f2012-05-22 13:55:05 +10001938 for (i = disks; i--; ) {
Tejun Heoe9c74692010-09-03 11:56:18 +02001939 fua |= test_bit(R5_WantFUA, &sh->dev[i].flags);
Shaohua Libc0934f2012-05-22 13:55:05 +10001940 sync |= test_bit(R5_SyncIO, &sh->dev[i].flags);
Shaohua Li9e4447682012-10-11 13:49:49 +11001941 discard |= test_bit(R5_Discard, &sh->dev[i].flags);
Shaohua Libc0934f2012-05-22 13:55:05 +10001942 }
Tejun Heoe9c74692010-09-03 11:56:18 +02001943
Dan Williams91c00922007-01-02 13:52:30 -07001944 for (i = disks; i--; ) {
1945 struct r5dev *dev = &sh->dev[i];
Dan Williamsac6b53b2009-07-14 13:40:19 -07001946
Tejun Heoe9c74692010-09-03 11:56:18 +02001947 if (dev->written || i == pd_idx || i == qd_idx) {
NeilBrown235b6002017-10-17 16:18:36 +11001948 if (!discard && !test_bit(R5_SkipCopy, &dev->flags)) {
Shaohua Li9e4447682012-10-11 13:49:49 +11001949 set_bit(R5_UPTODATE, &dev->flags);
NeilBrown235b6002017-10-17 16:18:36 +11001950 if (test_bit(STRIPE_EXPAND_READY, &sh->state))
1951 set_bit(R5_Expanded, &dev->flags);
1952 }
Tejun Heoe9c74692010-09-03 11:56:18 +02001953 if (fua)
1954 set_bit(R5_WantFUA, &dev->flags);
Shaohua Libc0934f2012-05-22 13:55:05 +10001955 if (sync)
1956 set_bit(R5_SyncIO, &dev->flags);
Tejun Heoe9c74692010-09-03 11:56:18 +02001957 }
Dan Williams91c00922007-01-02 13:52:30 -07001958 }
1959
Dan Williamsd8ee0722008-06-28 08:32:06 +10001960 if (sh->reconstruct_state == reconstruct_state_drain_run)
1961 sh->reconstruct_state = reconstruct_state_drain_result;
1962 else if (sh->reconstruct_state == reconstruct_state_prexor_drain_run)
1963 sh->reconstruct_state = reconstruct_state_prexor_drain_result;
1964 else {
1965 BUG_ON(sh->reconstruct_state != reconstruct_state_run);
1966 sh->reconstruct_state = reconstruct_state_result;
1967 }
Dan Williams91c00922007-01-02 13:52:30 -07001968
1969 set_bit(STRIPE_HANDLE, &sh->state);
Shaohua Li6d036f72015-08-13 14:31:57 -07001970 raid5_release_stripe(sh);
Dan Williams91c00922007-01-02 13:52:30 -07001971}
1972
1973static void
Dan Williamsac6b53b2009-07-14 13:40:19 -07001974ops_run_reconstruct5(struct stripe_head *sh, struct raid5_percpu *percpu,
1975 struct dma_async_tx_descriptor *tx)
Dan Williams91c00922007-01-02 13:52:30 -07001976{
Dan Williams91c00922007-01-02 13:52:30 -07001977 int disks = sh->disks;
shli@kernel.org59fc6302014-12-15 12:57:03 +11001978 struct page **xor_srcs;
Yufen Yu7aba13b2020-08-20 09:22:06 -04001979 unsigned int *off_srcs;
Dan Williamsa08abd82009-06-03 11:43:59 -07001980 struct async_submit_ctl submit;
shli@kernel.org59fc6302014-12-15 12:57:03 +11001981 int count, pd_idx = sh->pd_idx, i;
Dan Williams91c00922007-01-02 13:52:30 -07001982 struct page *xor_dest;
Yufen Yu7aba13b2020-08-20 09:22:06 -04001983 unsigned int off_dest;
Dan Williamsd8ee0722008-06-28 08:32:06 +10001984 int prexor = 0;
Dan Williams91c00922007-01-02 13:52:30 -07001985 unsigned long flags;
shli@kernel.org59fc6302014-12-15 12:57:03 +11001986 int j = 0;
1987 struct stripe_head *head_sh = sh;
1988 int last_stripe;
Dan Williams91c00922007-01-02 13:52:30 -07001989
Harvey Harrisone46b272b2008-04-28 02:15:50 -07001990 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001991 (unsigned long long)sh->sector);
1992
Shaohua Li620125f2012-10-11 13:49:05 +11001993 for (i = 0; i < sh->disks; i++) {
1994 if (pd_idx == i)
1995 continue;
1996 if (!test_bit(R5_Discard, &sh->dev[i].flags))
1997 break;
1998 }
1999 if (i >= sh->disks) {
2000 atomic_inc(&sh->count);
Shaohua Li620125f2012-10-11 13:49:05 +11002001 set_bit(R5_Discard, &sh->dev[pd_idx].flags);
2002 ops_complete_reconstruct(sh);
2003 return;
2004 }
shli@kernel.org59fc6302014-12-15 12:57:03 +11002005again:
2006 count = 0;
2007 xor_srcs = to_addr_page(percpu, j);
Yufen Yu7aba13b2020-08-20 09:22:06 -04002008 off_srcs = to_addr_offs(sh, percpu);
Dan Williams91c00922007-01-02 13:52:30 -07002009 /* check if prexor is active which means only process blocks
2010 * that are part of a read-modify-write (written)
2011 */
shli@kernel.org59fc6302014-12-15 12:57:03 +11002012 if (head_sh->reconstruct_state == reconstruct_state_prexor_drain_run) {
Dan Williamsd8ee0722008-06-28 08:32:06 +10002013 prexor = 1;
Yufen Yu7aba13b2020-08-20 09:22:06 -04002014 off_dest = off_srcs[count] = sh->dev[pd_idx].offset;
Dan Williams91c00922007-01-02 13:52:30 -07002015 xor_dest = xor_srcs[count++] = sh->dev[pd_idx].page;
2016 for (i = disks; i--; ) {
2017 struct r5dev *dev = &sh->dev[i];
Song Liu1e6d6902016-11-17 15:24:39 -08002018 if (head_sh->dev[i].written ||
Yufen Yu7aba13b2020-08-20 09:22:06 -04002019 test_bit(R5_InJournal, &head_sh->dev[i].flags)) {
2020 off_srcs[count] = dev->offset;
Dan Williams91c00922007-01-02 13:52:30 -07002021 xor_srcs[count++] = dev->page;
Yufen Yu7aba13b2020-08-20 09:22:06 -04002022 }
Dan Williams91c00922007-01-02 13:52:30 -07002023 }
2024 } else {
2025 xor_dest = sh->dev[pd_idx].page;
Yufen Yu7aba13b2020-08-20 09:22:06 -04002026 off_dest = sh->dev[pd_idx].offset;
Dan Williams91c00922007-01-02 13:52:30 -07002027 for (i = disks; i--; ) {
2028 struct r5dev *dev = &sh->dev[i];
Yufen Yu7aba13b2020-08-20 09:22:06 -04002029 if (i != pd_idx) {
2030 off_srcs[count] = dev->offset;
Dan Williams91c00922007-01-02 13:52:30 -07002031 xor_srcs[count++] = dev->page;
Yufen Yu7aba13b2020-08-20 09:22:06 -04002032 }
Dan Williams91c00922007-01-02 13:52:30 -07002033 }
2034 }
2035
Dan Williams91c00922007-01-02 13:52:30 -07002036 /* 1/ if we prexor'd then the dest is reused as a source
2037 * 2/ if we did not prexor then we are redoing the parity
2038 * set ASYNC_TX_XOR_DROP_DST and ASYNC_TX_XOR_ZERO_DST
2039 * for the synchronous xor case
2040 */
shli@kernel.org59fc6302014-12-15 12:57:03 +11002041 last_stripe = !head_sh->batch_head ||
2042 list_first_entry(&sh->batch_list,
2043 struct stripe_head, batch_list) == head_sh;
2044 if (last_stripe) {
2045 flags = ASYNC_TX_ACK |
2046 (prexor ? ASYNC_TX_XOR_DROP_DST : ASYNC_TX_XOR_ZERO_DST);
Dan Williams91c00922007-01-02 13:52:30 -07002047
shli@kernel.org59fc6302014-12-15 12:57:03 +11002048 atomic_inc(&head_sh->count);
2049 init_async_submit(&submit, flags, tx, ops_complete_reconstruct, head_sh,
2050 to_addr_conv(sh, percpu, j));
2051 } else {
2052 flags = prexor ? ASYNC_TX_XOR_DROP_DST : ASYNC_TX_XOR_ZERO_DST;
2053 init_async_submit(&submit, flags, tx, NULL, NULL,
2054 to_addr_conv(sh, percpu, j));
2055 }
Dan Williams91c00922007-01-02 13:52:30 -07002056
Dan Williamsa08abd82009-06-03 11:43:59 -07002057 if (unlikely(count == 1))
Yufen Yu7aba13b2020-08-20 09:22:06 -04002058 tx = async_memcpy(xor_dest, xor_srcs[0], off_dest, off_srcs[0],
Yufen Yuc911c462020-07-18 05:29:07 -04002059 RAID5_STRIPE_SIZE(sh->raid_conf), &submit);
Dan Williamsa08abd82009-06-03 11:43:59 -07002060 else
Yufen Yua7c224a2020-08-20 09:22:09 -04002061 tx = async_xor_offs(xor_dest, off_dest, xor_srcs, off_srcs, count,
Yufen Yuc911c462020-07-18 05:29:07 -04002062 RAID5_STRIPE_SIZE(sh->raid_conf), &submit);
shli@kernel.org59fc6302014-12-15 12:57:03 +11002063 if (!last_stripe) {
2064 j++;
2065 sh = list_first_entry(&sh->batch_list, struct stripe_head,
2066 batch_list);
2067 goto again;
2068 }
Dan Williams91c00922007-01-02 13:52:30 -07002069}
2070
Dan Williamsac6b53b2009-07-14 13:40:19 -07002071static void
2072ops_run_reconstruct6(struct stripe_head *sh, struct raid5_percpu *percpu,
2073 struct dma_async_tx_descriptor *tx)
2074{
2075 struct async_submit_ctl submit;
shli@kernel.org59fc6302014-12-15 12:57:03 +11002076 struct page **blocks;
Yufen Yud69454b2020-08-20 09:22:10 -04002077 unsigned int *offs;
shli@kernel.org59fc6302014-12-15 12:57:03 +11002078 int count, i, j = 0;
2079 struct stripe_head *head_sh = sh;
2080 int last_stripe;
Markus Stockhausen584acdd2014-12-15 12:57:05 +11002081 int synflags;
2082 unsigned long txflags;
Dan Williamsac6b53b2009-07-14 13:40:19 -07002083
2084 pr_debug("%s: stripe %llu\n", __func__, (unsigned long long)sh->sector);
2085
Shaohua Li620125f2012-10-11 13:49:05 +11002086 for (i = 0; i < sh->disks; i++) {
2087 if (sh->pd_idx == i || sh->qd_idx == i)
2088 continue;
2089 if (!test_bit(R5_Discard, &sh->dev[i].flags))
2090 break;
2091 }
2092 if (i >= sh->disks) {
2093 atomic_inc(&sh->count);
Shaohua Li620125f2012-10-11 13:49:05 +11002094 set_bit(R5_Discard, &sh->dev[sh->pd_idx].flags);
2095 set_bit(R5_Discard, &sh->dev[sh->qd_idx].flags);
2096 ops_complete_reconstruct(sh);
2097 return;
2098 }
2099
shli@kernel.org59fc6302014-12-15 12:57:03 +11002100again:
2101 blocks = to_addr_page(percpu, j);
Yufen Yud69454b2020-08-20 09:22:10 -04002102 offs = to_addr_offs(sh, percpu);
Markus Stockhausen584acdd2014-12-15 12:57:05 +11002103
2104 if (sh->reconstruct_state == reconstruct_state_prexor_drain_run) {
2105 synflags = SYNDROME_SRC_WRITTEN;
2106 txflags = ASYNC_TX_ACK | ASYNC_TX_PQ_XOR_DST;
2107 } else {
2108 synflags = SYNDROME_SRC_ALL;
2109 txflags = ASYNC_TX_ACK;
2110 }
2111
Yufen Yud69454b2020-08-20 09:22:10 -04002112 count = set_syndrome_sources(blocks, offs, sh, synflags);
shli@kernel.org59fc6302014-12-15 12:57:03 +11002113 last_stripe = !head_sh->batch_head ||
2114 list_first_entry(&sh->batch_list,
2115 struct stripe_head, batch_list) == head_sh;
Dan Williamsac6b53b2009-07-14 13:40:19 -07002116
shli@kernel.org59fc6302014-12-15 12:57:03 +11002117 if (last_stripe) {
2118 atomic_inc(&head_sh->count);
Markus Stockhausen584acdd2014-12-15 12:57:05 +11002119 init_async_submit(&submit, txflags, tx, ops_complete_reconstruct,
shli@kernel.org59fc6302014-12-15 12:57:03 +11002120 head_sh, to_addr_conv(sh, percpu, j));
2121 } else
2122 init_async_submit(&submit, 0, tx, NULL, NULL,
2123 to_addr_conv(sh, percpu, j));
Yufen Yud69454b2020-08-20 09:22:10 -04002124 tx = async_gen_syndrome(blocks, offs, count+2,
Yufen Yuc911c462020-07-18 05:29:07 -04002125 RAID5_STRIPE_SIZE(sh->raid_conf), &submit);
shli@kernel.org59fc6302014-12-15 12:57:03 +11002126 if (!last_stripe) {
2127 j++;
2128 sh = list_first_entry(&sh->batch_list, struct stripe_head,
2129 batch_list);
2130 goto again;
2131 }
Dan Williams91c00922007-01-02 13:52:30 -07002132}
2133
2134static void ops_complete_check(void *stripe_head_ref)
2135{
2136 struct stripe_head *sh = stripe_head_ref;
Dan Williams91c00922007-01-02 13:52:30 -07002137
Harvey Harrisone46b272b2008-04-28 02:15:50 -07002138 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07002139 (unsigned long long)sh->sector);
2140
Dan Williamsecc65c92008-06-28 08:31:57 +10002141 sh->check_state = check_state_check_result;
Dan Williams91c00922007-01-02 13:52:30 -07002142 set_bit(STRIPE_HANDLE, &sh->state);
Shaohua Li6d036f72015-08-13 14:31:57 -07002143 raid5_release_stripe(sh);
Dan Williams91c00922007-01-02 13:52:30 -07002144}
2145
Dan Williamsac6b53b2009-07-14 13:40:19 -07002146static void ops_run_check_p(struct stripe_head *sh, struct raid5_percpu *percpu)
Dan Williams91c00922007-01-02 13:52:30 -07002147{
Dan Williams91c00922007-01-02 13:52:30 -07002148 int disks = sh->disks;
Dan Williamsac6b53b2009-07-14 13:40:19 -07002149 int pd_idx = sh->pd_idx;
2150 int qd_idx = sh->qd_idx;
2151 struct page *xor_dest;
Yufen Yua7c224a2020-08-20 09:22:09 -04002152 unsigned int off_dest;
shli@kernel.org46d5b782014-12-15 12:57:02 +11002153 struct page **xor_srcs = to_addr_page(percpu, 0);
Yufen Yua7c224a2020-08-20 09:22:09 -04002154 unsigned int *off_srcs = to_addr_offs(sh, percpu);
Dan Williams91c00922007-01-02 13:52:30 -07002155 struct dma_async_tx_descriptor *tx;
Dan Williamsa08abd82009-06-03 11:43:59 -07002156 struct async_submit_ctl submit;
Dan Williamsac6b53b2009-07-14 13:40:19 -07002157 int count;
2158 int i;
Dan Williams91c00922007-01-02 13:52:30 -07002159
Harvey Harrisone46b272b2008-04-28 02:15:50 -07002160 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07002161 (unsigned long long)sh->sector);
2162
shli@kernel.org59fc6302014-12-15 12:57:03 +11002163 BUG_ON(sh->batch_head);
Dan Williamsac6b53b2009-07-14 13:40:19 -07002164 count = 0;
2165 xor_dest = sh->dev[pd_idx].page;
Yufen Yua7c224a2020-08-20 09:22:09 -04002166 off_dest = sh->dev[pd_idx].offset;
2167 off_srcs[count] = off_dest;
Dan Williamsac6b53b2009-07-14 13:40:19 -07002168 xor_srcs[count++] = xor_dest;
Dan Williams91c00922007-01-02 13:52:30 -07002169 for (i = disks; i--; ) {
Dan Williamsac6b53b2009-07-14 13:40:19 -07002170 if (i == pd_idx || i == qd_idx)
2171 continue;
Yufen Yua7c224a2020-08-20 09:22:09 -04002172 off_srcs[count] = sh->dev[i].offset;
Dan Williamsac6b53b2009-07-14 13:40:19 -07002173 xor_srcs[count++] = sh->dev[i].page;
Dan Williams91c00922007-01-02 13:52:30 -07002174 }
2175
Dan Williamsd6f38f32009-07-14 11:50:52 -07002176 init_async_submit(&submit, 0, NULL, NULL, NULL,
shli@kernel.org46d5b782014-12-15 12:57:02 +11002177 to_addr_conv(sh, percpu, 0));
Yufen Yua7c224a2020-08-20 09:22:09 -04002178 tx = async_xor_val_offs(xor_dest, off_dest, xor_srcs, off_srcs, count,
Yufen Yuc911c462020-07-18 05:29:07 -04002179 RAID5_STRIPE_SIZE(sh->raid_conf),
Dan Williamsa08abd82009-06-03 11:43:59 -07002180 &sh->ops.zero_sum_result, &submit);
Dan Williams91c00922007-01-02 13:52:30 -07002181
Dan Williams91c00922007-01-02 13:52:30 -07002182 atomic_inc(&sh->count);
Dan Williamsa08abd82009-06-03 11:43:59 -07002183 init_async_submit(&submit, ASYNC_TX_ACK, tx, ops_complete_check, sh, NULL);
2184 tx = async_trigger_callback(&submit);
Dan Williams91c00922007-01-02 13:52:30 -07002185}
2186
Dan Williamsac6b53b2009-07-14 13:40:19 -07002187static void ops_run_check_pq(struct stripe_head *sh, struct raid5_percpu *percpu, int checkp)
2188{
shli@kernel.org46d5b782014-12-15 12:57:02 +11002189 struct page **srcs = to_addr_page(percpu, 0);
Yufen Yud69454b2020-08-20 09:22:10 -04002190 unsigned int *offs = to_addr_offs(sh, percpu);
Dan Williamsac6b53b2009-07-14 13:40:19 -07002191 struct async_submit_ctl submit;
2192 int count;
2193
2194 pr_debug("%s: stripe %llu checkp: %d\n", __func__,
2195 (unsigned long long)sh->sector, checkp);
2196
shli@kernel.org59fc6302014-12-15 12:57:03 +11002197 BUG_ON(sh->batch_head);
Yufen Yud69454b2020-08-20 09:22:10 -04002198 count = set_syndrome_sources(srcs, offs, sh, SYNDROME_SRC_ALL);
Dan Williamsac6b53b2009-07-14 13:40:19 -07002199 if (!checkp)
2200 srcs[count] = NULL;
2201
2202 atomic_inc(&sh->count);
2203 init_async_submit(&submit, ASYNC_TX_ACK, NULL, ops_complete_check,
shli@kernel.org46d5b782014-12-15 12:57:02 +11002204 sh, to_addr_conv(sh, percpu, 0));
Yufen Yud69454b2020-08-20 09:22:10 -04002205 async_syndrome_val(srcs, offs, count+2,
Yufen Yuc911c462020-07-18 05:29:07 -04002206 RAID5_STRIPE_SIZE(sh->raid_conf),
Yufen Yud69454b2020-08-20 09:22:10 -04002207 &sh->ops.zero_sum_result, percpu->spare_page, 0, &submit);
Dan Williamsac6b53b2009-07-14 13:40:19 -07002208}
2209
NeilBrown51acbce2013-02-28 09:08:34 +11002210static void raid_run_ops(struct stripe_head *sh, unsigned long ops_request)
Dan Williams91c00922007-01-02 13:52:30 -07002211{
2212 int overlap_clear = 0, i, disks = sh->disks;
2213 struct dma_async_tx_descriptor *tx = NULL;
NeilBrownd1688a62011-10-11 16:49:52 +11002214 struct r5conf *conf = sh->raid_conf;
Dan Williamsac6b53b2009-07-14 13:40:19 -07002215 int level = conf->level;
Dan Williamsd6f38f32009-07-14 11:50:52 -07002216 struct raid5_percpu *percpu;
2217 unsigned long cpu;
Dan Williams91c00922007-01-02 13:52:30 -07002218
Dan Williamsd6f38f32009-07-14 11:50:52 -07002219 cpu = get_cpu();
2220 percpu = per_cpu_ptr(conf->percpu, cpu);
Dan Williams83de75c2008-06-28 08:31:58 +10002221 if (test_bit(STRIPE_OP_BIOFILL, &ops_request)) {
Dan Williams91c00922007-01-02 13:52:30 -07002222 ops_run_biofill(sh);
2223 overlap_clear++;
2224 }
2225
Dan Williams7b3a8712008-06-28 08:32:09 +10002226 if (test_bit(STRIPE_OP_COMPUTE_BLK, &ops_request)) {
Dan Williamsac6b53b2009-07-14 13:40:19 -07002227 if (level < 6)
2228 tx = ops_run_compute5(sh, percpu);
2229 else {
2230 if (sh->ops.target2 < 0 || sh->ops.target < 0)
2231 tx = ops_run_compute6_1(sh, percpu);
2232 else
2233 tx = ops_run_compute6_2(sh, percpu);
2234 }
2235 /* terminate the chain if reconstruct is not set to be run */
2236 if (tx && !test_bit(STRIPE_OP_RECONSTRUCT, &ops_request))
Dan Williams7b3a8712008-06-28 08:32:09 +10002237 async_tx_ack(tx);
2238 }
Dan Williams91c00922007-01-02 13:52:30 -07002239
Markus Stockhausen584acdd2014-12-15 12:57:05 +11002240 if (test_bit(STRIPE_OP_PREXOR, &ops_request)) {
2241 if (level < 6)
2242 tx = ops_run_prexor5(sh, percpu, tx);
2243 else
2244 tx = ops_run_prexor6(sh, percpu, tx);
2245 }
Dan Williams91c00922007-01-02 13:52:30 -07002246
Artur Paszkiewiczae1713e2017-04-04 13:13:58 +02002247 if (test_bit(STRIPE_OP_PARTIAL_PARITY, &ops_request))
2248 tx = ops_run_partial_parity(sh, percpu, tx);
2249
Dan Williams600aa102008-06-28 08:32:05 +10002250 if (test_bit(STRIPE_OP_BIODRAIN, &ops_request)) {
Dan Williamsd8ee0722008-06-28 08:32:06 +10002251 tx = ops_run_biodrain(sh, tx);
Dan Williams91c00922007-01-02 13:52:30 -07002252 overlap_clear++;
2253 }
2254
Dan Williamsac6b53b2009-07-14 13:40:19 -07002255 if (test_bit(STRIPE_OP_RECONSTRUCT, &ops_request)) {
2256 if (level < 6)
2257 ops_run_reconstruct5(sh, percpu, tx);
2258 else
2259 ops_run_reconstruct6(sh, percpu, tx);
2260 }
Dan Williams91c00922007-01-02 13:52:30 -07002261
Dan Williamsac6b53b2009-07-14 13:40:19 -07002262 if (test_bit(STRIPE_OP_CHECK, &ops_request)) {
2263 if (sh->check_state == check_state_run)
2264 ops_run_check_p(sh, percpu);
2265 else if (sh->check_state == check_state_run_q)
2266 ops_run_check_pq(sh, percpu, 0);
2267 else if (sh->check_state == check_state_run_pq)
2268 ops_run_check_pq(sh, percpu, 1);
2269 else
2270 BUG();
2271 }
Dan Williams91c00922007-01-02 13:52:30 -07002272
shli@kernel.org59fc6302014-12-15 12:57:03 +11002273 if (overlap_clear && !sh->batch_head)
Dan Williams91c00922007-01-02 13:52:30 -07002274 for (i = disks; i--; ) {
2275 struct r5dev *dev = &sh->dev[i];
2276 if (test_and_clear_bit(R5_Overlap, &dev->flags))
2277 wake_up(&sh->raid_conf->wait_for_overlap);
2278 }
Dan Williamsd6f38f32009-07-14 11:50:52 -07002279 put_cpu();
Dan Williams91c00922007-01-02 13:52:30 -07002280}
2281
Artur Paszkiewicz845b9e22017-04-04 13:13:57 +02002282static void free_stripe(struct kmem_cache *sc, struct stripe_head *sh)
2283{
Yufen Yu046169f2020-08-20 09:22:12 -04002284#if PAGE_SIZE != DEFAULT_STRIPE_SIZE
2285 kfree(sh->pages);
2286#endif
Artur Paszkiewicz845b9e22017-04-04 13:13:57 +02002287 if (sh->ppl_page)
2288 __free_page(sh->ppl_page);
2289 kmem_cache_free(sc, sh);
2290}
2291
Shaohua Li5f9d1fd2016-08-22 21:14:01 -07002292static struct stripe_head *alloc_stripe(struct kmem_cache *sc, gfp_t gfp,
Artur Paszkiewicz845b9e22017-04-04 13:13:57 +02002293 int disks, struct r5conf *conf)
NeilBrownf18c1a32015-05-08 18:19:04 +10002294{
2295 struct stripe_head *sh;
Shaohua Li5f9d1fd2016-08-22 21:14:01 -07002296 int i;
NeilBrownf18c1a32015-05-08 18:19:04 +10002297
2298 sh = kmem_cache_zalloc(sc, gfp);
2299 if (sh) {
2300 spin_lock_init(&sh->stripe_lock);
2301 spin_lock_init(&sh->batch_lock);
2302 INIT_LIST_HEAD(&sh->batch_list);
2303 INIT_LIST_HEAD(&sh->lru);
Song Liua39f7af2016-11-17 15:24:40 -08002304 INIT_LIST_HEAD(&sh->r5c);
Song Liud7bd3982016-11-23 22:50:39 -08002305 INIT_LIST_HEAD(&sh->log_list);
NeilBrownf18c1a32015-05-08 18:19:04 +10002306 atomic_set(&sh->count, 1);
Artur Paszkiewicz845b9e22017-04-04 13:13:57 +02002307 sh->raid_conf = conf;
Song Liua39f7af2016-11-17 15:24:40 -08002308 sh->log_start = MaxSector;
Shaohua Li5f9d1fd2016-08-22 21:14:01 -07002309 for (i = 0; i < disks; i++) {
2310 struct r5dev *dev = &sh->dev[i];
2311
Ming Lei3a83f462016-11-22 08:57:21 -07002312 bio_init(&dev->req, &dev->vec, 1);
2313 bio_init(&dev->rreq, &dev->rvec, 1);
Shaohua Li5f9d1fd2016-08-22 21:14:01 -07002314 }
Artur Paszkiewicz845b9e22017-04-04 13:13:57 +02002315
2316 if (raid5_has_ppl(conf)) {
2317 sh->ppl_page = alloc_page(gfp);
2318 if (!sh->ppl_page) {
2319 free_stripe(sc, sh);
Yufen Yu046169f2020-08-20 09:22:12 -04002320 return NULL;
Artur Paszkiewicz845b9e22017-04-04 13:13:57 +02002321 }
2322 }
Yufen Yu046169f2020-08-20 09:22:12 -04002323#if PAGE_SIZE != DEFAULT_STRIPE_SIZE
2324 if (init_stripe_shared_pages(sh, conf, disks)) {
2325 free_stripe(sc, sh);
2326 return NULL;
2327 }
2328#endif
NeilBrownf18c1a32015-05-08 18:19:04 +10002329 }
2330 return sh;
2331}
NeilBrown486f0642015-02-25 12:10:35 +11002332static int grow_one_stripe(struct r5conf *conf, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333{
2334 struct stripe_head *sh;
NeilBrownf18c1a32015-05-08 18:19:04 +10002335
Artur Paszkiewicz845b9e22017-04-04 13:13:57 +02002336 sh = alloc_stripe(conf->slab_cache, gfp, conf->pool_size, conf);
NeilBrown3f294f42005-11-08 21:39:25 -08002337 if (!sh)
2338 return 0;
Namhyung Kim6ce32842011-07-18 17:38:50 +10002339
NeilBrowna9683a72015-02-25 12:02:51 +11002340 if (grow_buffers(sh, gfp)) {
NeilBrowne4e11e32010-06-16 16:45:16 +10002341 shrink_buffers(sh);
Artur Paszkiewicz845b9e22017-04-04 13:13:57 +02002342 free_stripe(conf->slab_cache, sh);
NeilBrown3f294f42005-11-08 21:39:25 -08002343 return 0;
2344 }
NeilBrown486f0642015-02-25 12:10:35 +11002345 sh->hash_lock_index =
2346 conf->max_nr_stripes % NR_STRIPE_HASH_LOCKS;
NeilBrown3f294f42005-11-08 21:39:25 -08002347 /* we just created an active stripe so... */
NeilBrown3f294f42005-11-08 21:39:25 -08002348 atomic_inc(&conf->active_stripes);
shli@kernel.org59fc6302014-12-15 12:57:03 +11002349
Shaohua Li6d036f72015-08-13 14:31:57 -07002350 raid5_release_stripe(sh);
NeilBrown486f0642015-02-25 12:10:35 +11002351 conf->max_nr_stripes++;
NeilBrown3f294f42005-11-08 21:39:25 -08002352 return 1;
2353}
2354
NeilBrownd1688a62011-10-11 16:49:52 +11002355static int grow_stripes(struct r5conf *conf, int num)
NeilBrown3f294f42005-11-08 21:39:25 -08002356{
Christoph Lametere18b8902006-12-06 20:33:20 -08002357 struct kmem_cache *sc;
Arnd Bergmann53b8d892018-02-20 14:09:11 +01002358 size_t namelen = sizeof(conf->cache_name[0]);
NeilBrown5e5e3e72009-10-16 16:35:30 +11002359 int devs = max(conf->raid_disks, conf->previous_raid_disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360
NeilBrownf4be6b42010-06-01 19:37:25 +10002361 if (conf->mddev->gendisk)
Arnd Bergmann53b8d892018-02-20 14:09:11 +01002362 snprintf(conf->cache_name[0], namelen,
NeilBrownf4be6b42010-06-01 19:37:25 +10002363 "raid%d-%s", conf->level, mdname(conf->mddev));
2364 else
Arnd Bergmann53b8d892018-02-20 14:09:11 +01002365 snprintf(conf->cache_name[0], namelen,
NeilBrownf4be6b42010-06-01 19:37:25 +10002366 "raid%d-%p", conf->level, conf->mddev);
Arnd Bergmann53b8d892018-02-20 14:09:11 +01002367 snprintf(conf->cache_name[1], namelen, "%.27s-alt", conf->cache_name[0]);
NeilBrownf4be6b42010-06-01 19:37:25 +10002368
NeilBrownad01c9e2006-03-27 01:18:07 -08002369 conf->active_name = 0;
2370 sc = kmem_cache_create(conf->cache_name[conf->active_name],
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371 sizeof(struct stripe_head)+(devs-1)*sizeof(struct r5dev),
Paul Mundt20c2df82007-07-20 10:11:58 +09002372 0, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373 if (!sc)
2374 return 1;
2375 conf->slab_cache = sc;
NeilBrownad01c9e2006-03-27 01:18:07 -08002376 conf->pool_size = devs;
NeilBrown486f0642015-02-25 12:10:35 +11002377 while (num--)
2378 if (!grow_one_stripe(conf, GFP_KERNEL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379 return 1;
NeilBrown486f0642015-02-25 12:10:35 +11002380
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381 return 0;
2382}
NeilBrown29269552006-03-27 01:18:10 -08002383
Dan Williamsd6f38f32009-07-14 11:50:52 -07002384/**
Coly Li7f8a30e2020-04-09 22:17:22 +08002385 * scribble_alloc - allocate percpu scribble buffer for required size
2386 * of the scribble region
Damien Le Moal2aada5b2020-07-16 13:54:42 +09002387 * @percpu: from for_each_present_cpu() of the caller
2388 * @num: total number of disks in the array
2389 * @cnt: scribble objs count for required size of the scribble region
Dan Williamsd6f38f32009-07-14 11:50:52 -07002390 *
Coly Li7f8a30e2020-04-09 22:17:22 +08002391 * The scribble buffer size must be enough to contain:
Dan Williamsd6f38f32009-07-14 11:50:52 -07002392 * 1/ a struct page pointer for each device in the array +2
2393 * 2/ room to convert each entry in (1) to its corresponding dma
2394 * (dma_map_page()) or page (page_address()) address.
2395 *
2396 * Note: the +2 is for the destination buffers of the ddf/raid6 case where we
2397 * calculate over all devices (not just the data blocks), using zeros in place
2398 * of the P and Q blocks.
2399 */
Kent Overstreetb330e6a2019-03-11 23:31:06 -07002400static int scribble_alloc(struct raid5_percpu *percpu,
Coly Liba54d4d2020-04-09 22:17:21 +08002401 int num, int cnt)
Dan Williamsd6f38f32009-07-14 11:50:52 -07002402{
Kent Overstreetb330e6a2019-03-11 23:31:06 -07002403 size_t obj_size =
Yufen Yu7aba13b2020-08-20 09:22:06 -04002404 sizeof(struct page *) * (num + 2) +
2405 sizeof(addr_conv_t) * (num + 2) +
2406 sizeof(unsigned int) * (num + 2);
Kent Overstreetb330e6a2019-03-11 23:31:06 -07002407 void *scribble;
Dan Williamsd6f38f32009-07-14 11:50:52 -07002408
Coly Liba54d4d2020-04-09 22:17:21 +08002409 /*
2410 * If here is in raid array suspend context, it is in memalloc noio
2411 * context as well, there is no potential recursive memory reclaim
2412 * I/Os with the GFP_KERNEL flag.
2413 */
2414 scribble = kvmalloc_array(cnt, obj_size, GFP_KERNEL);
Kent Overstreetb330e6a2019-03-11 23:31:06 -07002415 if (!scribble)
2416 return -ENOMEM;
2417
2418 kvfree(percpu->scribble);
2419
2420 percpu->scribble = scribble;
2421 percpu->scribble_obj_size = obj_size;
2422 return 0;
Dan Williamsd6f38f32009-07-14 11:50:52 -07002423}
2424
NeilBrown738a2732015-05-08 18:19:39 +10002425static int resize_chunks(struct r5conf *conf, int new_disks, int new_sectors)
2426{
2427 unsigned long cpu;
2428 int err = 0;
2429
Shaohua Li27a353c2016-02-24 17:38:28 -08002430 /*
2431 * Never shrink. And mddev_suspend() could deadlock if this is called
2432 * from raid5d. In that case, scribble_disks and scribble_sectors
2433 * should equal to new_disks and new_sectors
2434 */
2435 if (conf->scribble_disks >= new_disks &&
2436 conf->scribble_sectors >= new_sectors)
2437 return 0;
NeilBrown738a2732015-05-08 18:19:39 +10002438 mddev_suspend(conf->mddev);
2439 get_online_cpus();
Kent Overstreetb330e6a2019-03-11 23:31:06 -07002440
NeilBrown738a2732015-05-08 18:19:39 +10002441 for_each_present_cpu(cpu) {
2442 struct raid5_percpu *percpu;
NeilBrown738a2732015-05-08 18:19:39 +10002443
2444 percpu = per_cpu_ptr(conf->percpu, cpu);
Kent Overstreetb330e6a2019-03-11 23:31:06 -07002445 err = scribble_alloc(percpu, new_disks,
Yufen Yuc911c462020-07-18 05:29:07 -04002446 new_sectors / RAID5_STRIPE_SECTORS(conf));
Kent Overstreetb330e6a2019-03-11 23:31:06 -07002447 if (err)
NeilBrown738a2732015-05-08 18:19:39 +10002448 break;
NeilBrown738a2732015-05-08 18:19:39 +10002449 }
Kent Overstreetb330e6a2019-03-11 23:31:06 -07002450
NeilBrown738a2732015-05-08 18:19:39 +10002451 put_online_cpus();
2452 mddev_resume(conf->mddev);
Shaohua Li27a353c2016-02-24 17:38:28 -08002453 if (!err) {
2454 conf->scribble_disks = new_disks;
2455 conf->scribble_sectors = new_sectors;
2456 }
NeilBrown738a2732015-05-08 18:19:39 +10002457 return err;
2458}
2459
NeilBrownd1688a62011-10-11 16:49:52 +11002460static int resize_stripes(struct r5conf *conf, int newsize)
NeilBrownad01c9e2006-03-27 01:18:07 -08002461{
2462 /* Make all the stripes able to hold 'newsize' devices.
2463 * New slots in each stripe get 'page' set to a new page.
2464 *
2465 * This happens in stages:
2466 * 1/ create a new kmem_cache and allocate the required number of
2467 * stripe_heads.
Masanari Iida83f0d772012-10-30 00:18:08 +09002468 * 2/ gather all the old stripe_heads and transfer the pages across
NeilBrownad01c9e2006-03-27 01:18:07 -08002469 * to the new stripe_heads. This will have the side effect of
2470 * freezing the array as once all stripe_heads have been collected,
2471 * no IO will be possible. Old stripe heads are freed once their
2472 * pages have been transferred over, and the old kmem_cache is
2473 * freed when all stripes are done.
2474 * 3/ reallocate conf->disks to be suitable bigger. If this fails,
Zhilong Liu3560741e2017-03-15 16:14:53 +08002475 * we simple return a failure status - no need to clean anything up.
NeilBrownad01c9e2006-03-27 01:18:07 -08002476 * 4/ allocate new pages for the new slots in the new stripe_heads.
2477 * If this fails, we don't bother trying the shrink the
2478 * stripe_heads down again, we just leave them as they are.
2479 * As each stripe_head is processed the new one is released into
2480 * active service.
2481 *
2482 * Once step2 is started, we cannot afford to wait for a write,
2483 * so we use GFP_NOIO allocations.
2484 */
2485 struct stripe_head *osh, *nsh;
2486 LIST_HEAD(newstripes);
2487 struct disk_info *ndisks;
Artur Paszkiewicz2214c262017-05-08 11:56:55 +02002488 int err = 0;
Christoph Lametere18b8902006-12-06 20:33:20 -08002489 struct kmem_cache *sc;
NeilBrownad01c9e2006-03-27 01:18:07 -08002490 int i;
Shaohua Li566c09c2013-11-14 15:16:17 +11002491 int hash, cnt;
NeilBrownad01c9e2006-03-27 01:18:07 -08002492
Artur Paszkiewicz2214c262017-05-08 11:56:55 +02002493 md_allow_write(conf->mddev);
NeilBrown2a2275d2007-01-26 00:57:11 -08002494
NeilBrownad01c9e2006-03-27 01:18:07 -08002495 /* Step 1 */
2496 sc = kmem_cache_create(conf->cache_name[1-conf->active_name],
2497 sizeof(struct stripe_head)+(newsize-1)*sizeof(struct r5dev),
Paul Mundt20c2df82007-07-20 10:11:58 +09002498 0, 0, NULL);
NeilBrownad01c9e2006-03-27 01:18:07 -08002499 if (!sc)
2500 return -ENOMEM;
2501
NeilBrown2d5b5692015-07-06 12:49:23 +10002502 /* Need to ensure auto-resizing doesn't interfere */
2503 mutex_lock(&conf->cache_size_mutex);
2504
NeilBrownad01c9e2006-03-27 01:18:07 -08002505 for (i = conf->max_nr_stripes; i; i--) {
Artur Paszkiewicz845b9e22017-04-04 13:13:57 +02002506 nsh = alloc_stripe(sc, GFP_KERNEL, newsize, conf);
NeilBrownad01c9e2006-03-27 01:18:07 -08002507 if (!nsh)
2508 break;
2509
NeilBrownad01c9e2006-03-27 01:18:07 -08002510 list_add(&nsh->lru, &newstripes);
2511 }
2512 if (i) {
2513 /* didn't get enough, give up */
2514 while (!list_empty(&newstripes)) {
2515 nsh = list_entry(newstripes.next, struct stripe_head, lru);
2516 list_del(&nsh->lru);
Artur Paszkiewicz845b9e22017-04-04 13:13:57 +02002517 free_stripe(sc, nsh);
NeilBrownad01c9e2006-03-27 01:18:07 -08002518 }
2519 kmem_cache_destroy(sc);
NeilBrown2d5b5692015-07-06 12:49:23 +10002520 mutex_unlock(&conf->cache_size_mutex);
NeilBrownad01c9e2006-03-27 01:18:07 -08002521 return -ENOMEM;
2522 }
2523 /* Step 2 - Must use GFP_NOIO now.
2524 * OK, we have enough stripes, start collecting inactive
2525 * stripes and copying them over
2526 */
Shaohua Li566c09c2013-11-14 15:16:17 +11002527 hash = 0;
2528 cnt = 0;
NeilBrownad01c9e2006-03-27 01:18:07 -08002529 list_for_each_entry(nsh, &newstripes, lru) {
Shaohua Li566c09c2013-11-14 15:16:17 +11002530 lock_device_hash_lock(conf, hash);
Shaohua Li6ab2a4b2016-02-25 16:24:42 -08002531 wait_event_cmd(conf->wait_for_stripe,
Shaohua Li566c09c2013-11-14 15:16:17 +11002532 !list_empty(conf->inactive_list + hash),
2533 unlock_device_hash_lock(conf, hash),
2534 lock_device_hash_lock(conf, hash));
2535 osh = get_free_stripe(conf, hash);
2536 unlock_device_hash_lock(conf, hash);
NeilBrownf18c1a32015-05-08 18:19:04 +10002537
Shaohua Lid592a992014-05-21 17:57:44 +08002538 for(i=0; i<conf->pool_size; i++) {
NeilBrownad01c9e2006-03-27 01:18:07 -08002539 nsh->dev[i].page = osh->dev[i].page;
Shaohua Lid592a992014-05-21 17:57:44 +08002540 nsh->dev[i].orig_page = osh->dev[i].page;
Yufen Yu7aba13b2020-08-20 09:22:06 -04002541 nsh->dev[i].offset = osh->dev[i].offset;
Shaohua Lid592a992014-05-21 17:57:44 +08002542 }
Shaohua Li566c09c2013-11-14 15:16:17 +11002543 nsh->hash_lock_index = hash;
Artur Paszkiewicz845b9e22017-04-04 13:13:57 +02002544 free_stripe(conf->slab_cache, osh);
Shaohua Li566c09c2013-11-14 15:16:17 +11002545 cnt++;
2546 if (cnt >= conf->max_nr_stripes / NR_STRIPE_HASH_LOCKS +
2547 !!((conf->max_nr_stripes % NR_STRIPE_HASH_LOCKS) > hash)) {
2548 hash++;
2549 cnt = 0;
2550 }
NeilBrownad01c9e2006-03-27 01:18:07 -08002551 }
2552 kmem_cache_destroy(conf->slab_cache);
2553
2554 /* Step 3.
2555 * At this point, we are holding all the stripes so the array
2556 * is completely stalled, so now is a good time to resize
Dan Williamsd6f38f32009-07-14 11:50:52 -07002557 * conf->disks and the scribble region
NeilBrownad01c9e2006-03-27 01:18:07 -08002558 */
Kees Cook6396bb22018-06-12 14:03:40 -07002559 ndisks = kcalloc(newsize, sizeof(struct disk_info), GFP_NOIO);
NeilBrownad01c9e2006-03-27 01:18:07 -08002560 if (ndisks) {
Song Liud7bd3982016-11-23 22:50:39 -08002561 for (i = 0; i < conf->pool_size; i++)
NeilBrownad01c9e2006-03-27 01:18:07 -08002562 ndisks[i] = conf->disks[i];
Song Liud7bd3982016-11-23 22:50:39 -08002563
2564 for (i = conf->pool_size; i < newsize; i++) {
2565 ndisks[i].extra_page = alloc_page(GFP_NOIO);
2566 if (!ndisks[i].extra_page)
2567 err = -ENOMEM;
2568 }
2569
2570 if (err) {
2571 for (i = conf->pool_size; i < newsize; i++)
2572 if (ndisks[i].extra_page)
2573 put_page(ndisks[i].extra_page);
2574 kfree(ndisks);
2575 } else {
2576 kfree(conf->disks);
2577 conf->disks = ndisks;
2578 }
NeilBrownad01c9e2006-03-27 01:18:07 -08002579 } else
2580 err = -ENOMEM;
2581
NeilBrown2d5b5692015-07-06 12:49:23 +10002582 mutex_unlock(&conf->cache_size_mutex);
Dennis Yang583da482017-03-29 15:46:13 +08002583
2584 conf->slab_cache = sc;
2585 conf->active_name = 1-conf->active_name;
2586
NeilBrownad01c9e2006-03-27 01:18:07 -08002587 /* Step 4, return new stripes to service */
2588 while(!list_empty(&newstripes)) {
2589 nsh = list_entry(newstripes.next, struct stripe_head, lru);
2590 list_del_init(&nsh->lru);
Dan Williamsd6f38f32009-07-14 11:50:52 -07002591
NeilBrownad01c9e2006-03-27 01:18:07 -08002592 for (i=conf->raid_disks; i < newsize; i++)
2593 if (nsh->dev[i].page == NULL) {
2594 struct page *p = alloc_page(GFP_NOIO);
2595 nsh->dev[i].page = p;
Shaohua Lid592a992014-05-21 17:57:44 +08002596 nsh->dev[i].orig_page = p;
Yufen Yu7aba13b2020-08-20 09:22:06 -04002597 nsh->dev[i].offset = 0;
NeilBrownad01c9e2006-03-27 01:18:07 -08002598 if (!p)
2599 err = -ENOMEM;
2600 }
Shaohua Li6d036f72015-08-13 14:31:57 -07002601 raid5_release_stripe(nsh);
NeilBrownad01c9e2006-03-27 01:18:07 -08002602 }
2603 /* critical section pass, GFP_NOIO no longer needed */
2604
NeilBrown6e9eac22015-05-08 18:19:34 +10002605 if (!err)
2606 conf->pool_size = newsize;
NeilBrownad01c9e2006-03-27 01:18:07 -08002607 return err;
2608}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609
NeilBrown486f0642015-02-25 12:10:35 +11002610static int drop_one_stripe(struct r5conf *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611{
2612 struct stripe_head *sh;
NeilBrown49895bc2015-08-03 17:09:57 +10002613 int hash = (conf->max_nr_stripes - 1) & STRIPE_HASH_LOCKS_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614
Shaohua Li566c09c2013-11-14 15:16:17 +11002615 spin_lock_irq(conf->hash_locks + hash);
2616 sh = get_free_stripe(conf, hash);
2617 spin_unlock_irq(conf->hash_locks + hash);
NeilBrown3f294f42005-11-08 21:39:25 -08002618 if (!sh)
2619 return 0;
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +02002620 BUG_ON(atomic_read(&sh->count));
NeilBrowne4e11e32010-06-16 16:45:16 +10002621 shrink_buffers(sh);
Artur Paszkiewicz845b9e22017-04-04 13:13:57 +02002622 free_stripe(conf->slab_cache, sh);
NeilBrown3f294f42005-11-08 21:39:25 -08002623 atomic_dec(&conf->active_stripes);
NeilBrown486f0642015-02-25 12:10:35 +11002624 conf->max_nr_stripes--;
NeilBrown3f294f42005-11-08 21:39:25 -08002625 return 1;
2626}
2627
NeilBrownd1688a62011-10-11 16:49:52 +11002628static void shrink_stripes(struct r5conf *conf)
NeilBrown3f294f42005-11-08 21:39:25 -08002629{
NeilBrown486f0642015-02-25 12:10:35 +11002630 while (conf->max_nr_stripes &&
2631 drop_one_stripe(conf))
2632 ;
NeilBrown3f294f42005-11-08 21:39:25 -08002633
Julia Lawall644df1a2015-09-13 14:15:10 +02002634 kmem_cache_destroy(conf->slab_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635 conf->slab_cache = NULL;
2636}
2637
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002638static void raid5_end_read_request(struct bio * bi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639{
NeilBrown99c0fb52009-03-31 14:39:38 +11002640 struct stripe_head *sh = bi->bi_private;
NeilBrownd1688a62011-10-11 16:49:52 +11002641 struct r5conf *conf = sh->raid_conf;
NeilBrown7ecaa1e2006-03-27 01:18:08 -08002642 int disks = sh->disks, i;
NeilBrownd6950432006-07-10 04:44:20 -07002643 char b[BDEVNAME_SIZE];
NeilBrowndd054fc2011-12-23 10:17:53 +11002644 struct md_rdev *rdev = NULL;
NeilBrown05616be2012-05-21 09:27:00 +10002645 sector_t s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646
2647 for (i=0 ; i<disks; i++)
2648 if (bi == &sh->dev[i].req)
2649 break;
2650
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002651 pr_debug("end_read_request %llu/%d, count: %d, error %d.\n",
Dan Williams45b42332007-07-09 11:56:43 -07002652 (unsigned long long)sh->sector, i, atomic_read(&sh->count),
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002653 bi->bi_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654 if (i == disks) {
Shaohua Li5f9d1fd2016-08-22 21:14:01 -07002655 bio_reset(bi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656 BUG();
NeilBrown6712ecf2007-09-27 12:47:43 +02002657 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658 }
NeilBrown14a75d32011-12-23 10:17:52 +11002659 if (test_bit(R5_ReadRepl, &sh->dev[i].flags))
NeilBrowndd054fc2011-12-23 10:17:53 +11002660 /* If replacement finished while this request was outstanding,
2661 * 'replacement' might be NULL already.
2662 * In that case it moved down to 'rdev'.
2663 * rdev is not removed until all requests are finished.
2664 */
NeilBrown14a75d32011-12-23 10:17:52 +11002665 rdev = conf->disks[i].replacement;
NeilBrowndd054fc2011-12-23 10:17:53 +11002666 if (!rdev)
NeilBrown14a75d32011-12-23 10:17:52 +11002667 rdev = conf->disks[i].rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668
NeilBrown05616be2012-05-21 09:27:00 +10002669 if (use_new_offset(conf, sh))
2670 s = sh->sector + rdev->new_data_offset;
2671 else
2672 s = sh->sector + rdev->data_offset;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002673 if (!bi->bi_status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674 set_bit(R5_UPTODATE, &sh->dev[i].flags);
NeilBrown4e5314b2005-11-08 21:39:22 -08002675 if (test_bit(R5_ReadError, &sh->dev[i].flags)) {
NeilBrown14a75d32011-12-23 10:17:52 +11002676 /* Note that this cannot happen on a
2677 * replacement device. We just fail those on
2678 * any error
2679 */
NeilBrowncc6167b2016-11-02 14:16:50 +11002680 pr_info_ratelimited(
2681 "md/raid:%s: read error corrected (%lu sectors at %llu on %s)\n",
Yufen Yuc911c462020-07-18 05:29:07 -04002682 mdname(conf->mddev), RAID5_STRIPE_SECTORS(conf),
NeilBrown05616be2012-05-21 09:27:00 +10002683 (unsigned long long)s,
Christian Dietrich8bda4702011-07-27 11:00:36 +10002684 bdevname(rdev->bdev, b));
Yufen Yuc911c462020-07-18 05:29:07 -04002685 atomic_add(RAID5_STRIPE_SECTORS(conf), &rdev->corrected_errors);
NeilBrown4e5314b2005-11-08 21:39:22 -08002686 clear_bit(R5_ReadError, &sh->dev[i].flags);
2687 clear_bit(R5_ReWrite, &sh->dev[i].flags);
majianpeng3f9e7c12012-07-31 10:04:21 +10002688 } else if (test_bit(R5_ReadNoMerge, &sh->dev[i].flags))
2689 clear_bit(R5_ReadNoMerge, &sh->dev[i].flags);
2690
Song Liu86aa1392017-01-12 17:22:41 -08002691 if (test_bit(R5_InJournal, &sh->dev[i].flags))
2692 /*
2693 * end read for a page in journal, this
2694 * must be preparing for prexor in rmw
2695 */
2696 set_bit(R5_OrigPageUPTDODATE, &sh->dev[i].flags);
2697
NeilBrown14a75d32011-12-23 10:17:52 +11002698 if (atomic_read(&rdev->read_errors))
2699 atomic_set(&rdev->read_errors, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700 } else {
NeilBrown14a75d32011-12-23 10:17:52 +11002701 const char *bdn = bdevname(rdev->bdev, b);
NeilBrownba22dcb2005-11-08 21:39:31 -08002702 int retry = 0;
majianpeng2e8ac3032012-07-03 15:57:02 +10002703 int set_bad = 0;
NeilBrownd6950432006-07-10 04:44:20 -07002704
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705 clear_bit(R5_UPTODATE, &sh->dev[i].flags);
Nigel Croxonb76b4712019-09-06 09:21:33 -04002706 if (!(bi->bi_status == BLK_STS_PROTECTION))
2707 atomic_inc(&rdev->read_errors);
NeilBrown14a75d32011-12-23 10:17:52 +11002708 if (test_bit(R5_ReadRepl, &sh->dev[i].flags))
NeilBrowncc6167b2016-11-02 14:16:50 +11002709 pr_warn_ratelimited(
2710 "md/raid:%s: read error on replacement device (sector %llu on %s).\n",
NeilBrown14a75d32011-12-23 10:17:52 +11002711 mdname(conf->mddev),
NeilBrown05616be2012-05-21 09:27:00 +10002712 (unsigned long long)s,
NeilBrown14a75d32011-12-23 10:17:52 +11002713 bdn);
majianpeng2e8ac3032012-07-03 15:57:02 +10002714 else if (conf->mddev->degraded >= conf->max_degraded) {
2715 set_bad = 1;
NeilBrowncc6167b2016-11-02 14:16:50 +11002716 pr_warn_ratelimited(
2717 "md/raid:%s: read error not correctable (sector %llu on %s).\n",
Christian Dietrich8bda4702011-07-27 11:00:36 +10002718 mdname(conf->mddev),
NeilBrown05616be2012-05-21 09:27:00 +10002719 (unsigned long long)s,
Christian Dietrich8bda4702011-07-27 11:00:36 +10002720 bdn);
majianpeng2e8ac3032012-07-03 15:57:02 +10002721 } else if (test_bit(R5_ReWrite, &sh->dev[i].flags)) {
NeilBrown4e5314b2005-11-08 21:39:22 -08002722 /* Oh, no!!! */
majianpeng2e8ac3032012-07-03 15:57:02 +10002723 set_bad = 1;
NeilBrowncc6167b2016-11-02 14:16:50 +11002724 pr_warn_ratelimited(
2725 "md/raid:%s: read error NOT corrected!! (sector %llu on %s).\n",
Christian Dietrich8bda4702011-07-27 11:00:36 +10002726 mdname(conf->mddev),
NeilBrown05616be2012-05-21 09:27:00 +10002727 (unsigned long long)s,
Christian Dietrich8bda4702011-07-27 11:00:36 +10002728 bdn);
majianpeng2e8ac3032012-07-03 15:57:02 +10002729 } else if (atomic_read(&rdev->read_errors)
Nigel Croxon0009fad2019-08-21 09:27:08 -04002730 > conf->max_nr_stripes) {
2731 if (!test_bit(Faulty, &rdev->flags)) {
2732 pr_warn("md/raid:%s: %d read_errors > %d stripes\n",
2733 mdname(conf->mddev),
2734 atomic_read(&rdev->read_errors),
2735 conf->max_nr_stripes);
2736 pr_warn("md/raid:%s: Too many read errors, failing device %s.\n",
2737 mdname(conf->mddev), bdn);
2738 }
2739 } else
NeilBrownba22dcb2005-11-08 21:39:31 -08002740 retry = 1;
Bian Yuedfa1f62013-11-14 15:16:17 +11002741 if (set_bad && test_bit(In_sync, &rdev->flags)
2742 && !test_bit(R5_ReadNoMerge, &sh->dev[i].flags))
2743 retry = 1;
NeilBrownba22dcb2005-11-08 21:39:31 -08002744 if (retry)
Xiao Ni143f6e72019-07-08 10:14:32 +08002745 if (sh->qd_idx >= 0 && sh->pd_idx == i)
2746 set_bit(R5_ReadError, &sh->dev[i].flags);
2747 else if (test_bit(R5_ReadNoMerge, &sh->dev[i].flags)) {
majianpeng3f9e7c12012-07-31 10:04:21 +10002748 set_bit(R5_ReadError, &sh->dev[i].flags);
2749 clear_bit(R5_ReadNoMerge, &sh->dev[i].flags);
2750 } else
2751 set_bit(R5_ReadNoMerge, &sh->dev[i].flags);
NeilBrownba22dcb2005-11-08 21:39:31 -08002752 else {
NeilBrown4e5314b2005-11-08 21:39:22 -08002753 clear_bit(R5_ReadError, &sh->dev[i].flags);
2754 clear_bit(R5_ReWrite, &sh->dev[i].flags);
majianpeng2e8ac3032012-07-03 15:57:02 +10002755 if (!(set_bad
2756 && test_bit(In_sync, &rdev->flags)
2757 && rdev_set_badblocks(
Yufen Yuc911c462020-07-18 05:29:07 -04002758 rdev, sh->sector, RAID5_STRIPE_SECTORS(conf), 0)))
majianpeng2e8ac3032012-07-03 15:57:02 +10002759 md_error(conf->mddev, rdev);
NeilBrownba22dcb2005-11-08 21:39:31 -08002760 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761 }
NeilBrown14a75d32011-12-23 10:17:52 +11002762 rdev_dec_pending(rdev, conf->mddev);
Shaohua Lic9445552016-09-08 10:43:58 -07002763 bio_reset(bi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764 clear_bit(R5_LOCKED, &sh->dev[i].flags);
2765 set_bit(STRIPE_HANDLE, &sh->state);
Shaohua Li6d036f72015-08-13 14:31:57 -07002766 raid5_release_stripe(sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767}
2768
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002769static void raid5_end_write_request(struct bio *bi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770{
NeilBrown99c0fb52009-03-31 14:39:38 +11002771 struct stripe_head *sh = bi->bi_private;
NeilBrownd1688a62011-10-11 16:49:52 +11002772 struct r5conf *conf = sh->raid_conf;
NeilBrown7ecaa1e2006-03-27 01:18:08 -08002773 int disks = sh->disks, i;
Kees Cook3f649ab2020-06-03 13:09:38 -07002774 struct md_rdev *rdev;
NeilBrownb84db562011-07-28 11:39:23 +10002775 sector_t first_bad;
2776 int bad_sectors;
NeilBrown977df362011-12-23 10:17:53 +11002777 int replacement = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778
NeilBrown977df362011-12-23 10:17:53 +11002779 for (i = 0 ; i < disks; i++) {
2780 if (bi == &sh->dev[i].req) {
2781 rdev = conf->disks[i].rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782 break;
NeilBrown977df362011-12-23 10:17:53 +11002783 }
2784 if (bi == &sh->dev[i].rreq) {
2785 rdev = conf->disks[i].replacement;
NeilBrowndd054fc2011-12-23 10:17:53 +11002786 if (rdev)
2787 replacement = 1;
2788 else
2789 /* rdev was removed and 'replacement'
2790 * replaced it. rdev is not removed
2791 * until all requests are finished.
2792 */
2793 rdev = conf->disks[i].rdev;
NeilBrown977df362011-12-23 10:17:53 +11002794 break;
2795 }
2796 }
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002797 pr_debug("end_write_request %llu/%d, count %d, error: %d.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798 (unsigned long long)sh->sector, i, atomic_read(&sh->count),
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002799 bi->bi_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800 if (i == disks) {
Shaohua Li5f9d1fd2016-08-22 21:14:01 -07002801 bio_reset(bi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802 BUG();
NeilBrown6712ecf2007-09-27 12:47:43 +02002803 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804 }
2805
NeilBrown977df362011-12-23 10:17:53 +11002806 if (replacement) {
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002807 if (bi->bi_status)
NeilBrown977df362011-12-23 10:17:53 +11002808 md_error(conf->mddev, rdev);
2809 else if (is_badblock(rdev, sh->sector,
Yufen Yuc911c462020-07-18 05:29:07 -04002810 RAID5_STRIPE_SECTORS(conf),
NeilBrown977df362011-12-23 10:17:53 +11002811 &first_bad, &bad_sectors))
2812 set_bit(R5_MadeGoodRepl, &sh->dev[i].flags);
2813 } else {
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002814 if (bi->bi_status) {
NeilBrown9f97e4b2014-01-16 09:35:38 +11002815 set_bit(STRIPE_DEGRADED, &sh->state);
NeilBrown977df362011-12-23 10:17:53 +11002816 set_bit(WriteErrorSeen, &rdev->flags);
2817 set_bit(R5_WriteError, &sh->dev[i].flags);
NeilBrown3a6de292011-12-23 10:17:54 +11002818 if (!test_and_set_bit(WantReplacement, &rdev->flags))
2819 set_bit(MD_RECOVERY_NEEDED,
2820 &rdev->mddev->recovery);
NeilBrown977df362011-12-23 10:17:53 +11002821 } else if (is_badblock(rdev, sh->sector,
Yufen Yuc911c462020-07-18 05:29:07 -04002822 RAID5_STRIPE_SECTORS(conf),
NeilBrownc0b32972013-04-24 11:42:42 +10002823 &first_bad, &bad_sectors)) {
NeilBrown977df362011-12-23 10:17:53 +11002824 set_bit(R5_MadeGood, &sh->dev[i].flags);
NeilBrownc0b32972013-04-24 11:42:42 +10002825 if (test_bit(R5_ReadError, &sh->dev[i].flags))
2826 /* That was a successful write so make
2827 * sure it looks like we already did
2828 * a re-write.
2829 */
2830 set_bit(R5_ReWrite, &sh->dev[i].flags);
2831 }
NeilBrown977df362011-12-23 10:17:53 +11002832 }
2833 rdev_dec_pending(rdev, conf->mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002835 if (sh->batch_head && bi->bi_status && !replacement)
shli@kernel.org72ac7332014-12-15 12:57:03 +11002836 set_bit(STRIPE_BATCH_ERR, &sh->batch_head->state);
2837
Shaohua Lic9445552016-09-08 10:43:58 -07002838 bio_reset(bi);
NeilBrown977df362011-12-23 10:17:53 +11002839 if (!test_and_clear_bit(R5_DOUBLE_LOCKED, &sh->dev[i].flags))
2840 clear_bit(R5_LOCKED, &sh->dev[i].flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841 set_bit(STRIPE_HANDLE, &sh->state);
Shaohua Li6d036f72015-08-13 14:31:57 -07002842 raid5_release_stripe(sh);
shli@kernel.org59fc6302014-12-15 12:57:03 +11002843
2844 if (sh->batch_head && sh != sh->batch_head)
Shaohua Li6d036f72015-08-13 14:31:57 -07002845 raid5_release_stripe(sh->batch_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846}
2847
Shaohua Li849674e2016-01-20 13:52:20 -08002848static void raid5_error(struct mddev *mddev, struct md_rdev *rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002849{
2850 char b[BDEVNAME_SIZE];
NeilBrownd1688a62011-10-11 16:49:52 +11002851 struct r5conf *conf = mddev->private;
NeilBrown908f4fb2011-12-23 10:17:50 +11002852 unsigned long flags;
NeilBrown0c55e022010-05-03 14:09:02 +10002853 pr_debug("raid456: error called\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854
NeilBrown908f4fb2011-12-23 10:17:50 +11002855 spin_lock_irqsave(&conf->device_lock, flags);
Mariusz Tkaczykfb73b352018-09-04 15:08:30 +02002856
2857 if (test_bit(In_sync, &rdev->flags) &&
2858 mddev->degraded == conf->max_degraded) {
2859 /*
2860 * Don't allow to achieve failed state
2861 * Don't try to recover this device
2862 */
2863 conf->recovery_disabled = mddev->recovery_disabled;
2864 spin_unlock_irqrestore(&conf->device_lock, flags);
2865 return;
2866 }
2867
bingjingcaff69d82017-11-17 10:57:44 +08002868 set_bit(Faulty, &rdev->flags);
NeilBrown908f4fb2011-12-23 10:17:50 +11002869 clear_bit(In_sync, &rdev->flags);
Song Liu2e38a372017-01-24 10:45:30 -08002870 mddev->degraded = raid5_calc_degraded(conf);
NeilBrown908f4fb2011-12-23 10:17:50 +11002871 spin_unlock_irqrestore(&conf->device_lock, flags);
2872 set_bit(MD_RECOVERY_INTR, &mddev->recovery);
2873
NeilBrownde393cd2011-07-28 11:31:48 +10002874 set_bit(Blocked, &rdev->flags);
Shaohua Li29530792016-12-08 15:48:19 -08002875 set_mask_bits(&mddev->sb_flags, 0,
2876 BIT(MD_SB_CHANGE_DEVS) | BIT(MD_SB_CHANGE_PENDING));
NeilBrowncc6167b2016-11-02 14:16:50 +11002877 pr_crit("md/raid:%s: Disk failure on %s, disabling device.\n"
2878 "md/raid:%s: Operation continuing on %d devices.\n",
2879 mdname(mddev),
2880 bdevname(rdev->bdev, b),
2881 mdname(mddev),
2882 conf->raid_disks - mddev->degraded);
Song Liu70d466f2017-05-11 15:28:28 -07002883 r5c_update_on_rdev_error(mddev, rdev);
NeilBrown16a53ec2006-06-26 00:27:38 -07002884}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885
2886/*
2887 * Input: a 'big' sector number,
2888 * Output: index of the data and parity disk, and the sector # in them.
2889 */
Shaohua Li6d036f72015-08-13 14:31:57 -07002890sector_t raid5_compute_sector(struct r5conf *conf, sector_t r_sector,
2891 int previous, int *dd_idx,
2892 struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893{
NeilBrown6e3b96e2010-04-23 07:08:28 +10002894 sector_t stripe, stripe2;
NeilBrown35f2a592010-04-20 14:13:34 +10002895 sector_t chunk_number;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896 unsigned int chunk_offset;
NeilBrown911d4ee2009-03-31 14:39:38 +11002897 int pd_idx, qd_idx;
NeilBrown67cc2b82009-03-31 14:39:38 +11002898 int ddf_layout = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899 sector_t new_sector;
NeilBrowne183eae2009-03-31 15:20:22 +11002900 int algorithm = previous ? conf->prev_algo
2901 : conf->algorithm;
Andre Noll09c9e5f2009-06-18 08:45:55 +10002902 int sectors_per_chunk = previous ? conf->prev_chunk_sectors
2903 : conf->chunk_sectors;
NeilBrown112bf892009-03-31 14:39:38 +11002904 int raid_disks = previous ? conf->previous_raid_disks
2905 : conf->raid_disks;
2906 int data_disks = raid_disks - conf->max_degraded;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907
2908 /* First compute the information on this sector */
2909
2910 /*
2911 * Compute the chunk number and the sector offset inside the chunk
2912 */
2913 chunk_offset = sector_div(r_sector, sectors_per_chunk);
2914 chunk_number = r_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002915
2916 /*
2917 * Compute the stripe number
2918 */
NeilBrown35f2a592010-04-20 14:13:34 +10002919 stripe = chunk_number;
2920 *dd_idx = sector_div(stripe, data_disks);
NeilBrown6e3b96e2010-04-23 07:08:28 +10002921 stripe2 = stripe;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922 /*
2923 * Select the parity disk based on the user selected algorithm.
2924 */
NeilBrown84789552011-07-27 11:00:36 +10002925 pd_idx = qd_idx = -1;
NeilBrown16a53ec2006-06-26 00:27:38 -07002926 switch(conf->level) {
2927 case 4:
NeilBrown911d4ee2009-03-31 14:39:38 +11002928 pd_idx = data_disks;
NeilBrown16a53ec2006-06-26 00:27:38 -07002929 break;
2930 case 5:
NeilBrowne183eae2009-03-31 15:20:22 +11002931 switch (algorithm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932 case ALGORITHM_LEFT_ASYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002933 pd_idx = data_disks - sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002934 if (*dd_idx >= pd_idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935 (*dd_idx)++;
2936 break;
2937 case ALGORITHM_RIGHT_ASYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002938 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002939 if (*dd_idx >= pd_idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940 (*dd_idx)++;
2941 break;
2942 case ALGORITHM_LEFT_SYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002943 pd_idx = data_disks - sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002944 *dd_idx = (pd_idx + 1 + *dd_idx) % raid_disks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945 break;
2946 case ALGORITHM_RIGHT_SYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002947 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002948 *dd_idx = (pd_idx + 1 + *dd_idx) % raid_disks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002949 break;
NeilBrown99c0fb52009-03-31 14:39:38 +11002950 case ALGORITHM_PARITY_0:
2951 pd_idx = 0;
2952 (*dd_idx)++;
2953 break;
2954 case ALGORITHM_PARITY_N:
2955 pd_idx = data_disks;
2956 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957 default:
NeilBrown99c0fb52009-03-31 14:39:38 +11002958 BUG();
NeilBrown16a53ec2006-06-26 00:27:38 -07002959 }
2960 break;
2961 case 6:
2962
NeilBrowne183eae2009-03-31 15:20:22 +11002963 switch (algorithm) {
NeilBrown16a53ec2006-06-26 00:27:38 -07002964 case ALGORITHM_LEFT_ASYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002965 pd_idx = raid_disks - 1 - sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002966 qd_idx = pd_idx + 1;
2967 if (pd_idx == raid_disks-1) {
NeilBrown99c0fb52009-03-31 14:39:38 +11002968 (*dd_idx)++; /* Q D D D P */
NeilBrown911d4ee2009-03-31 14:39:38 +11002969 qd_idx = 0;
2970 } else if (*dd_idx >= pd_idx)
NeilBrown16a53ec2006-06-26 00:27:38 -07002971 (*dd_idx) += 2; /* D D P Q D */
2972 break;
2973 case ALGORITHM_RIGHT_ASYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002974 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002975 qd_idx = pd_idx + 1;
2976 if (pd_idx == raid_disks-1) {
NeilBrown99c0fb52009-03-31 14:39:38 +11002977 (*dd_idx)++; /* Q D D D P */
NeilBrown911d4ee2009-03-31 14:39:38 +11002978 qd_idx = 0;
2979 } else if (*dd_idx >= pd_idx)
NeilBrown16a53ec2006-06-26 00:27:38 -07002980 (*dd_idx) += 2; /* D D P Q D */
2981 break;
2982 case ALGORITHM_LEFT_SYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002983 pd_idx = raid_disks - 1 - sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002984 qd_idx = (pd_idx + 1) % raid_disks;
2985 *dd_idx = (pd_idx + 2 + *dd_idx) % raid_disks;
NeilBrown16a53ec2006-06-26 00:27:38 -07002986 break;
2987 case ALGORITHM_RIGHT_SYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002988 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002989 qd_idx = (pd_idx + 1) % raid_disks;
2990 *dd_idx = (pd_idx + 2 + *dd_idx) % raid_disks;
NeilBrown16a53ec2006-06-26 00:27:38 -07002991 break;
NeilBrown99c0fb52009-03-31 14:39:38 +11002992
2993 case ALGORITHM_PARITY_0:
2994 pd_idx = 0;
2995 qd_idx = 1;
2996 (*dd_idx) += 2;
2997 break;
2998 case ALGORITHM_PARITY_N:
2999 pd_idx = data_disks;
3000 qd_idx = data_disks + 1;
3001 break;
3002
3003 case ALGORITHM_ROTATING_ZERO_RESTART:
3004 /* Exactly the same as RIGHT_ASYMMETRIC, but or
3005 * of blocks for computing Q is different.
3006 */
NeilBrown6e3b96e2010-04-23 07:08:28 +10003007 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown99c0fb52009-03-31 14:39:38 +11003008 qd_idx = pd_idx + 1;
3009 if (pd_idx == raid_disks-1) {
3010 (*dd_idx)++; /* Q D D D P */
3011 qd_idx = 0;
3012 } else if (*dd_idx >= pd_idx)
3013 (*dd_idx) += 2; /* D D P Q D */
NeilBrown67cc2b82009-03-31 14:39:38 +11003014 ddf_layout = 1;
NeilBrown99c0fb52009-03-31 14:39:38 +11003015 break;
3016
3017 case ALGORITHM_ROTATING_N_RESTART:
3018 /* Same a left_asymmetric, by first stripe is
3019 * D D D P Q rather than
3020 * Q D D D P
3021 */
NeilBrown6e3b96e2010-04-23 07:08:28 +10003022 stripe2 += 1;
3023 pd_idx = raid_disks - 1 - sector_div(stripe2, raid_disks);
NeilBrown99c0fb52009-03-31 14:39:38 +11003024 qd_idx = pd_idx + 1;
3025 if (pd_idx == raid_disks-1) {
3026 (*dd_idx)++; /* Q D D D P */
3027 qd_idx = 0;
3028 } else if (*dd_idx >= pd_idx)
3029 (*dd_idx) += 2; /* D D P Q D */
NeilBrown67cc2b82009-03-31 14:39:38 +11003030 ddf_layout = 1;
NeilBrown99c0fb52009-03-31 14:39:38 +11003031 break;
3032
3033 case ALGORITHM_ROTATING_N_CONTINUE:
3034 /* Same as left_symmetric but Q is before P */
NeilBrown6e3b96e2010-04-23 07:08:28 +10003035 pd_idx = raid_disks - 1 - sector_div(stripe2, raid_disks);
NeilBrown99c0fb52009-03-31 14:39:38 +11003036 qd_idx = (pd_idx + raid_disks - 1) % raid_disks;
3037 *dd_idx = (pd_idx + 1 + *dd_idx) % raid_disks;
NeilBrown67cc2b82009-03-31 14:39:38 +11003038 ddf_layout = 1;
NeilBrown99c0fb52009-03-31 14:39:38 +11003039 break;
3040
3041 case ALGORITHM_LEFT_ASYMMETRIC_6:
3042 /* RAID5 left_asymmetric, with Q on last device */
NeilBrown6e3b96e2010-04-23 07:08:28 +10003043 pd_idx = data_disks - sector_div(stripe2, raid_disks-1);
NeilBrown99c0fb52009-03-31 14:39:38 +11003044 if (*dd_idx >= pd_idx)
3045 (*dd_idx)++;
3046 qd_idx = raid_disks - 1;
3047 break;
3048
3049 case ALGORITHM_RIGHT_ASYMMETRIC_6:
NeilBrown6e3b96e2010-04-23 07:08:28 +10003050 pd_idx = sector_div(stripe2, raid_disks-1);
NeilBrown99c0fb52009-03-31 14:39:38 +11003051 if (*dd_idx >= pd_idx)
3052 (*dd_idx)++;
3053 qd_idx = raid_disks - 1;
3054 break;
3055
3056 case ALGORITHM_LEFT_SYMMETRIC_6:
NeilBrown6e3b96e2010-04-23 07:08:28 +10003057 pd_idx = data_disks - sector_div(stripe2, raid_disks-1);
NeilBrown99c0fb52009-03-31 14:39:38 +11003058 *dd_idx = (pd_idx + 1 + *dd_idx) % (raid_disks-1);
3059 qd_idx = raid_disks - 1;
3060 break;
3061
3062 case ALGORITHM_RIGHT_SYMMETRIC_6:
NeilBrown6e3b96e2010-04-23 07:08:28 +10003063 pd_idx = sector_div(stripe2, raid_disks-1);
NeilBrown99c0fb52009-03-31 14:39:38 +11003064 *dd_idx = (pd_idx + 1 + *dd_idx) % (raid_disks-1);
3065 qd_idx = raid_disks - 1;
3066 break;
3067
3068 case ALGORITHM_PARITY_0_6:
3069 pd_idx = 0;
3070 (*dd_idx)++;
3071 qd_idx = raid_disks - 1;
3072 break;
3073
NeilBrown16a53ec2006-06-26 00:27:38 -07003074 default:
NeilBrown99c0fb52009-03-31 14:39:38 +11003075 BUG();
NeilBrown16a53ec2006-06-26 00:27:38 -07003076 }
3077 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003078 }
3079
NeilBrown911d4ee2009-03-31 14:39:38 +11003080 if (sh) {
3081 sh->pd_idx = pd_idx;
3082 sh->qd_idx = qd_idx;
NeilBrown67cc2b82009-03-31 14:39:38 +11003083 sh->ddf_layout = ddf_layout;
NeilBrown911d4ee2009-03-31 14:39:38 +11003084 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085 /*
3086 * Finally, compute the new sector number
3087 */
3088 new_sector = (sector_t)stripe * sectors_per_chunk + chunk_offset;
3089 return new_sector;
3090}
3091
Shaohua Li6d036f72015-08-13 14:31:57 -07003092sector_t raid5_compute_blocknr(struct stripe_head *sh, int i, int previous)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093{
NeilBrownd1688a62011-10-11 16:49:52 +11003094 struct r5conf *conf = sh->raid_conf;
NeilBrownb875e532006-12-10 02:20:49 -08003095 int raid_disks = sh->disks;
3096 int data_disks = raid_disks - conf->max_degraded;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003097 sector_t new_sector = sh->sector, check;
Andre Noll09c9e5f2009-06-18 08:45:55 +10003098 int sectors_per_chunk = previous ? conf->prev_chunk_sectors
3099 : conf->chunk_sectors;
NeilBrowne183eae2009-03-31 15:20:22 +11003100 int algorithm = previous ? conf->prev_algo
3101 : conf->algorithm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102 sector_t stripe;
3103 int chunk_offset;
NeilBrown35f2a592010-04-20 14:13:34 +10003104 sector_t chunk_number;
3105 int dummy1, dd_idx = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106 sector_t r_sector;
NeilBrown911d4ee2009-03-31 14:39:38 +11003107 struct stripe_head sh2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003108
3109 chunk_offset = sector_div(new_sector, sectors_per_chunk);
3110 stripe = new_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111
NeilBrown16a53ec2006-06-26 00:27:38 -07003112 if (i == sh->pd_idx)
3113 return 0;
3114 switch(conf->level) {
3115 case 4: break;
3116 case 5:
NeilBrowne183eae2009-03-31 15:20:22 +11003117 switch (algorithm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118 case ALGORITHM_LEFT_ASYMMETRIC:
3119 case ALGORITHM_RIGHT_ASYMMETRIC:
3120 if (i > sh->pd_idx)
3121 i--;
3122 break;
3123 case ALGORITHM_LEFT_SYMMETRIC:
3124 case ALGORITHM_RIGHT_SYMMETRIC:
3125 if (i < sh->pd_idx)
3126 i += raid_disks;
3127 i -= (sh->pd_idx + 1);
3128 break;
NeilBrown99c0fb52009-03-31 14:39:38 +11003129 case ALGORITHM_PARITY_0:
3130 i -= 1;
3131 break;
3132 case ALGORITHM_PARITY_N:
3133 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003134 default:
NeilBrown99c0fb52009-03-31 14:39:38 +11003135 BUG();
NeilBrown16a53ec2006-06-26 00:27:38 -07003136 }
3137 break;
3138 case 6:
NeilBrownd0dabf72009-03-31 14:39:38 +11003139 if (i == sh->qd_idx)
NeilBrown16a53ec2006-06-26 00:27:38 -07003140 return 0; /* It is the Q disk */
NeilBrowne183eae2009-03-31 15:20:22 +11003141 switch (algorithm) {
NeilBrown16a53ec2006-06-26 00:27:38 -07003142 case ALGORITHM_LEFT_ASYMMETRIC:
3143 case ALGORITHM_RIGHT_ASYMMETRIC:
NeilBrown99c0fb52009-03-31 14:39:38 +11003144 case ALGORITHM_ROTATING_ZERO_RESTART:
3145 case ALGORITHM_ROTATING_N_RESTART:
3146 if (sh->pd_idx == raid_disks-1)
3147 i--; /* Q D D D P */
NeilBrown16a53ec2006-06-26 00:27:38 -07003148 else if (i > sh->pd_idx)
3149 i -= 2; /* D D P Q D */
3150 break;
3151 case ALGORITHM_LEFT_SYMMETRIC:
3152 case ALGORITHM_RIGHT_SYMMETRIC:
3153 if (sh->pd_idx == raid_disks-1)
3154 i--; /* Q D D D P */
3155 else {
3156 /* D D P Q D */
3157 if (i < sh->pd_idx)
3158 i += raid_disks;
3159 i -= (sh->pd_idx + 2);
3160 }
3161 break;
NeilBrown99c0fb52009-03-31 14:39:38 +11003162 case ALGORITHM_PARITY_0:
3163 i -= 2;
3164 break;
3165 case ALGORITHM_PARITY_N:
3166 break;
3167 case ALGORITHM_ROTATING_N_CONTINUE:
NeilBrowne4424fe2009-10-16 16:27:34 +11003168 /* Like left_symmetric, but P is before Q */
NeilBrown99c0fb52009-03-31 14:39:38 +11003169 if (sh->pd_idx == 0)
3170 i--; /* P D D D Q */
NeilBrowne4424fe2009-10-16 16:27:34 +11003171 else {
3172 /* D D Q P D */
3173 if (i < sh->pd_idx)
3174 i += raid_disks;
3175 i -= (sh->pd_idx + 1);
3176 }
NeilBrown99c0fb52009-03-31 14:39:38 +11003177 break;
3178 case ALGORITHM_LEFT_ASYMMETRIC_6:
3179 case ALGORITHM_RIGHT_ASYMMETRIC_6:
3180 if (i > sh->pd_idx)
3181 i--;
3182 break;
3183 case ALGORITHM_LEFT_SYMMETRIC_6:
3184 case ALGORITHM_RIGHT_SYMMETRIC_6:
3185 if (i < sh->pd_idx)
3186 i += data_disks + 1;
3187 i -= (sh->pd_idx + 1);
3188 break;
3189 case ALGORITHM_PARITY_0_6:
3190 i -= 1;
3191 break;
NeilBrown16a53ec2006-06-26 00:27:38 -07003192 default:
NeilBrown99c0fb52009-03-31 14:39:38 +11003193 BUG();
NeilBrown16a53ec2006-06-26 00:27:38 -07003194 }
3195 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003196 }
3197
3198 chunk_number = stripe * data_disks + i;
NeilBrown35f2a592010-04-20 14:13:34 +10003199 r_sector = chunk_number * sectors_per_chunk + chunk_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200
NeilBrown112bf892009-03-31 14:39:38 +11003201 check = raid5_compute_sector(conf, r_sector,
NeilBrown784052e2009-03-31 15:19:07 +11003202 previous, &dummy1, &sh2);
NeilBrown911d4ee2009-03-31 14:39:38 +11003203 if (check != sh->sector || dummy1 != dd_idx || sh2.pd_idx != sh->pd_idx
3204 || sh2.qd_idx != sh->qd_idx) {
NeilBrowncc6167b2016-11-02 14:16:50 +11003205 pr_warn("md/raid:%s: compute_blocknr: map not correct\n",
3206 mdname(conf->mddev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003207 return 0;
3208 }
3209 return r_sector;
3210}
3211
Song Liu07e83362017-01-23 17:12:58 -08003212/*
3213 * There are cases where we want handle_stripe_dirtying() and
3214 * schedule_reconstruction() to delay towrite to some dev of a stripe.
3215 *
3216 * This function checks whether we want to delay the towrite. Specifically,
3217 * we delay the towrite when:
3218 *
3219 * 1. degraded stripe has a non-overwrite to the missing dev, AND this
3220 * stripe has data in journal (for other devices).
3221 *
3222 * In this case, when reading data for the non-overwrite dev, it is
3223 * necessary to handle complex rmw of write back cache (prexor with
3224 * orig_page, and xor with page). To keep read path simple, we would
3225 * like to flush data in journal to RAID disks first, so complex rmw
3226 * is handled in the write patch (handle_stripe_dirtying).
3227 *
Song Liu39b99582017-01-24 14:08:23 -08003228 * 2. when journal space is critical (R5C_LOG_CRITICAL=1)
3229 *
3230 * It is important to be able to flush all stripes in raid5-cache.
3231 * Therefore, we need reserve some space on the journal device for
3232 * these flushes. If flush operation includes pending writes to the
3233 * stripe, we need to reserve (conf->raid_disk + 1) pages per stripe
3234 * for the flush out. If we exclude these pending writes from flush
3235 * operation, we only need (conf->max_degraded + 1) pages per stripe.
3236 * Therefore, excluding pending writes in these cases enables more
3237 * efficient use of the journal device.
3238 *
3239 * Note: To make sure the stripe makes progress, we only delay
3240 * towrite for stripes with data already in journal (injournal > 0).
3241 * When LOG_CRITICAL, stripes with injournal == 0 will be sent to
3242 * no_space_stripes list.
3243 *
Song Liu70d466f2017-05-11 15:28:28 -07003244 * 3. during journal failure
3245 * In journal failure, we try to flush all cached data to raid disks
3246 * based on data in stripe cache. The array is read-only to upper
3247 * layers, so we would skip all pending writes.
3248 *
Song Liu07e83362017-01-23 17:12:58 -08003249 */
Song Liu39b99582017-01-24 14:08:23 -08003250static inline bool delay_towrite(struct r5conf *conf,
3251 struct r5dev *dev,
3252 struct stripe_head_state *s)
Song Liu07e83362017-01-23 17:12:58 -08003253{
Song Liu39b99582017-01-24 14:08:23 -08003254 /* case 1 above */
3255 if (!test_bit(R5_OVERWRITE, &dev->flags) &&
3256 !test_bit(R5_Insync, &dev->flags) && s->injournal)
3257 return true;
3258 /* case 2 above */
3259 if (test_bit(R5C_LOG_CRITICAL, &conf->cache_state) &&
3260 s->injournal > 0)
3261 return true;
Song Liu70d466f2017-05-11 15:28:28 -07003262 /* case 3 above */
3263 if (s->log_failed && s->injournal)
3264 return true;
Song Liu39b99582017-01-24 14:08:23 -08003265 return false;
Song Liu07e83362017-01-23 17:12:58 -08003266}
3267
Dan Williams600aa102008-06-28 08:32:05 +10003268static void
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07003269schedule_reconstruction(struct stripe_head *sh, struct stripe_head_state *s,
Dan Williams600aa102008-06-28 08:32:05 +10003270 int rcw, int expand)
Dan Williamse33129d2007-01-02 13:52:30 -07003271{
Markus Stockhausen584acdd2014-12-15 12:57:05 +11003272 int i, pd_idx = sh->pd_idx, qd_idx = sh->qd_idx, disks = sh->disks;
NeilBrownd1688a62011-10-11 16:49:52 +11003273 struct r5conf *conf = sh->raid_conf;
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07003274 int level = conf->level;
NeilBrown16a53ec2006-06-26 00:27:38 -07003275
Dan Williamse33129d2007-01-02 13:52:30 -07003276 if (rcw) {
Song Liu1e6d6902016-11-17 15:24:39 -08003277 /*
3278 * In some cases, handle_stripe_dirtying initially decided to
3279 * run rmw and allocates extra page for prexor. However, rcw is
3280 * cheaper later on. We need to free the extra page now,
3281 * because we won't be able to do that in ops_complete_prexor().
3282 */
3283 r5c_release_extra_page(sh);
Dan Williamse33129d2007-01-02 13:52:30 -07003284
3285 for (i = disks; i--; ) {
3286 struct r5dev *dev = &sh->dev[i];
3287
Song Liu39b99582017-01-24 14:08:23 -08003288 if (dev->towrite && !delay_towrite(conf, dev, s)) {
Dan Williamse33129d2007-01-02 13:52:30 -07003289 set_bit(R5_LOCKED, &dev->flags);
Dan Williamsd8ee0722008-06-28 08:32:06 +10003290 set_bit(R5_Wantdrain, &dev->flags);
Dan Williamse33129d2007-01-02 13:52:30 -07003291 if (!expand)
3292 clear_bit(R5_UPTODATE, &dev->flags);
Dan Williams600aa102008-06-28 08:32:05 +10003293 s->locked++;
Song Liu1e6d6902016-11-17 15:24:39 -08003294 } else if (test_bit(R5_InJournal, &dev->flags)) {
3295 set_bit(R5_LOCKED, &dev->flags);
3296 s->locked++;
Dan Williamse33129d2007-01-02 13:52:30 -07003297 }
3298 }
NeilBrownce7d3632013-03-04 12:37:14 +11003299 /* if we are not expanding this is a proper write request, and
3300 * there will be bios with new data to be drained into the
3301 * stripe cache
3302 */
3303 if (!expand) {
3304 if (!s->locked)
3305 /* False alarm, nothing to do */
3306 return;
3307 sh->reconstruct_state = reconstruct_state_drain_run;
3308 set_bit(STRIPE_OP_BIODRAIN, &s->ops_request);
3309 } else
3310 sh->reconstruct_state = reconstruct_state_run;
3311
3312 set_bit(STRIPE_OP_RECONSTRUCT, &s->ops_request);
3313
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07003314 if (s->locked + conf->max_degraded == disks)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07003315 if (!test_and_set_bit(STRIPE_FULL_WRITE, &sh->state))
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07003316 atomic_inc(&conf->pending_full_writes);
Dan Williamse33129d2007-01-02 13:52:30 -07003317 } else {
3318 BUG_ON(!(test_bit(R5_UPTODATE, &sh->dev[pd_idx].flags) ||
3319 test_bit(R5_Wantcompute, &sh->dev[pd_idx].flags)));
Markus Stockhausen584acdd2014-12-15 12:57:05 +11003320 BUG_ON(level == 6 &&
3321 (!(test_bit(R5_UPTODATE, &sh->dev[qd_idx].flags) ||
3322 test_bit(R5_Wantcompute, &sh->dev[qd_idx].flags))));
Dan Williamse33129d2007-01-02 13:52:30 -07003323
Dan Williamse33129d2007-01-02 13:52:30 -07003324 for (i = disks; i--; ) {
3325 struct r5dev *dev = &sh->dev[i];
Markus Stockhausen584acdd2014-12-15 12:57:05 +11003326 if (i == pd_idx || i == qd_idx)
Dan Williamse33129d2007-01-02 13:52:30 -07003327 continue;
3328
Dan Williamse33129d2007-01-02 13:52:30 -07003329 if (dev->towrite &&
3330 (test_bit(R5_UPTODATE, &dev->flags) ||
Dan Williamsd8ee0722008-06-28 08:32:06 +10003331 test_bit(R5_Wantcompute, &dev->flags))) {
3332 set_bit(R5_Wantdrain, &dev->flags);
Dan Williamse33129d2007-01-02 13:52:30 -07003333 set_bit(R5_LOCKED, &dev->flags);
3334 clear_bit(R5_UPTODATE, &dev->flags);
Dan Williams600aa102008-06-28 08:32:05 +10003335 s->locked++;
Song Liu1e6d6902016-11-17 15:24:39 -08003336 } else if (test_bit(R5_InJournal, &dev->flags)) {
3337 set_bit(R5_LOCKED, &dev->flags);
3338 s->locked++;
Dan Williamse33129d2007-01-02 13:52:30 -07003339 }
3340 }
NeilBrownce7d3632013-03-04 12:37:14 +11003341 if (!s->locked)
3342 /* False alarm - nothing to do */
3343 return;
3344 sh->reconstruct_state = reconstruct_state_prexor_drain_run;
3345 set_bit(STRIPE_OP_PREXOR, &s->ops_request);
3346 set_bit(STRIPE_OP_BIODRAIN, &s->ops_request);
3347 set_bit(STRIPE_OP_RECONSTRUCT, &s->ops_request);
Dan Williamse33129d2007-01-02 13:52:30 -07003348 }
3349
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07003350 /* keep the parity disk(s) locked while asynchronous operations
Dan Williamse33129d2007-01-02 13:52:30 -07003351 * are in flight
3352 */
3353 set_bit(R5_LOCKED, &sh->dev[pd_idx].flags);
3354 clear_bit(R5_UPTODATE, &sh->dev[pd_idx].flags);
Dan Williams600aa102008-06-28 08:32:05 +10003355 s->locked++;
Dan Williamse33129d2007-01-02 13:52:30 -07003356
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07003357 if (level == 6) {
3358 int qd_idx = sh->qd_idx;
3359 struct r5dev *dev = &sh->dev[qd_idx];
3360
3361 set_bit(R5_LOCKED, &dev->flags);
3362 clear_bit(R5_UPTODATE, &dev->flags);
3363 s->locked++;
3364 }
3365
Artur Paszkiewicz845b9e22017-04-04 13:13:57 +02003366 if (raid5_has_ppl(sh->raid_conf) && sh->ppl_page &&
Artur Paszkiewicz3418d032017-03-09 09:59:59 +01003367 test_bit(STRIPE_OP_BIODRAIN, &s->ops_request) &&
3368 !test_bit(STRIPE_FULL_WRITE, &sh->state) &&
3369 test_bit(R5_Insync, &sh->dev[pd_idx].flags))
3370 set_bit(STRIPE_OP_PARTIAL_PARITY, &s->ops_request);
3371
Dan Williams600aa102008-06-28 08:32:05 +10003372 pr_debug("%s: stripe %llu locked: %d ops_request: %lx\n",
Harvey Harrisone46b272b2008-04-28 02:15:50 -07003373 __func__, (unsigned long long)sh->sector,
Dan Williams600aa102008-06-28 08:32:05 +10003374 s->locked, s->ops_request);
Dan Williamse33129d2007-01-02 13:52:30 -07003375}
NeilBrown16a53ec2006-06-26 00:27:38 -07003376
Linus Torvalds1da177e2005-04-16 15:20:36 -07003377/*
3378 * Each stripe/dev can have one or more bion attached.
NeilBrown16a53ec2006-06-26 00:27:38 -07003379 * toread/towrite point to the first in a chain.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003380 * The bi_next chain must be in order.
3381 */
shli@kernel.orgda41ba62014-12-15 12:57:03 +11003382static int add_stripe_bio(struct stripe_head *sh, struct bio *bi, int dd_idx,
3383 int forwrite, int previous)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003384{
3385 struct bio **bip;
NeilBrownd1688a62011-10-11 16:49:52 +11003386 struct r5conf *conf = sh->raid_conf;
NeilBrown72626682005-09-09 16:23:54 -07003387 int firstwrite=0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003388
NeilBrowncbe47ec2011-07-26 11:20:35 +10003389 pr_debug("adding bi b#%llu to stripe s#%llu\n",
Kent Overstreet4f024f32013-10-11 15:44:27 -07003390 (unsigned long long)bi->bi_iter.bi_sector,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003391 (unsigned long long)sh->sector);
3392
Shaohua Lib17459c2012-07-19 16:01:31 +10003393 spin_lock_irq(&sh->stripe_lock);
Mariusz Dabrowski2cd259a2018-04-19 19:28:10 +02003394 sh->dev[dd_idx].write_hint = bi->bi_write_hint;
shli@kernel.org59fc6302014-12-15 12:57:03 +11003395 /* Don't allow new IO added to stripes in batch list */
3396 if (sh->batch_head)
3397 goto overlap;
NeilBrown72626682005-09-09 16:23:54 -07003398 if (forwrite) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003399 bip = &sh->dev[dd_idx].towrite;
Shaohua Li7eaf7e82012-07-19 16:01:31 +10003400 if (*bip == NULL)
NeilBrown72626682005-09-09 16:23:54 -07003401 firstwrite = 1;
3402 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003403 bip = &sh->dev[dd_idx].toread;
Kent Overstreet4f024f32013-10-11 15:44:27 -07003404 while (*bip && (*bip)->bi_iter.bi_sector < bi->bi_iter.bi_sector) {
3405 if (bio_end_sector(*bip) > bi->bi_iter.bi_sector)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406 goto overlap;
3407 bip = & (*bip)->bi_next;
3408 }
Kent Overstreet4f024f32013-10-11 15:44:27 -07003409 if (*bip && (*bip)->bi_iter.bi_sector < bio_end_sector(bi))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003410 goto overlap;
3411
Artur Paszkiewicz3418d032017-03-09 09:59:59 +01003412 if (forwrite && raid5_has_ppl(conf)) {
3413 /*
3414 * With PPL only writes to consecutive data chunks within a
3415 * stripe are allowed because for a single stripe_head we can
3416 * only have one PPL entry at a time, which describes one data
3417 * range. Not really an overlap, but wait_for_overlap can be
3418 * used to handle this.
3419 */
3420 sector_t sector;
3421 sector_t first = 0;
3422 sector_t last = 0;
3423 int count = 0;
3424 int i;
3425
3426 for (i = 0; i < sh->disks; i++) {
3427 if (i != sh->pd_idx &&
3428 (i == dd_idx || sh->dev[i].towrite)) {
3429 sector = sh->dev[i].sector;
3430 if (count == 0 || sector < first)
3431 first = sector;
3432 if (sector > last)
3433 last = sector;
3434 count++;
3435 }
3436 }
3437
3438 if (first + conf->chunk_sectors * (count - 1) != last)
3439 goto overlap;
3440 }
3441
shli@kernel.orgda41ba62014-12-15 12:57:03 +11003442 if (!forwrite || previous)
3443 clear_bit(STRIPE_BATCH_READY, &sh->state);
3444
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +02003445 BUG_ON(*bip && bi->bi_next && (*bip) != bi->bi_next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003446 if (*bip)
3447 bi->bi_next = *bip;
3448 *bip = bi;
NeilBrown016c76a2017-03-15 14:05:13 +11003449 bio_inc_remaining(bi);
NeilBrown49728052017-03-15 14:05:12 +11003450 md_write_inc(conf->mddev, bi);
NeilBrown72626682005-09-09 16:23:54 -07003451
Linus Torvalds1da177e2005-04-16 15:20:36 -07003452 if (forwrite) {
3453 /* check if page is covered */
3454 sector_t sector = sh->dev[dd_idx].sector;
3455 for (bi=sh->dev[dd_idx].towrite;
Yufen Yuc911c462020-07-18 05:29:07 -04003456 sector < sh->dev[dd_idx].sector + RAID5_STRIPE_SECTORS(conf) &&
Kent Overstreet4f024f32013-10-11 15:44:27 -07003457 bi && bi->bi_iter.bi_sector <= sector;
Yufen Yuc911c462020-07-18 05:29:07 -04003458 bi = r5_next_bio(conf, bi, sh->dev[dd_idx].sector)) {
Kent Overstreetf73a1c72012-09-25 15:05:12 -07003459 if (bio_end_sector(bi) >= sector)
3460 sector = bio_end_sector(bi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003461 }
Yufen Yuc911c462020-07-18 05:29:07 -04003462 if (sector >= sh->dev[dd_idx].sector + RAID5_STRIPE_SECTORS(conf))
shli@kernel.org7a87f432014-12-15 12:57:03 +11003463 if (!test_and_set_bit(R5_OVERWRITE, &sh->dev[dd_idx].flags))
3464 sh->overwrite_disks++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003465 }
NeilBrowncbe47ec2011-07-26 11:20:35 +10003466
3467 pr_debug("added bi b#%llu to stripe s#%llu, disk %d.\n",
Kent Overstreet4f024f32013-10-11 15:44:27 -07003468 (unsigned long long)(*bip)->bi_iter.bi_sector,
NeilBrowncbe47ec2011-07-26 11:20:35 +10003469 (unsigned long long)sh->sector, dd_idx);
3470
3471 if (conf->mddev->bitmap && firstwrite) {
NeilBrownd0852df52015-05-27 08:43:45 +10003472 /* Cannot hold spinlock over bitmap_startwrite,
3473 * but must ensure this isn't added to a batch until
3474 * we have added to the bitmap and set bm_seq.
3475 * So set STRIPE_BITMAP_PENDING to prevent
3476 * batching.
3477 * If multiple add_stripe_bio() calls race here they
3478 * much all set STRIPE_BITMAP_PENDING. So only the first one
3479 * to complete "bitmap_startwrite" gets to set
3480 * STRIPE_BIT_DELAY. This is important as once a stripe
3481 * is added to a batch, STRIPE_BIT_DELAY cannot be changed
3482 * any more.
3483 */
3484 set_bit(STRIPE_BITMAP_PENDING, &sh->state);
3485 spin_unlock_irq(&sh->stripe_lock);
Andy Shevchenkoe64e40182018-08-01 15:20:50 -07003486 md_bitmap_startwrite(conf->mddev->bitmap, sh->sector,
Yufen Yuc911c462020-07-18 05:29:07 -04003487 RAID5_STRIPE_SECTORS(conf), 0);
NeilBrownd0852df52015-05-27 08:43:45 +10003488 spin_lock_irq(&sh->stripe_lock);
3489 clear_bit(STRIPE_BITMAP_PENDING, &sh->state);
3490 if (!sh->batch_head) {
3491 sh->bm_seq = conf->seq_flush+1;
3492 set_bit(STRIPE_BIT_DELAY, &sh->state);
3493 }
NeilBrowncbe47ec2011-07-26 11:20:35 +10003494 }
NeilBrownd0852df52015-05-27 08:43:45 +10003495 spin_unlock_irq(&sh->stripe_lock);
shli@kernel.org59fc6302014-12-15 12:57:03 +11003496
3497 if (stripe_can_batch(sh))
3498 stripe_add_to_batch_list(conf, sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003499 return 1;
3500
3501 overlap:
3502 set_bit(R5_Overlap, &sh->dev[dd_idx].flags);
Shaohua Lib17459c2012-07-19 16:01:31 +10003503 spin_unlock_irq(&sh->stripe_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003504 return 0;
3505}
3506
NeilBrownd1688a62011-10-11 16:49:52 +11003507static void end_reshape(struct r5conf *conf);
NeilBrown29269552006-03-27 01:18:10 -08003508
NeilBrownd1688a62011-10-11 16:49:52 +11003509static void stripe_set_idx(sector_t stripe, struct r5conf *conf, int previous,
NeilBrown911d4ee2009-03-31 14:39:38 +11003510 struct stripe_head *sh)
NeilBrownccfcc3c2006-03-27 01:18:09 -08003511{
NeilBrown784052e2009-03-31 15:19:07 +11003512 int sectors_per_chunk =
Andre Noll09c9e5f2009-06-18 08:45:55 +10003513 previous ? conf->prev_chunk_sectors : conf->chunk_sectors;
NeilBrown911d4ee2009-03-31 14:39:38 +11003514 int dd_idx;
Coywolf Qi Hunt2d2063c2006-10-03 01:15:50 -07003515 int chunk_offset = sector_div(stripe, sectors_per_chunk);
NeilBrown112bf892009-03-31 14:39:38 +11003516 int disks = previous ? conf->previous_raid_disks : conf->raid_disks;
Coywolf Qi Hunt2d2063c2006-10-03 01:15:50 -07003517
NeilBrown112bf892009-03-31 14:39:38 +11003518 raid5_compute_sector(conf,
3519 stripe * (disks - conf->max_degraded)
NeilBrownb875e532006-12-10 02:20:49 -08003520 *sectors_per_chunk + chunk_offset,
NeilBrown112bf892009-03-31 14:39:38 +11003521 previous,
NeilBrown911d4ee2009-03-31 14:39:38 +11003522 &dd_idx, sh);
NeilBrownccfcc3c2006-03-27 01:18:09 -08003523}
3524
Dan Williamsa4456852007-07-09 11:56:43 -07003525static void
NeilBrownd1688a62011-10-11 16:49:52 +11003526handle_failed_stripe(struct r5conf *conf, struct stripe_head *sh,
NeilBrownbd83d0a2017-03-15 14:05:12 +11003527 struct stripe_head_state *s, int disks)
Dan Williamsa4456852007-07-09 11:56:43 -07003528{
3529 int i;
shli@kernel.org59fc6302014-12-15 12:57:03 +11003530 BUG_ON(sh->batch_head);
Dan Williamsa4456852007-07-09 11:56:43 -07003531 for (i = disks; i--; ) {
3532 struct bio *bi;
3533 int bitmap_end = 0;
3534
3535 if (test_bit(R5_ReadError, &sh->dev[i].flags)) {
NeilBrown3cb03002011-10-11 16:45:26 +11003536 struct md_rdev *rdev;
Dan Williamsa4456852007-07-09 11:56:43 -07003537 rcu_read_lock();
3538 rdev = rcu_dereference(conf->disks[i].rdev);
NeilBrownf5b67ae2016-06-02 16:19:53 +10003539 if (rdev && test_bit(In_sync, &rdev->flags) &&
3540 !test_bit(Faulty, &rdev->flags))
NeilBrown7f0da592011-07-28 11:39:22 +10003541 atomic_inc(&rdev->nr_pending);
3542 else
3543 rdev = NULL;
Dan Williamsa4456852007-07-09 11:56:43 -07003544 rcu_read_unlock();
NeilBrown7f0da592011-07-28 11:39:22 +10003545 if (rdev) {
3546 if (!rdev_set_badblocks(
3547 rdev,
3548 sh->sector,
Yufen Yuc911c462020-07-18 05:29:07 -04003549 RAID5_STRIPE_SECTORS(conf), 0))
NeilBrown7f0da592011-07-28 11:39:22 +10003550 md_error(conf->mddev, rdev);
3551 rdev_dec_pending(rdev, conf->mddev);
3552 }
Dan Williamsa4456852007-07-09 11:56:43 -07003553 }
Shaohua Lib17459c2012-07-19 16:01:31 +10003554 spin_lock_irq(&sh->stripe_lock);
Dan Williamsa4456852007-07-09 11:56:43 -07003555 /* fail all writes first */
3556 bi = sh->dev[i].towrite;
3557 sh->dev[i].towrite = NULL;
shli@kernel.org7a87f432014-12-15 12:57:03 +11003558 sh->overwrite_disks = 0;
Shaohua Lib17459c2012-07-19 16:01:31 +10003559 spin_unlock_irq(&sh->stripe_lock);
NeilBrown1ed850f2012-10-11 13:50:13 +11003560 if (bi)
Dan Williamsa4456852007-07-09 11:56:43 -07003561 bitmap_end = 1;
Dan Williamsa4456852007-07-09 11:56:43 -07003562
Artur Paszkiewiczff875732017-03-09 09:59:58 +01003563 log_stripe_write_finished(sh);
Shaohua Li0576b1c2015-08-13 14:32:00 -07003564
Dan Williamsa4456852007-07-09 11:56:43 -07003565 if (test_and_clear_bit(R5_Overlap, &sh->dev[i].flags))
3566 wake_up(&conf->wait_for_overlap);
3567
Kent Overstreet4f024f32013-10-11 15:44:27 -07003568 while (bi && bi->bi_iter.bi_sector <
Yufen Yuc911c462020-07-18 05:29:07 -04003569 sh->dev[i].sector + RAID5_STRIPE_SECTORS(conf)) {
3570 struct bio *nextbi = r5_next_bio(conf, bi, sh->dev[i].sector);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02003571
NeilBrown49728052017-03-15 14:05:12 +11003572 md_write_end(conf->mddev);
Guoqing Jiang6308d8e2017-07-21 16:33:44 +08003573 bio_io_error(bi);
Dan Williamsa4456852007-07-09 11:56:43 -07003574 bi = nextbi;
3575 }
Shaohua Li7eaf7e82012-07-19 16:01:31 +10003576 if (bitmap_end)
Andy Shevchenkoe64e40182018-08-01 15:20:50 -07003577 md_bitmap_endwrite(conf->mddev->bitmap, sh->sector,
Yufen Yuc911c462020-07-18 05:29:07 -04003578 RAID5_STRIPE_SECTORS(conf), 0, 0);
Shaohua Li7eaf7e82012-07-19 16:01:31 +10003579 bitmap_end = 0;
Dan Williamsa4456852007-07-09 11:56:43 -07003580 /* and fail all 'written' */
3581 bi = sh->dev[i].written;
3582 sh->dev[i].written = NULL;
Shaohua Lid592a992014-05-21 17:57:44 +08003583 if (test_and_clear_bit(R5_SkipCopy, &sh->dev[i].flags)) {
3584 WARN_ON(test_bit(R5_UPTODATE, &sh->dev[i].flags));
3585 sh->dev[i].page = sh->dev[i].orig_page;
3586 }
3587
Dan Williamsa4456852007-07-09 11:56:43 -07003588 if (bi) bitmap_end = 1;
Kent Overstreet4f024f32013-10-11 15:44:27 -07003589 while (bi && bi->bi_iter.bi_sector <
Yufen Yuc911c462020-07-18 05:29:07 -04003590 sh->dev[i].sector + RAID5_STRIPE_SECTORS(conf)) {
3591 struct bio *bi2 = r5_next_bio(conf, bi, sh->dev[i].sector);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02003592
NeilBrown49728052017-03-15 14:05:12 +11003593 md_write_end(conf->mddev);
Guoqing Jiang6308d8e2017-07-21 16:33:44 +08003594 bio_io_error(bi);
Dan Williamsa4456852007-07-09 11:56:43 -07003595 bi = bi2;
3596 }
3597
Dan Williamsb5e98d62007-01-02 13:52:31 -07003598 /* fail any reads if this device is non-operational and
3599 * the data has not reached the cache yet.
3600 */
3601 if (!test_bit(R5_Wantfill, &sh->dev[i].flags) &&
Shaohua Li6e74a9c2015-10-08 21:54:08 -07003602 s->failed > conf->max_degraded &&
Dan Williamsb5e98d62007-01-02 13:52:31 -07003603 (!test_bit(R5_Insync, &sh->dev[i].flags) ||
3604 test_bit(R5_ReadError, &sh->dev[i].flags))) {
NeilBrown143c4d02012-10-11 13:50:12 +11003605 spin_lock_irq(&sh->stripe_lock);
Dan Williamsa4456852007-07-09 11:56:43 -07003606 bi = sh->dev[i].toread;
3607 sh->dev[i].toread = NULL;
NeilBrown143c4d02012-10-11 13:50:12 +11003608 spin_unlock_irq(&sh->stripe_lock);
Dan Williamsa4456852007-07-09 11:56:43 -07003609 if (test_and_clear_bit(R5_Overlap, &sh->dev[i].flags))
3610 wake_up(&conf->wait_for_overlap);
Shaohua Liebda7802015-09-18 10:20:13 -07003611 if (bi)
3612 s->to_read--;
Kent Overstreet4f024f32013-10-11 15:44:27 -07003613 while (bi && bi->bi_iter.bi_sector <
Yufen Yuc911c462020-07-18 05:29:07 -04003614 sh->dev[i].sector + RAID5_STRIPE_SECTORS(conf)) {
Dan Williamsa4456852007-07-09 11:56:43 -07003615 struct bio *nextbi =
Yufen Yuc911c462020-07-18 05:29:07 -04003616 r5_next_bio(conf, bi, sh->dev[i].sector);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02003617
Guoqing Jiang6308d8e2017-07-21 16:33:44 +08003618 bio_io_error(bi);
Dan Williamsa4456852007-07-09 11:56:43 -07003619 bi = nextbi;
3620 }
3621 }
Dan Williamsa4456852007-07-09 11:56:43 -07003622 if (bitmap_end)
Andy Shevchenkoe64e40182018-08-01 15:20:50 -07003623 md_bitmap_endwrite(conf->mddev->bitmap, sh->sector,
Yufen Yuc911c462020-07-18 05:29:07 -04003624 RAID5_STRIPE_SECTORS(conf), 0, 0);
NeilBrown8cfa7b02011-07-27 11:00:36 +10003625 /* If we were in the middle of a write the parity block might
3626 * still be locked - so just clear all R5_LOCKED flags
3627 */
3628 clear_bit(R5_LOCKED, &sh->dev[i].flags);
Dan Williamsa4456852007-07-09 11:56:43 -07003629 }
Shaohua Liebda7802015-09-18 10:20:13 -07003630 s->to_write = 0;
3631 s->written = 0;
Dan Williamsa4456852007-07-09 11:56:43 -07003632
Dan Williams8b3e6cd2008-04-28 02:15:53 -07003633 if (test_and_clear_bit(STRIPE_FULL_WRITE, &sh->state))
3634 if (atomic_dec_and_test(&conf->pending_full_writes))
3635 md_wakeup_thread(conf->mddev->thread);
Dan Williamsa4456852007-07-09 11:56:43 -07003636}
3637
NeilBrown7f0da592011-07-28 11:39:22 +10003638static void
NeilBrownd1688a62011-10-11 16:49:52 +11003639handle_failed_sync(struct r5conf *conf, struct stripe_head *sh,
NeilBrown7f0da592011-07-28 11:39:22 +10003640 struct stripe_head_state *s)
3641{
3642 int abort = 0;
3643 int i;
3644
shli@kernel.org59fc6302014-12-15 12:57:03 +11003645 BUG_ON(sh->batch_head);
NeilBrown7f0da592011-07-28 11:39:22 +10003646 clear_bit(STRIPE_SYNCING, &sh->state);
NeilBrownf8dfcff2013-03-12 12:18:06 +11003647 if (test_and_clear_bit(R5_Overlap, &sh->dev[sh->pd_idx].flags))
3648 wake_up(&conf->wait_for_overlap);
NeilBrown7f0da592011-07-28 11:39:22 +10003649 s->syncing = 0;
NeilBrown9a3e1102011-12-23 10:17:53 +11003650 s->replacing = 0;
NeilBrown7f0da592011-07-28 11:39:22 +10003651 /* There is nothing more to do for sync/check/repair.
NeilBrown18b98372012-04-01 23:48:38 +10003652 * Don't even need to abort as that is handled elsewhere
3653 * if needed, and not always wanted e.g. if there is a known
3654 * bad block here.
NeilBrown9a3e1102011-12-23 10:17:53 +11003655 * For recover/replace we need to record a bad block on all
NeilBrown7f0da592011-07-28 11:39:22 +10003656 * non-sync devices, or abort the recovery
3657 */
NeilBrown18b98372012-04-01 23:48:38 +10003658 if (test_bit(MD_RECOVERY_RECOVER, &conf->mddev->recovery)) {
3659 /* During recovery devices cannot be removed, so
3660 * locking and refcounting of rdevs is not needed
3661 */
NeilBrowne50d3992016-06-02 16:19:52 +10003662 rcu_read_lock();
NeilBrown18b98372012-04-01 23:48:38 +10003663 for (i = 0; i < conf->raid_disks; i++) {
NeilBrowne50d3992016-06-02 16:19:52 +10003664 struct md_rdev *rdev = rcu_dereference(conf->disks[i].rdev);
NeilBrown18b98372012-04-01 23:48:38 +10003665 if (rdev
3666 && !test_bit(Faulty, &rdev->flags)
3667 && !test_bit(In_sync, &rdev->flags)
3668 && !rdev_set_badblocks(rdev, sh->sector,
Yufen Yuc911c462020-07-18 05:29:07 -04003669 RAID5_STRIPE_SECTORS(conf), 0))
NeilBrown18b98372012-04-01 23:48:38 +10003670 abort = 1;
NeilBrowne50d3992016-06-02 16:19:52 +10003671 rdev = rcu_dereference(conf->disks[i].replacement);
NeilBrown18b98372012-04-01 23:48:38 +10003672 if (rdev
3673 && !test_bit(Faulty, &rdev->flags)
3674 && !test_bit(In_sync, &rdev->flags)
3675 && !rdev_set_badblocks(rdev, sh->sector,
Yufen Yuc911c462020-07-18 05:29:07 -04003676 RAID5_STRIPE_SECTORS(conf), 0))
NeilBrown18b98372012-04-01 23:48:38 +10003677 abort = 1;
3678 }
NeilBrowne50d3992016-06-02 16:19:52 +10003679 rcu_read_unlock();
NeilBrown18b98372012-04-01 23:48:38 +10003680 if (abort)
3681 conf->recovery_disabled =
3682 conf->mddev->recovery_disabled;
NeilBrown7f0da592011-07-28 11:39:22 +10003683 }
Yufen Yuc911c462020-07-18 05:29:07 -04003684 md_done_sync(conf->mddev, RAID5_STRIPE_SECTORS(conf), !abort);
NeilBrown7f0da592011-07-28 11:39:22 +10003685}
3686
NeilBrown9a3e1102011-12-23 10:17:53 +11003687static int want_replace(struct stripe_head *sh, int disk_idx)
3688{
3689 struct md_rdev *rdev;
3690 int rv = 0;
NeilBrown3f232d62016-06-02 16:19:52 +10003691
3692 rcu_read_lock();
3693 rdev = rcu_dereference(sh->raid_conf->disks[disk_idx].replacement);
NeilBrown9a3e1102011-12-23 10:17:53 +11003694 if (rdev
3695 && !test_bit(Faulty, &rdev->flags)
3696 && !test_bit(In_sync, &rdev->flags)
3697 && (rdev->recovery_offset <= sh->sector
3698 || rdev->mddev->recovery_cp <= sh->sector))
3699 rv = 1;
NeilBrown3f232d62016-06-02 16:19:52 +10003700 rcu_read_unlock();
NeilBrown9a3e1102011-12-23 10:17:53 +11003701 return rv;
3702}
3703
NeilBrown2c58f062015-02-02 11:32:23 +11003704static int need_this_block(struct stripe_head *sh, struct stripe_head_state *s,
3705 int disk_idx, int disks)
Dan Williamsf38e1212007-01-02 13:52:30 -07003706{
3707 struct r5dev *dev = &sh->dev[disk_idx];
NeilBrown93b3dbc2011-07-27 11:00:36 +10003708 struct r5dev *fdev[2] = { &sh->dev[s->failed_num[0]],
3709 &sh->dev[s->failed_num[1]] };
NeilBrownea664c82015-02-02 14:03:28 +11003710 int i;
ChangSyun Peng45a4d8f2020-07-31 17:50:31 +08003711 bool force_rcw = (sh->raid_conf->rmw_level == PARITY_DISABLE_RMW);
Dan Williamsf38e1212007-01-02 13:52:30 -07003712
NeilBrowna79cfe12015-02-02 11:37:59 +11003713
3714 if (test_bit(R5_LOCKED, &dev->flags) ||
3715 test_bit(R5_UPTODATE, &dev->flags))
3716 /* No point reading this as we already have it or have
3717 * decided to get it.
3718 */
3719 return 0;
3720
3721 if (dev->toread ||
3722 (dev->towrite && !test_bit(R5_OVERWRITE, &dev->flags)))
3723 /* We need this block to directly satisfy a request */
3724 return 1;
3725
3726 if (s->syncing || s->expanding ||
3727 (s->replacing && want_replace(sh, disk_idx)))
3728 /* When syncing, or expanding we read everything.
3729 * When replacing, we need the replaced block.
3730 */
3731 return 1;
3732
3733 if ((s->failed >= 1 && fdev[0]->toread) ||
3734 (s->failed >= 2 && fdev[1]->toread))
3735 /* If we want to read from a failed device, then
3736 * we need to actually read every other device.
3737 */
3738 return 1;
3739
NeilBrowna9d56952015-02-02 11:49:10 +11003740 /* Sometimes neither read-modify-write nor reconstruct-write
3741 * cycles can work. In those cases we read every block we
3742 * can. Then the parity-update is certain to have enough to
3743 * work with.
3744 * This can only be a problem when we need to write something,
3745 * and some device has failed. If either of those tests
3746 * fail we need look no further.
3747 */
3748 if (!s->failed || !s->to_write)
3749 return 0;
3750
3751 if (test_bit(R5_Insync, &dev->flags) &&
3752 !test_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
3753 /* Pre-reads at not permitted until after short delay
3754 * to gather multiple requests. However if this
Zhilong Liu3560741e2017-03-15 16:14:53 +08003755 * device is no Insync, the block could only be computed
NeilBrowna9d56952015-02-02 11:49:10 +11003756 * and there is no need to delay that.
3757 */
3758 return 0;
NeilBrownea664c82015-02-02 14:03:28 +11003759
NeilBrown36707bb2015-09-24 15:25:36 +10003760 for (i = 0; i < s->failed && i < 2; i++) {
NeilBrownea664c82015-02-02 14:03:28 +11003761 if (fdev[i]->towrite &&
3762 !test_bit(R5_UPTODATE, &fdev[i]->flags) &&
3763 !test_bit(R5_OVERWRITE, &fdev[i]->flags))
3764 /* If we have a partial write to a failed
3765 * device, then we will need to reconstruct
3766 * the content of that device, so all other
3767 * devices must be read.
3768 */
3769 return 1;
ChangSyun Peng45a4d8f2020-07-31 17:50:31 +08003770
3771 if (s->failed >= 2 &&
3772 (fdev[i]->towrite ||
3773 s->failed_num[i] == sh->pd_idx ||
3774 s->failed_num[i] == sh->qd_idx) &&
3775 !test_bit(R5_UPTODATE, &fdev[i]->flags))
3776 /* In max degraded raid6, If the failed disk is P, Q,
3777 * or we want to read the failed disk, we need to do
3778 * reconstruct-write.
3779 */
3780 force_rcw = true;
NeilBrownea664c82015-02-02 14:03:28 +11003781 }
3782
ChangSyun Peng45a4d8f2020-07-31 17:50:31 +08003783 /* If we are forced to do a reconstruct-write, because parity
3784 * cannot be trusted and we are currently recovering it, there
3785 * is extra need to be careful.
NeilBrownea664c82015-02-02 14:03:28 +11003786 * If one of the devices that we would need to read, because
3787 * it is not being overwritten (and maybe not written at all)
3788 * is missing/faulty, then we need to read everything we can.
3789 */
ChangSyun Peng45a4d8f2020-07-31 17:50:31 +08003790 if (!force_rcw &&
NeilBrownea664c82015-02-02 14:03:28 +11003791 sh->sector < sh->raid_conf->mddev->recovery_cp)
3792 /* reconstruct-write isn't being forced */
3793 return 0;
NeilBrown36707bb2015-09-24 15:25:36 +10003794 for (i = 0; i < s->failed && i < 2; i++) {
NeilBrown10d82c52015-05-08 18:19:33 +10003795 if (s->failed_num[i] != sh->pd_idx &&
3796 s->failed_num[i] != sh->qd_idx &&
3797 !test_bit(R5_UPTODATE, &fdev[i]->flags) &&
NeilBrownea664c82015-02-02 14:03:28 +11003798 !test_bit(R5_OVERWRITE, &fdev[i]->flags))
3799 return 1;
3800 }
3801
NeilBrown2c58f062015-02-02 11:32:23 +11003802 return 0;
3803}
3804
Song Liuba026842017-01-12 17:22:42 -08003805/* fetch_block - checks the given member device to see if its data needs
3806 * to be read or computed to satisfy a request.
3807 *
3808 * Returns 1 when no more member devices need to be checked, otherwise returns
3809 * 0 to tell the loop in handle_stripe_fill to continue
3810 */
NeilBrown2c58f062015-02-02 11:32:23 +11003811static int fetch_block(struct stripe_head *sh, struct stripe_head_state *s,
3812 int disk_idx, int disks)
3813{
3814 struct r5dev *dev = &sh->dev[disk_idx];
3815
3816 /* is the data in this block needed, and can we get it? */
3817 if (need_this_block(sh, s, disk_idx, disks)) {
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07003818 /* we would like to get this block, possibly by computing it,
3819 * otherwise read it if the backing disk is insync
3820 */
3821 BUG_ON(test_bit(R5_Wantcompute, &dev->flags));
3822 BUG_ON(test_bit(R5_Wantread, &dev->flags));
NeilBrownb0c783b2015-05-08 18:19:32 +10003823 BUG_ON(sh->batch_head);
NeilBrown7471fb72017-04-03 12:11:32 +10003824
3825 /*
3826 * In the raid6 case if the only non-uptodate disk is P
3827 * then we already trusted P to compute the other failed
3828 * drives. It is safe to compute rather than re-read P.
3829 * In other cases we only compute blocks from failed
3830 * devices, otherwise check/repair might fail to detect
3831 * a real inconsistency.
3832 */
3833
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07003834 if ((s->uptodate == disks - 1) &&
NeilBrown7471fb72017-04-03 12:11:32 +10003835 ((sh->qd_idx >= 0 && sh->pd_idx == disk_idx) ||
NeilBrownf2b3b442011-07-26 11:35:19 +10003836 (s->failed && (disk_idx == s->failed_num[0] ||
NeilBrown7471fb72017-04-03 12:11:32 +10003837 disk_idx == s->failed_num[1])))) {
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07003838 /* have disk failed, and we're requested to fetch it;
3839 * do compute it
3840 */
3841 pr_debug("Computing stripe %llu block %d\n",
3842 (unsigned long long)sh->sector, disk_idx);
3843 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
3844 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
3845 set_bit(R5_Wantcompute, &dev->flags);
3846 sh->ops.target = disk_idx;
3847 sh->ops.target2 = -1; /* no 2nd target */
3848 s->req_compute = 1;
NeilBrown93b3dbc2011-07-27 11:00:36 +10003849 /* Careful: from this point on 'uptodate' is in the eye
3850 * of raid_run_ops which services 'compute' operations
3851 * before writes. R5_Wantcompute flags a block that will
3852 * be R5_UPTODATE by the time it is needed for a
3853 * subsequent operation.
3854 */
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07003855 s->uptodate++;
3856 return 1;
3857 } else if (s->uptodate == disks-2 && s->failed >= 2) {
3858 /* Computing 2-failure is *very* expensive; only
3859 * do it if failed >= 2
3860 */
3861 int other;
3862 for (other = disks; other--; ) {
3863 if (other == disk_idx)
3864 continue;
3865 if (!test_bit(R5_UPTODATE,
3866 &sh->dev[other].flags))
3867 break;
3868 }
3869 BUG_ON(other < 0);
3870 pr_debug("Computing stripe %llu blocks %d,%d\n",
3871 (unsigned long long)sh->sector,
3872 disk_idx, other);
3873 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
3874 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
3875 set_bit(R5_Wantcompute, &sh->dev[disk_idx].flags);
3876 set_bit(R5_Wantcompute, &sh->dev[other].flags);
3877 sh->ops.target = disk_idx;
3878 sh->ops.target2 = other;
3879 s->uptodate += 2;
3880 s->req_compute = 1;
3881 return 1;
3882 } else if (test_bit(R5_Insync, &dev->flags)) {
3883 set_bit(R5_LOCKED, &dev->flags);
3884 set_bit(R5_Wantread, &dev->flags);
3885 s->locked++;
3886 pr_debug("Reading block %d (sync=%d)\n",
3887 disk_idx, s->syncing);
3888 }
3889 }
3890
3891 return 0;
3892}
3893
Damien Le Moal2aada5b2020-07-16 13:54:42 +09003894/*
NeilBrown93b3dbc2011-07-27 11:00:36 +10003895 * handle_stripe_fill - read or compute data to satisfy pending requests.
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07003896 */
NeilBrown93b3dbc2011-07-27 11:00:36 +10003897static void handle_stripe_fill(struct stripe_head *sh,
3898 struct stripe_head_state *s,
3899 int disks)
Dan Williamsa4456852007-07-09 11:56:43 -07003900{
3901 int i;
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07003902
3903 /* look for blocks to read/compute, skip this if a compute
3904 * is already in flight, or if the stripe contents are in the
3905 * midst of changing due to a write
3906 */
3907 if (!test_bit(STRIPE_COMPUTE_RUN, &sh->state) && !sh->check_state &&
Song Liu07e83362017-01-23 17:12:58 -08003908 !sh->reconstruct_state) {
3909
3910 /*
3911 * For degraded stripe with data in journal, do not handle
3912 * read requests yet, instead, flush the stripe to raid
3913 * disks first, this avoids handling complex rmw of write
3914 * back cache (prexor with orig_page, and then xor with
3915 * page) in the read path
3916 */
3917 if (s->injournal && s->failed) {
3918 if (test_bit(STRIPE_R5C_CACHING, &sh->state))
3919 r5c_make_stripe_write_out(sh);
3920 goto out;
3921 }
3922
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07003923 for (i = disks; i--; )
NeilBrown93b3dbc2011-07-27 11:00:36 +10003924 if (fetch_block(sh, s, i, disks))
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07003925 break;
Song Liu07e83362017-01-23 17:12:58 -08003926 }
3927out:
Dan Williamsa4456852007-07-09 11:56:43 -07003928 set_bit(STRIPE_HANDLE, &sh->state);
3929}
3930
NeilBrown787b76f2015-05-21 12:56:41 +10003931static void break_stripe_batch_list(struct stripe_head *head_sh,
3932 unsigned long handle_flags);
Dan Williams1fe797e2008-06-28 09:16:30 +10003933/* handle_stripe_clean_event
Dan Williamsa4456852007-07-09 11:56:43 -07003934 * any written block on an uptodate or failed drive can be returned.
3935 * Note that if we 'wrote' to a failed drive, it will be UPTODATE, but
3936 * never LOCKED, so we don't need to test 'failed' directly.
3937 */
NeilBrownd1688a62011-10-11 16:49:52 +11003938static void handle_stripe_clean_event(struct r5conf *conf,
NeilBrownbd83d0a2017-03-15 14:05:12 +11003939 struct stripe_head *sh, int disks)
Dan Williamsa4456852007-07-09 11:56:43 -07003940{
3941 int i;
3942 struct r5dev *dev;
NeilBrownf8dfcff2013-03-12 12:18:06 +11003943 int discard_pending = 0;
shli@kernel.org59fc6302014-12-15 12:57:03 +11003944 struct stripe_head *head_sh = sh;
3945 bool do_endio = false;
Dan Williamsa4456852007-07-09 11:56:43 -07003946
3947 for (i = disks; i--; )
3948 if (sh->dev[i].written) {
3949 dev = &sh->dev[i];
3950 if (!test_bit(R5_LOCKED, &dev->flags) &&
Shaohua Li9e4447682012-10-11 13:49:49 +11003951 (test_bit(R5_UPTODATE, &dev->flags) ||
Shaohua Lid592a992014-05-21 17:57:44 +08003952 test_bit(R5_Discard, &dev->flags) ||
3953 test_bit(R5_SkipCopy, &dev->flags))) {
Dan Williamsa4456852007-07-09 11:56:43 -07003954 /* We can return any write requests */
3955 struct bio *wbi, *wbi2;
Dan Williams45b42332007-07-09 11:56:43 -07003956 pr_debug("Return write for disc %d\n", i);
NeilBrownca64cae2012-11-21 16:33:40 +11003957 if (test_and_clear_bit(R5_Discard, &dev->flags))
3958 clear_bit(R5_UPTODATE, &dev->flags);
Shaohua Lid592a992014-05-21 17:57:44 +08003959 if (test_and_clear_bit(R5_SkipCopy, &dev->flags)) {
3960 WARN_ON(test_bit(R5_UPTODATE, &dev->flags));
Shaohua Lid592a992014-05-21 17:57:44 +08003961 }
shli@kernel.org59fc6302014-12-15 12:57:03 +11003962 do_endio = true;
3963
3964returnbi:
3965 dev->page = dev->orig_page;
Dan Williamsa4456852007-07-09 11:56:43 -07003966 wbi = dev->written;
3967 dev->written = NULL;
Kent Overstreet4f024f32013-10-11 15:44:27 -07003968 while (wbi && wbi->bi_iter.bi_sector <
Yufen Yuc911c462020-07-18 05:29:07 -04003969 dev->sector + RAID5_STRIPE_SECTORS(conf)) {
3970 wbi2 = r5_next_bio(conf, wbi, dev->sector);
NeilBrown49728052017-03-15 14:05:12 +11003971 md_write_end(conf->mddev);
NeilBrown016c76a2017-03-15 14:05:13 +11003972 bio_endio(wbi);
Dan Williamsa4456852007-07-09 11:56:43 -07003973 wbi = wbi2;
3974 }
Andy Shevchenkoe64e40182018-08-01 15:20:50 -07003975 md_bitmap_endwrite(conf->mddev->bitmap, sh->sector,
Yufen Yuc911c462020-07-18 05:29:07 -04003976 RAID5_STRIPE_SECTORS(conf),
Andy Shevchenkoe64e40182018-08-01 15:20:50 -07003977 !test_bit(STRIPE_DEGRADED, &sh->state),
3978 0);
shli@kernel.org59fc6302014-12-15 12:57:03 +11003979 if (head_sh->batch_head) {
3980 sh = list_first_entry(&sh->batch_list,
3981 struct stripe_head,
3982 batch_list);
3983 if (sh != head_sh) {
3984 dev = &sh->dev[i];
3985 goto returnbi;
3986 }
3987 }
3988 sh = head_sh;
3989 dev = &sh->dev[i];
NeilBrownf8dfcff2013-03-12 12:18:06 +11003990 } else if (test_bit(R5_Discard, &dev->flags))
3991 discard_pending = 1;
3992 }
Shaohua Lif6bed0e2015-08-13 14:31:59 -07003993
Artur Paszkiewiczff875732017-03-09 09:59:58 +01003994 log_stripe_write_finished(sh);
Shaohua Li0576b1c2015-08-13 14:32:00 -07003995
NeilBrownf8dfcff2013-03-12 12:18:06 +11003996 if (!discard_pending &&
3997 test_bit(R5_Discard, &sh->dev[sh->pd_idx].flags)) {
Roman Gushchinb8a9d662015-10-31 10:53:50 +11003998 int hash;
NeilBrownf8dfcff2013-03-12 12:18:06 +11003999 clear_bit(R5_Discard, &sh->dev[sh->pd_idx].flags);
4000 clear_bit(R5_UPTODATE, &sh->dev[sh->pd_idx].flags);
4001 if (sh->qd_idx >= 0) {
4002 clear_bit(R5_Discard, &sh->dev[sh->qd_idx].flags);
4003 clear_bit(R5_UPTODATE, &sh->dev[sh->qd_idx].flags);
4004 }
4005 /* now that discard is done we can proceed with any sync */
4006 clear_bit(STRIPE_DISCARD, &sh->state);
Shaohua Lid47648f2013-10-19 14:51:42 +08004007 /*
4008 * SCSI discard will change some bio fields and the stripe has
4009 * no updated data, so remove it from hash list and the stripe
4010 * will be reinitialized
4011 */
shli@kernel.org59fc6302014-12-15 12:57:03 +11004012unhash:
Roman Gushchinb8a9d662015-10-31 10:53:50 +11004013 hash = sh->hash_lock_index;
4014 spin_lock_irq(conf->hash_locks + hash);
Shaohua Lid47648f2013-10-19 14:51:42 +08004015 remove_hash(sh);
Roman Gushchinb8a9d662015-10-31 10:53:50 +11004016 spin_unlock_irq(conf->hash_locks + hash);
shli@kernel.org59fc6302014-12-15 12:57:03 +11004017 if (head_sh->batch_head) {
4018 sh = list_first_entry(&sh->batch_list,
4019 struct stripe_head, batch_list);
4020 if (sh != head_sh)
4021 goto unhash;
4022 }
shli@kernel.org59fc6302014-12-15 12:57:03 +11004023 sh = head_sh;
4024
NeilBrownf8dfcff2013-03-12 12:18:06 +11004025 if (test_bit(STRIPE_SYNC_REQUESTED, &sh->state))
4026 set_bit(STRIPE_HANDLE, &sh->state);
4027
4028 }
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004029
4030 if (test_and_clear_bit(STRIPE_FULL_WRITE, &sh->state))
4031 if (atomic_dec_and_test(&conf->pending_full_writes))
4032 md_wakeup_thread(conf->mddev->thread);
shli@kernel.org59fc6302014-12-15 12:57:03 +11004033
NeilBrown787b76f2015-05-21 12:56:41 +10004034 if (head_sh->batch_head && do_endio)
4035 break_stripe_batch_list(head_sh, STRIPE_EXPAND_SYNC_FLAGS);
Dan Williamsa4456852007-07-09 11:56:43 -07004036}
4037
Song Liu86aa1392017-01-12 17:22:41 -08004038/*
4039 * For RMW in write back cache, we need extra page in prexor to store the
4040 * old data. This page is stored in dev->orig_page.
4041 *
4042 * This function checks whether we have data for prexor. The exact logic
4043 * is:
4044 * R5_UPTODATE && (!R5_InJournal || R5_OrigPageUPTDODATE)
4045 */
4046static inline bool uptodate_for_rmw(struct r5dev *dev)
4047{
4048 return (test_bit(R5_UPTODATE, &dev->flags)) &&
4049 (!test_bit(R5_InJournal, &dev->flags) ||
4050 test_bit(R5_OrigPageUPTDODATE, &dev->flags));
4051}
4052
Song Liud7bd3982016-11-23 22:50:39 -08004053static int handle_stripe_dirtying(struct r5conf *conf,
4054 struct stripe_head *sh,
4055 struct stripe_head_state *s,
4056 int disks)
Dan Williamsa4456852007-07-09 11:56:43 -07004057{
4058 int rmw = 0, rcw = 0, i;
Alexander Lyakasa7854482012-10-11 13:50:12 +11004059 sector_t recovery_cp = conf->mddev->recovery_cp;
4060
Markus Stockhausen584acdd2014-12-15 12:57:05 +11004061 /* Check whether resync is now happening or should start.
Alexander Lyakasa7854482012-10-11 13:50:12 +11004062 * If yes, then the array is dirty (after unclean shutdown or
4063 * initial creation), so parity in some stripes might be inconsistent.
4064 * In this case, we need to always do reconstruct-write, to ensure
4065 * that in case of drive failure or read-error correction, we
4066 * generate correct data from the parity.
4067 */
Markus Stockhausen584acdd2014-12-15 12:57:05 +11004068 if (conf->rmw_level == PARITY_DISABLE_RMW ||
NeilBrown26ac1072015-02-18 11:35:14 +11004069 (recovery_cp < MaxSector && sh->sector >= recovery_cp &&
4070 s->failed == 0)) {
Alexander Lyakasa7854482012-10-11 13:50:12 +11004071 /* Calculate the real rcw later - for now make it
NeilBrownc8ac1802011-07-27 11:00:36 +10004072 * look like rcw is cheaper
4073 */
4074 rcw = 1; rmw = 2;
Markus Stockhausen584acdd2014-12-15 12:57:05 +11004075 pr_debug("force RCW rmw_level=%u, recovery_cp=%llu sh->sector=%llu\n",
4076 conf->rmw_level, (unsigned long long)recovery_cp,
Alexander Lyakasa7854482012-10-11 13:50:12 +11004077 (unsigned long long)sh->sector);
NeilBrownc8ac1802011-07-27 11:00:36 +10004078 } else for (i = disks; i--; ) {
Dan Williamsa4456852007-07-09 11:56:43 -07004079 /* would I have to read this buffer for read_modify_write */
4080 struct r5dev *dev = &sh->dev[i];
Song Liu39b99582017-01-24 14:08:23 -08004081 if (((dev->towrite && !delay_towrite(conf, dev, s)) ||
Song Liu07e83362017-01-23 17:12:58 -08004082 i == sh->pd_idx || i == sh->qd_idx ||
Song Liu1e6d6902016-11-17 15:24:39 -08004083 test_bit(R5_InJournal, &dev->flags)) &&
Dan Williamsa4456852007-07-09 11:56:43 -07004084 !test_bit(R5_LOCKED, &dev->flags) &&
Song Liu86aa1392017-01-12 17:22:41 -08004085 !(uptodate_for_rmw(dev) ||
Dan Williamsf38e1212007-01-02 13:52:30 -07004086 test_bit(R5_Wantcompute, &dev->flags))) {
Dan Williamsa4456852007-07-09 11:56:43 -07004087 if (test_bit(R5_Insync, &dev->flags))
4088 rmw++;
4089 else
4090 rmw += 2*disks; /* cannot read it */
4091 }
4092 /* Would I have to read this buffer for reconstruct_write */
Markus Stockhausen584acdd2014-12-15 12:57:05 +11004093 if (!test_bit(R5_OVERWRITE, &dev->flags) &&
4094 i != sh->pd_idx && i != sh->qd_idx &&
Dan Williamsa4456852007-07-09 11:56:43 -07004095 !test_bit(R5_LOCKED, &dev->flags) &&
Dan Williamsf38e1212007-01-02 13:52:30 -07004096 !(test_bit(R5_UPTODATE, &dev->flags) ||
Song Liu1e6d6902016-11-17 15:24:39 -08004097 test_bit(R5_Wantcompute, &dev->flags))) {
NeilBrown67f45542014-05-28 13:39:22 +10004098 if (test_bit(R5_Insync, &dev->flags))
4099 rcw++;
Dan Williamsa4456852007-07-09 11:56:43 -07004100 else
4101 rcw += 2*disks;
4102 }
4103 }
Song Liu1e6d6902016-11-17 15:24:39 -08004104
Song Liu39b99582017-01-24 14:08:23 -08004105 pr_debug("for sector %llu state 0x%lx, rmw=%d rcw=%d\n",
4106 (unsigned long long)sh->sector, sh->state, rmw, rcw);
Dan Williamsa4456852007-07-09 11:56:43 -07004107 set_bit(STRIPE_HANDLE, &sh->state);
Song Liu41257582016-05-23 17:25:06 -07004108 if ((rmw < rcw || (rmw == rcw && conf->rmw_level == PARITY_PREFER_RMW)) && rmw > 0) {
Dan Williamsa4456852007-07-09 11:56:43 -07004109 /* prefer read-modify-write, but need to get some data */
Jonathan Brassowe3620a32013-03-07 16:22:01 -06004110 if (conf->mddev->queue)
4111 blk_add_trace_msg(conf->mddev->queue,
4112 "raid5 rmw %llu %d",
4113 (unsigned long long)sh->sector, rmw);
Dan Williamsa4456852007-07-09 11:56:43 -07004114 for (i = disks; i--; ) {
4115 struct r5dev *dev = &sh->dev[i];
Song Liu1e6d6902016-11-17 15:24:39 -08004116 if (test_bit(R5_InJournal, &dev->flags) &&
4117 dev->page == dev->orig_page &&
4118 !test_bit(R5_LOCKED, &sh->dev[sh->pd_idx].flags)) {
4119 /* alloc page for prexor */
Song Liud7bd3982016-11-23 22:50:39 -08004120 struct page *p = alloc_page(GFP_NOIO);
Song Liu1e6d6902016-11-17 15:24:39 -08004121
Song Liud7bd3982016-11-23 22:50:39 -08004122 if (p) {
4123 dev->orig_page = p;
4124 continue;
4125 }
4126
4127 /*
4128 * alloc_page() failed, try use
4129 * disk_info->extra_page
4130 */
4131 if (!test_and_set_bit(R5C_EXTRA_PAGE_IN_USE,
4132 &conf->cache_state)) {
4133 r5c_use_extra_page(sh);
4134 break;
4135 }
4136
4137 /* extra_page in use, add to delayed_list */
4138 set_bit(STRIPE_DELAYED, &sh->state);
4139 s->waiting_extra_page = 1;
4140 return -EAGAIN;
Song Liu1e6d6902016-11-17 15:24:39 -08004141 }
Song Liud7bd3982016-11-23 22:50:39 -08004142 }
Song Liu1e6d6902016-11-17 15:24:39 -08004143
Song Liud7bd3982016-11-23 22:50:39 -08004144 for (i = disks; i--; ) {
4145 struct r5dev *dev = &sh->dev[i];
Song Liu39b99582017-01-24 14:08:23 -08004146 if (((dev->towrite && !delay_towrite(conf, dev, s)) ||
Song Liu1e6d6902016-11-17 15:24:39 -08004147 i == sh->pd_idx || i == sh->qd_idx ||
4148 test_bit(R5_InJournal, &dev->flags)) &&
Dan Williamsa4456852007-07-09 11:56:43 -07004149 !test_bit(R5_LOCKED, &dev->flags) &&
Song Liu86aa1392017-01-12 17:22:41 -08004150 !(uptodate_for_rmw(dev) ||
Song Liu1e6d6902016-11-17 15:24:39 -08004151 test_bit(R5_Wantcompute, &dev->flags)) &&
Dan Williamsa4456852007-07-09 11:56:43 -07004152 test_bit(R5_Insync, &dev->flags)) {
NeilBrown67f45542014-05-28 13:39:22 +10004153 if (test_bit(STRIPE_PREREAD_ACTIVE,
4154 &sh->state)) {
4155 pr_debug("Read_old block %d for r-m-w\n",
4156 i);
Dan Williamsa4456852007-07-09 11:56:43 -07004157 set_bit(R5_LOCKED, &dev->flags);
4158 set_bit(R5_Wantread, &dev->flags);
4159 s->locked++;
Guoqing Jiange3914d52020-07-28 12:01:40 +02004160 } else
Dan Williamsa4456852007-07-09 11:56:43 -07004161 set_bit(STRIPE_DELAYED, &sh->state);
Dan Williamsa4456852007-07-09 11:56:43 -07004162 }
4163 }
NeilBrowna9add5d2012-10-31 11:59:09 +11004164 }
Song Liu41257582016-05-23 17:25:06 -07004165 if ((rcw < rmw || (rcw == rmw && conf->rmw_level != PARITY_PREFER_RMW)) && rcw > 0) {
Dan Williamsa4456852007-07-09 11:56:43 -07004166 /* want reconstruct write, but need to get some data */
NeilBrowna9add5d2012-10-31 11:59:09 +11004167 int qread =0;
NeilBrownc8ac1802011-07-27 11:00:36 +10004168 rcw = 0;
Dan Williamsa4456852007-07-09 11:56:43 -07004169 for (i = disks; i--; ) {
4170 struct r5dev *dev = &sh->dev[i];
4171 if (!test_bit(R5_OVERWRITE, &dev->flags) &&
NeilBrownc8ac1802011-07-27 11:00:36 +10004172 i != sh->pd_idx && i != sh->qd_idx &&
Dan Williamsa4456852007-07-09 11:56:43 -07004173 !test_bit(R5_LOCKED, &dev->flags) &&
Dan Williamsf38e1212007-01-02 13:52:30 -07004174 !(test_bit(R5_UPTODATE, &dev->flags) ||
NeilBrownc8ac1802011-07-27 11:00:36 +10004175 test_bit(R5_Wantcompute, &dev->flags))) {
4176 rcw++;
NeilBrown67f45542014-05-28 13:39:22 +10004177 if (test_bit(R5_Insync, &dev->flags) &&
4178 test_bit(STRIPE_PREREAD_ACTIVE,
4179 &sh->state)) {
Dan Williams45b42332007-07-09 11:56:43 -07004180 pr_debug("Read_old block "
Dan Williamsa4456852007-07-09 11:56:43 -07004181 "%d for Reconstruct\n", i);
4182 set_bit(R5_LOCKED, &dev->flags);
4183 set_bit(R5_Wantread, &dev->flags);
4184 s->locked++;
NeilBrowna9add5d2012-10-31 11:59:09 +11004185 qread++;
Guoqing Jiange3914d52020-07-28 12:01:40 +02004186 } else
Dan Williamsa4456852007-07-09 11:56:43 -07004187 set_bit(STRIPE_DELAYED, &sh->state);
Dan Williamsa4456852007-07-09 11:56:43 -07004188 }
4189 }
Jonathan Brassowe3620a32013-03-07 16:22:01 -06004190 if (rcw && conf->mddev->queue)
NeilBrowna9add5d2012-10-31 11:59:09 +11004191 blk_add_trace_msg(conf->mddev->queue, "raid5 rcw %llu %d %d %d",
4192 (unsigned long long)sh->sector,
4193 rcw, qread, test_bit(STRIPE_DELAYED, &sh->state));
NeilBrownc8ac1802011-07-27 11:00:36 +10004194 }
NeilBrownb1b02fe2015-02-02 10:44:29 +11004195
4196 if (rcw > disks && rmw > disks &&
4197 !test_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
4198 set_bit(STRIPE_DELAYED, &sh->state);
4199
Dan Williamsa4456852007-07-09 11:56:43 -07004200 /* now if nothing is locked, and if we have enough data,
4201 * we can start a write request
4202 */
Dan Williamsf38e1212007-01-02 13:52:30 -07004203 /* since handle_stripe can be called at any time we need to handle the
4204 * case where a compute block operation has been submitted and then a
Dan Williamsac6b53b2009-07-14 13:40:19 -07004205 * subsequent call wants to start a write request. raid_run_ops only
4206 * handles the case where compute block and reconstruct are requested
Dan Williamsf38e1212007-01-02 13:52:30 -07004207 * simultaneously. If this is not the case then new writes need to be
4208 * held off until the compute completes.
4209 */
Dan Williams976ea8d2008-06-28 08:32:03 +10004210 if ((s->req_compute || !test_bit(STRIPE_COMPUTE_RUN, &sh->state)) &&
4211 (s->locked == 0 && (rcw == 0 || rmw == 0) &&
Song Liu1e6d6902016-11-17 15:24:39 -08004212 !test_bit(STRIPE_BIT_DELAY, &sh->state)))
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07004213 schedule_reconstruction(sh, s, rcw == 0, 0);
Song Liud7bd3982016-11-23 22:50:39 -08004214 return 0;
Dan Williamsa4456852007-07-09 11:56:43 -07004215}
4216
NeilBrownd1688a62011-10-11 16:49:52 +11004217static void handle_parity_checks5(struct r5conf *conf, struct stripe_head *sh,
Dan Williamsa4456852007-07-09 11:56:43 -07004218 struct stripe_head_state *s, int disks)
4219{
Dan Williamsecc65c92008-06-28 08:31:57 +10004220 struct r5dev *dev = NULL;
Dan Williamse89f8962007-01-02 13:52:31 -07004221
shli@kernel.org59fc6302014-12-15 12:57:03 +11004222 BUG_ON(sh->batch_head);
Dan Williamsbd2ab672008-04-10 21:29:27 -07004223 set_bit(STRIPE_HANDLE, &sh->state);
4224
Dan Williamsecc65c92008-06-28 08:31:57 +10004225 switch (sh->check_state) {
4226 case check_state_idle:
4227 /* start a new check operation if there are no failures */
Dan Williamsbd2ab672008-04-10 21:29:27 -07004228 if (s->failed == 0) {
Dan Williamsbd2ab672008-04-10 21:29:27 -07004229 BUG_ON(s->uptodate != disks);
Dan Williamsecc65c92008-06-28 08:31:57 +10004230 sh->check_state = check_state_run;
4231 set_bit(STRIPE_OP_CHECK, &s->ops_request);
Dan Williamsbd2ab672008-04-10 21:29:27 -07004232 clear_bit(R5_UPTODATE, &sh->dev[sh->pd_idx].flags);
Dan Williamsbd2ab672008-04-10 21:29:27 -07004233 s->uptodate--;
Dan Williamsecc65c92008-06-28 08:31:57 +10004234 break;
Dan Williamsbd2ab672008-04-10 21:29:27 -07004235 }
NeilBrownf2b3b442011-07-26 11:35:19 +10004236 dev = &sh->dev[s->failed_num[0]];
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05004237 fallthrough;
Dan Williamsecc65c92008-06-28 08:31:57 +10004238 case check_state_compute_result:
4239 sh->check_state = check_state_idle;
4240 if (!dev)
4241 dev = &sh->dev[sh->pd_idx];
4242
4243 /* check that a write has not made the stripe insync */
4244 if (test_bit(STRIPE_INSYNC, &sh->state))
4245 break;
4246
4247 /* either failed parity check, or recovery is happening */
Dan Williamsa4456852007-07-09 11:56:43 -07004248 BUG_ON(!test_bit(R5_UPTODATE, &dev->flags));
4249 BUG_ON(s->uptodate != disks);
4250
4251 set_bit(R5_LOCKED, &dev->flags);
Dan Williamsecc65c92008-06-28 08:31:57 +10004252 s->locked++;
Dan Williamsa4456852007-07-09 11:56:43 -07004253 set_bit(R5_Wantwrite, &dev->flags);
Dan Williams830ea012007-01-02 13:52:31 -07004254
Dan Williamsa4456852007-07-09 11:56:43 -07004255 clear_bit(STRIPE_DEGRADED, &sh->state);
Dan Williamsa4456852007-07-09 11:56:43 -07004256 set_bit(STRIPE_INSYNC, &sh->state);
Dan Williamsecc65c92008-06-28 08:31:57 +10004257 break;
4258 case check_state_run:
4259 break; /* we will be called again upon completion */
4260 case check_state_check_result:
4261 sh->check_state = check_state_idle;
4262
4263 /* if a failure occurred during the check operation, leave
4264 * STRIPE_INSYNC not set and let the stripe be handled again
4265 */
4266 if (s->failed)
4267 break;
4268
4269 /* handle a successful check operation, if parity is correct
4270 * we are done. Otherwise update the mismatch count and repair
4271 * parity if !MD_RECOVERY_CHECK
4272 */
Dan Williamsad283ea2009-08-29 19:09:26 -07004273 if ((sh->ops.zero_sum_result & SUM_CHECK_P_RESULT) == 0)
Dan Williamsecc65c92008-06-28 08:31:57 +10004274 /* parity is correct (on disc,
4275 * not in buffer any more)
4276 */
4277 set_bit(STRIPE_INSYNC, &sh->state);
4278 else {
Yufen Yuc911c462020-07-18 05:29:07 -04004279 atomic64_add(RAID5_STRIPE_SECTORS(conf), &conf->mddev->resync_mismatches);
Nixe1539032017-05-16 10:13:31 +01004280 if (test_bit(MD_RECOVERY_CHECK, &conf->mddev->recovery)) {
Dan Williamsecc65c92008-06-28 08:31:57 +10004281 /* don't try to repair!! */
4282 set_bit(STRIPE_INSYNC, &sh->state);
Nixe1539032017-05-16 10:13:31 +01004283 pr_warn_ratelimited("%s: mismatch sector in range "
4284 "%llu-%llu\n", mdname(conf->mddev),
4285 (unsigned long long) sh->sector,
4286 (unsigned long long) sh->sector +
Yufen Yuc911c462020-07-18 05:29:07 -04004287 RAID5_STRIPE_SECTORS(conf));
Nixe1539032017-05-16 10:13:31 +01004288 } else {
Dan Williamsecc65c92008-06-28 08:31:57 +10004289 sh->check_state = check_state_compute_run;
Dan Williams976ea8d2008-06-28 08:32:03 +10004290 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
Dan Williamsecc65c92008-06-28 08:31:57 +10004291 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
4292 set_bit(R5_Wantcompute,
4293 &sh->dev[sh->pd_idx].flags);
4294 sh->ops.target = sh->pd_idx;
Dan Williamsac6b53b2009-07-14 13:40:19 -07004295 sh->ops.target2 = -1;
Dan Williamsecc65c92008-06-28 08:31:57 +10004296 s->uptodate++;
4297 }
4298 }
4299 break;
4300 case check_state_compute_run:
4301 break;
4302 default:
NeilBrowncc6167b2016-11-02 14:16:50 +11004303 pr_err("%s: unknown check_state: %d sector: %llu\n",
Dan Williamsecc65c92008-06-28 08:31:57 +10004304 __func__, sh->check_state,
4305 (unsigned long long) sh->sector);
4306 BUG();
Dan Williamsa4456852007-07-09 11:56:43 -07004307 }
4308}
4309
NeilBrownd1688a62011-10-11 16:49:52 +11004310static void handle_parity_checks6(struct r5conf *conf, struct stripe_head *sh,
Dan Williams36d1c642009-07-14 11:48:22 -07004311 struct stripe_head_state *s,
NeilBrownf2b3b442011-07-26 11:35:19 +10004312 int disks)
Dan Williamsa4456852007-07-09 11:56:43 -07004313{
Dan Williamsa4456852007-07-09 11:56:43 -07004314 int pd_idx = sh->pd_idx;
NeilBrown34e04e82009-03-31 15:10:16 +11004315 int qd_idx = sh->qd_idx;
Dan Williamsd82dfee2009-07-14 13:40:57 -07004316 struct r5dev *dev;
Dan Williamsa4456852007-07-09 11:56:43 -07004317
shli@kernel.org59fc6302014-12-15 12:57:03 +11004318 BUG_ON(sh->batch_head);
Dan Williamsa4456852007-07-09 11:56:43 -07004319 set_bit(STRIPE_HANDLE, &sh->state);
4320
4321 BUG_ON(s->failed > 2);
Dan Williamsd82dfee2009-07-14 13:40:57 -07004322
Dan Williamsa4456852007-07-09 11:56:43 -07004323 /* Want to check and possibly repair P and Q.
4324 * However there could be one 'failed' device, in which
4325 * case we can only check one of them, possibly using the
4326 * other to generate missing data
4327 */
4328
Dan Williamsd82dfee2009-07-14 13:40:57 -07004329 switch (sh->check_state) {
4330 case check_state_idle:
4331 /* start a new check operation if there are < 2 failures */
NeilBrownf2b3b442011-07-26 11:35:19 +10004332 if (s->failed == s->q_failed) {
Dan Williamsd82dfee2009-07-14 13:40:57 -07004333 /* The only possible failed device holds Q, so it
Dan Williamsa4456852007-07-09 11:56:43 -07004334 * makes sense to check P (If anything else were failed,
4335 * we would have used P to recreate it).
4336 */
Dan Williamsd82dfee2009-07-14 13:40:57 -07004337 sh->check_state = check_state_run;
Dan Williamsa4456852007-07-09 11:56:43 -07004338 }
NeilBrownf2b3b442011-07-26 11:35:19 +10004339 if (!s->q_failed && s->failed < 2) {
Dan Williamsd82dfee2009-07-14 13:40:57 -07004340 /* Q is not failed, and we didn't use it to generate
Dan Williamsa4456852007-07-09 11:56:43 -07004341 * anything, so it makes sense to check it
4342 */
Dan Williamsd82dfee2009-07-14 13:40:57 -07004343 if (sh->check_state == check_state_run)
4344 sh->check_state = check_state_run_pq;
4345 else
4346 sh->check_state = check_state_run_q;
Dan Williamsa4456852007-07-09 11:56:43 -07004347 }
Dan Williams36d1c642009-07-14 11:48:22 -07004348
Dan Williamsd82dfee2009-07-14 13:40:57 -07004349 /* discard potentially stale zero_sum_result */
4350 sh->ops.zero_sum_result = 0;
Dan Williams36d1c642009-07-14 11:48:22 -07004351
Dan Williamsd82dfee2009-07-14 13:40:57 -07004352 if (sh->check_state == check_state_run) {
4353 /* async_xor_zero_sum destroys the contents of P */
4354 clear_bit(R5_UPTODATE, &sh->dev[pd_idx].flags);
4355 s->uptodate--;
Dan Williamsa4456852007-07-09 11:56:43 -07004356 }
Dan Williamsd82dfee2009-07-14 13:40:57 -07004357 if (sh->check_state >= check_state_run &&
4358 sh->check_state <= check_state_run_pq) {
4359 /* async_syndrome_zero_sum preserves P and Q, so
4360 * no need to mark them !uptodate here
4361 */
4362 set_bit(STRIPE_OP_CHECK, &s->ops_request);
4363 break;
4364 }
Dan Williams36d1c642009-07-14 11:48:22 -07004365
Dan Williamsd82dfee2009-07-14 13:40:57 -07004366 /* we have 2-disk failure */
4367 BUG_ON(s->failed != 2);
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05004368 fallthrough;
Dan Williamsd82dfee2009-07-14 13:40:57 -07004369 case check_state_compute_result:
4370 sh->check_state = check_state_idle;
Dan Williams36d1c642009-07-14 11:48:22 -07004371
Dan Williamsd82dfee2009-07-14 13:40:57 -07004372 /* check that a write has not made the stripe insync */
4373 if (test_bit(STRIPE_INSYNC, &sh->state))
4374 break;
Dan Williamsa4456852007-07-09 11:56:43 -07004375
4376 /* now write out any block on a failed drive,
Dan Williamsd82dfee2009-07-14 13:40:57 -07004377 * or P or Q if they were recomputed
Dan Williamsa4456852007-07-09 11:56:43 -07004378 */
Nigel Croxonb2176a12019-04-16 09:50:09 -07004379 dev = NULL;
Dan Williamsa4456852007-07-09 11:56:43 -07004380 if (s->failed == 2) {
NeilBrownf2b3b442011-07-26 11:35:19 +10004381 dev = &sh->dev[s->failed_num[1]];
Dan Williamsa4456852007-07-09 11:56:43 -07004382 s->locked++;
4383 set_bit(R5_LOCKED, &dev->flags);
4384 set_bit(R5_Wantwrite, &dev->flags);
4385 }
4386 if (s->failed >= 1) {
NeilBrownf2b3b442011-07-26 11:35:19 +10004387 dev = &sh->dev[s->failed_num[0]];
Dan Williamsa4456852007-07-09 11:56:43 -07004388 s->locked++;
4389 set_bit(R5_LOCKED, &dev->flags);
4390 set_bit(R5_Wantwrite, &dev->flags);
4391 }
Dan Williamsd82dfee2009-07-14 13:40:57 -07004392 if (sh->ops.zero_sum_result & SUM_CHECK_P_RESULT) {
Dan Williamsa4456852007-07-09 11:56:43 -07004393 dev = &sh->dev[pd_idx];
4394 s->locked++;
4395 set_bit(R5_LOCKED, &dev->flags);
4396 set_bit(R5_Wantwrite, &dev->flags);
4397 }
Dan Williamsd82dfee2009-07-14 13:40:57 -07004398 if (sh->ops.zero_sum_result & SUM_CHECK_Q_RESULT) {
Dan Williamsa4456852007-07-09 11:56:43 -07004399 dev = &sh->dev[qd_idx];
4400 s->locked++;
4401 set_bit(R5_LOCKED, &dev->flags);
4402 set_bit(R5_Wantwrite, &dev->flags);
4403 }
Nigel Croxonb2176a12019-04-16 09:50:09 -07004404 if (WARN_ONCE(dev && !test_bit(R5_UPTODATE, &dev->flags),
4405 "%s: disk%td not up to date\n",
4406 mdname(conf->mddev),
4407 dev - (struct r5dev *) &sh->dev)) {
4408 clear_bit(R5_LOCKED, &dev->flags);
4409 clear_bit(R5_Wantwrite, &dev->flags);
4410 s->locked--;
4411 }
Dan Williamsa4456852007-07-09 11:56:43 -07004412 clear_bit(STRIPE_DEGRADED, &sh->state);
4413
4414 set_bit(STRIPE_INSYNC, &sh->state);
Dan Williamsd82dfee2009-07-14 13:40:57 -07004415 break;
4416 case check_state_run:
4417 case check_state_run_q:
4418 case check_state_run_pq:
4419 break; /* we will be called again upon completion */
4420 case check_state_check_result:
4421 sh->check_state = check_state_idle;
4422
4423 /* handle a successful check operation, if parity is correct
4424 * we are done. Otherwise update the mismatch count and repair
4425 * parity if !MD_RECOVERY_CHECK
4426 */
4427 if (sh->ops.zero_sum_result == 0) {
Song Liua25d8c32019-04-16 09:34:21 -07004428 /* both parities are correct */
4429 if (!s->failed)
4430 set_bit(STRIPE_INSYNC, &sh->state);
4431 else {
4432 /* in contrast to the raid5 case we can validate
4433 * parity, but still have a failure to write
4434 * back
4435 */
4436 sh->check_state = check_state_compute_result;
4437 /* Returning at this point means that we may go
4438 * off and bring p and/or q uptodate again so
4439 * we make sure to check zero_sum_result again
4440 * to verify if p or q need writeback
4441 */
4442 }
Dan Williamsd82dfee2009-07-14 13:40:57 -07004443 } else {
Yufen Yuc911c462020-07-18 05:29:07 -04004444 atomic64_add(RAID5_STRIPE_SECTORS(conf), &conf->mddev->resync_mismatches);
Nixe1539032017-05-16 10:13:31 +01004445 if (test_bit(MD_RECOVERY_CHECK, &conf->mddev->recovery)) {
Dan Williamsd82dfee2009-07-14 13:40:57 -07004446 /* don't try to repair!! */
4447 set_bit(STRIPE_INSYNC, &sh->state);
Nixe1539032017-05-16 10:13:31 +01004448 pr_warn_ratelimited("%s: mismatch sector in range "
4449 "%llu-%llu\n", mdname(conf->mddev),
4450 (unsigned long long) sh->sector,
4451 (unsigned long long) sh->sector +
Yufen Yuc911c462020-07-18 05:29:07 -04004452 RAID5_STRIPE_SECTORS(conf));
Nixe1539032017-05-16 10:13:31 +01004453 } else {
Dan Williamsd82dfee2009-07-14 13:40:57 -07004454 int *target = &sh->ops.target;
4455
4456 sh->ops.target = -1;
4457 sh->ops.target2 = -1;
4458 sh->check_state = check_state_compute_run;
4459 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
4460 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
4461 if (sh->ops.zero_sum_result & SUM_CHECK_P_RESULT) {
4462 set_bit(R5_Wantcompute,
4463 &sh->dev[pd_idx].flags);
4464 *target = pd_idx;
4465 target = &sh->ops.target2;
4466 s->uptodate++;
4467 }
4468 if (sh->ops.zero_sum_result & SUM_CHECK_Q_RESULT) {
4469 set_bit(R5_Wantcompute,
4470 &sh->dev[qd_idx].flags);
4471 *target = qd_idx;
4472 s->uptodate++;
4473 }
4474 }
4475 }
4476 break;
4477 case check_state_compute_run:
4478 break;
4479 default:
NeilBrowncc6167b2016-11-02 14:16:50 +11004480 pr_warn("%s: unknown check_state: %d sector: %llu\n",
4481 __func__, sh->check_state,
4482 (unsigned long long) sh->sector);
Dan Williamsd82dfee2009-07-14 13:40:57 -07004483 BUG();
Dan Williamsa4456852007-07-09 11:56:43 -07004484 }
4485}
4486
NeilBrownd1688a62011-10-11 16:49:52 +11004487static void handle_stripe_expansion(struct r5conf *conf, struct stripe_head *sh)
Dan Williamsa4456852007-07-09 11:56:43 -07004488{
4489 int i;
4490
4491 /* We have read all the blocks in this stripe and now we need to
4492 * copy some of them into a target stripe for expand.
4493 */
Dan Williamsf0a50d32007-01-02 13:52:31 -07004494 struct dma_async_tx_descriptor *tx = NULL;
shli@kernel.org59fc6302014-12-15 12:57:03 +11004495 BUG_ON(sh->batch_head);
Dan Williamsa4456852007-07-09 11:56:43 -07004496 clear_bit(STRIPE_EXPAND_SOURCE, &sh->state);
4497 for (i = 0; i < sh->disks; i++)
NeilBrown34e04e82009-03-31 15:10:16 +11004498 if (i != sh->pd_idx && i != sh->qd_idx) {
NeilBrown911d4ee2009-03-31 14:39:38 +11004499 int dd_idx, j;
Dan Williamsa4456852007-07-09 11:56:43 -07004500 struct stripe_head *sh2;
Dan Williamsa08abd82009-06-03 11:43:59 -07004501 struct async_submit_ctl submit;
Dan Williamsa4456852007-07-09 11:56:43 -07004502
Shaohua Li6d036f72015-08-13 14:31:57 -07004503 sector_t bn = raid5_compute_blocknr(sh, i, 1);
NeilBrown911d4ee2009-03-31 14:39:38 +11004504 sector_t s = raid5_compute_sector(conf, bn, 0,
4505 &dd_idx, NULL);
Shaohua Li6d036f72015-08-13 14:31:57 -07004506 sh2 = raid5_get_active_stripe(conf, s, 0, 1, 1);
Dan Williamsa4456852007-07-09 11:56:43 -07004507 if (sh2 == NULL)
4508 /* so far only the early blocks of this stripe
4509 * have been requested. When later blocks
4510 * get requested, we will try again
4511 */
4512 continue;
4513 if (!test_bit(STRIPE_EXPANDING, &sh2->state) ||
4514 test_bit(R5_Expanded, &sh2->dev[dd_idx].flags)) {
4515 /* must have already done this block */
Shaohua Li6d036f72015-08-13 14:31:57 -07004516 raid5_release_stripe(sh2);
Dan Williamsa4456852007-07-09 11:56:43 -07004517 continue;
4518 }
Dan Williamsf0a50d32007-01-02 13:52:31 -07004519
4520 /* place all the copies on one channel */
Dan Williamsa08abd82009-06-03 11:43:59 -07004521 init_async_submit(&submit, 0, tx, NULL, NULL, NULL);
Dan Williamsf0a50d32007-01-02 13:52:31 -07004522 tx = async_memcpy(sh2->dev[dd_idx].page,
Yufen Yu7aba13b2020-08-20 09:22:06 -04004523 sh->dev[i].page, sh2->dev[dd_idx].offset,
4524 sh->dev[i].offset, RAID5_STRIPE_SIZE(conf),
Dan Williamsa08abd82009-06-03 11:43:59 -07004525 &submit);
Dan Williamsf0a50d32007-01-02 13:52:31 -07004526
Dan Williamsa4456852007-07-09 11:56:43 -07004527 set_bit(R5_Expanded, &sh2->dev[dd_idx].flags);
4528 set_bit(R5_UPTODATE, &sh2->dev[dd_idx].flags);
4529 for (j = 0; j < conf->raid_disks; j++)
4530 if (j != sh2->pd_idx &&
NeilBrown86c374b2011-07-27 11:00:36 +10004531 j != sh2->qd_idx &&
Dan Williamsa4456852007-07-09 11:56:43 -07004532 !test_bit(R5_Expanded, &sh2->dev[j].flags))
4533 break;
4534 if (j == conf->raid_disks) {
4535 set_bit(STRIPE_EXPAND_READY, &sh2->state);
4536 set_bit(STRIPE_HANDLE, &sh2->state);
4537 }
Shaohua Li6d036f72015-08-13 14:31:57 -07004538 raid5_release_stripe(sh2);
Dan Williamsf0a50d32007-01-02 13:52:31 -07004539
Dan Williamsa4456852007-07-09 11:56:43 -07004540 }
NeilBrowna2e08552007-09-11 15:23:36 -07004541 /* done submitting copies, wait for them to complete */
NeilBrown749586b2012-11-20 14:11:15 +11004542 async_tx_quiesce(&tx);
Dan Williamsa4456852007-07-09 11:56:43 -07004543}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004544
4545/*
4546 * handle_stripe - do things to a stripe.
4547 *
NeilBrown9a3e1102011-12-23 10:17:53 +11004548 * We lock the stripe by setting STRIPE_ACTIVE and then examine the
4549 * state of various bits to see what needs to be done.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004550 * Possible results:
NeilBrown9a3e1102011-12-23 10:17:53 +11004551 * return some read requests which now have data
4552 * return some write requests which are safely on storage
Linus Torvalds1da177e2005-04-16 15:20:36 -07004553 * schedule a read on some buffers
4554 * schedule a write of some buffers
4555 * return confirmation of parity correctness
4556 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004557 */
Dan Williamsa4456852007-07-09 11:56:43 -07004558
NeilBrownacfe7262011-07-27 11:00:36 +10004559static void analyse_stripe(struct stripe_head *sh, struct stripe_head_state *s)
NeilBrown16a53ec2006-06-26 00:27:38 -07004560{
NeilBrownd1688a62011-10-11 16:49:52 +11004561 struct r5conf *conf = sh->raid_conf;
NeilBrownf4168852007-02-28 20:11:53 -08004562 int disks = sh->disks;
NeilBrown474af965fe2011-07-27 11:00:36 +10004563 struct r5dev *dev;
4564 int i;
NeilBrown9a3e1102011-12-23 10:17:53 +11004565 int do_recovery = 0;
NeilBrown16a53ec2006-06-26 00:27:38 -07004566
NeilBrownacfe7262011-07-27 11:00:36 +10004567 memset(s, 0, sizeof(*s));
NeilBrown16a53ec2006-06-26 00:27:38 -07004568
shli@kernel.orgdabc4ec2014-12-15 12:57:04 +11004569 s->expanding = test_bit(STRIPE_EXPAND_SOURCE, &sh->state) && !sh->batch_head;
4570 s->expanded = test_bit(STRIPE_EXPAND_READY, &sh->state) && !sh->batch_head;
NeilBrownacfe7262011-07-27 11:00:36 +10004571 s->failed_num[0] = -1;
4572 s->failed_num[1] = -1;
Shaohua Li6e74a9c2015-10-08 21:54:08 -07004573 s->log_failed = r5l_log_disk_error(conf);
NeilBrownacfe7262011-07-27 11:00:36 +10004574
4575 /* Now to look around and see what can be done */
NeilBrown16a53ec2006-06-26 00:27:38 -07004576 rcu_read_lock();
4577 for (i=disks; i--; ) {
NeilBrown3cb03002011-10-11 16:45:26 +11004578 struct md_rdev *rdev;
NeilBrown31c176e2011-07-28 11:39:22 +10004579 sector_t first_bad;
4580 int bad_sectors;
4581 int is_bad = 0;
NeilBrownacfe7262011-07-27 11:00:36 +10004582
NeilBrown16a53ec2006-06-26 00:27:38 -07004583 dev = &sh->dev[i];
NeilBrown16a53ec2006-06-26 00:27:38 -07004584
Dan Williams45b42332007-07-09 11:56:43 -07004585 pr_debug("check %d: state 0x%lx read %p write %p written %p\n",
NeilBrown9a3e1102011-12-23 10:17:53 +11004586 i, dev->flags,
4587 dev->toread, dev->towrite, dev->written);
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07004588 /* maybe we can reply to a read
4589 *
4590 * new wantfill requests are only permitted while
4591 * ops_complete_biofill is guaranteed to be inactive
4592 */
4593 if (test_bit(R5_UPTODATE, &dev->flags) && dev->toread &&
4594 !test_bit(STRIPE_BIOFILL_RUN, &sh->state))
4595 set_bit(R5_Wantfill, &dev->flags);
NeilBrown16a53ec2006-06-26 00:27:38 -07004596
4597 /* now count some things */
NeilBrowncc940152011-07-26 11:35:35 +10004598 if (test_bit(R5_LOCKED, &dev->flags))
4599 s->locked++;
4600 if (test_bit(R5_UPTODATE, &dev->flags))
4601 s->uptodate++;
Dan Williams2d6e4ec2009-09-16 12:11:54 -07004602 if (test_bit(R5_Wantcompute, &dev->flags)) {
NeilBrowncc940152011-07-26 11:35:35 +10004603 s->compute++;
4604 BUG_ON(s->compute > 2);
Dan Williams2d6e4ec2009-09-16 12:11:54 -07004605 }
NeilBrown16a53ec2006-06-26 00:27:38 -07004606
NeilBrownacfe7262011-07-27 11:00:36 +10004607 if (test_bit(R5_Wantfill, &dev->flags))
NeilBrowncc940152011-07-26 11:35:35 +10004608 s->to_fill++;
NeilBrownacfe7262011-07-27 11:00:36 +10004609 else if (dev->toread)
NeilBrowncc940152011-07-26 11:35:35 +10004610 s->to_read++;
NeilBrown16a53ec2006-06-26 00:27:38 -07004611 if (dev->towrite) {
NeilBrowncc940152011-07-26 11:35:35 +10004612 s->to_write++;
NeilBrown16a53ec2006-06-26 00:27:38 -07004613 if (!test_bit(R5_OVERWRITE, &dev->flags))
NeilBrowncc940152011-07-26 11:35:35 +10004614 s->non_overwrite++;
NeilBrown16a53ec2006-06-26 00:27:38 -07004615 }
Dan Williamsa4456852007-07-09 11:56:43 -07004616 if (dev->written)
NeilBrowncc940152011-07-26 11:35:35 +10004617 s->written++;
NeilBrown14a75d32011-12-23 10:17:52 +11004618 /* Prefer to use the replacement for reads, but only
4619 * if it is recovered enough and has no bad blocks.
4620 */
4621 rdev = rcu_dereference(conf->disks[i].replacement);
4622 if (rdev && !test_bit(Faulty, &rdev->flags) &&
Yufen Yuc911c462020-07-18 05:29:07 -04004623 rdev->recovery_offset >= sh->sector + RAID5_STRIPE_SECTORS(conf) &&
4624 !is_badblock(rdev, sh->sector, RAID5_STRIPE_SECTORS(conf),
NeilBrown14a75d32011-12-23 10:17:52 +11004625 &first_bad, &bad_sectors))
4626 set_bit(R5_ReadRepl, &dev->flags);
4627 else {
NeilBrowne6030cb2015-07-17 13:26:23 +10004628 if (rdev && !test_bit(Faulty, &rdev->flags))
NeilBrown9a3e1102011-12-23 10:17:53 +11004629 set_bit(R5_NeedReplace, &dev->flags);
NeilBrowne6030cb2015-07-17 13:26:23 +10004630 else
4631 clear_bit(R5_NeedReplace, &dev->flags);
NeilBrown14a75d32011-12-23 10:17:52 +11004632 rdev = rcu_dereference(conf->disks[i].rdev);
4633 clear_bit(R5_ReadRepl, &dev->flags);
4634 }
NeilBrown9283d8c2011-12-08 16:27:57 +11004635 if (rdev && test_bit(Faulty, &rdev->flags))
4636 rdev = NULL;
NeilBrown31c176e2011-07-28 11:39:22 +10004637 if (rdev) {
Yufen Yuc911c462020-07-18 05:29:07 -04004638 is_bad = is_badblock(rdev, sh->sector, RAID5_STRIPE_SECTORS(conf),
NeilBrown31c176e2011-07-28 11:39:22 +10004639 &first_bad, &bad_sectors);
4640 if (s->blocked_rdev == NULL
4641 && (test_bit(Blocked, &rdev->flags)
4642 || is_bad < 0)) {
4643 if (is_bad < 0)
4644 set_bit(BlockedBadBlocks,
4645 &rdev->flags);
4646 s->blocked_rdev = rdev;
4647 atomic_inc(&rdev->nr_pending);
4648 }
Dan Williams6bfe0b42008-04-30 00:52:32 -07004649 }
NeilBrown415e72d2010-06-17 17:25:21 +10004650 clear_bit(R5_Insync, &dev->flags);
4651 if (!rdev)
4652 /* Not in-sync */;
NeilBrown31c176e2011-07-28 11:39:22 +10004653 else if (is_bad) {
4654 /* also not in-sync */
NeilBrown18b98372012-04-01 23:48:38 +10004655 if (!test_bit(WriteErrorSeen, &rdev->flags) &&
4656 test_bit(R5_UPTODATE, &dev->flags)) {
NeilBrown31c176e2011-07-28 11:39:22 +10004657 /* treat as in-sync, but with a read error
4658 * which we can now try to correct
4659 */
4660 set_bit(R5_Insync, &dev->flags);
4661 set_bit(R5_ReadError, &dev->flags);
4662 }
4663 } else if (test_bit(In_sync, &rdev->flags))
NeilBrown415e72d2010-06-17 17:25:21 +10004664 set_bit(R5_Insync, &dev->flags);
Yufen Yuc911c462020-07-18 05:29:07 -04004665 else if (sh->sector + RAID5_STRIPE_SECTORS(conf) <= rdev->recovery_offset)
NeilBrown415e72d2010-06-17 17:25:21 +10004666 /* in sync if before recovery_offset */
NeilBrown30d7a482011-12-23 09:57:00 +11004667 set_bit(R5_Insync, &dev->flags);
4668 else if (test_bit(R5_UPTODATE, &dev->flags) &&
4669 test_bit(R5_Expanded, &dev->flags))
4670 /* If we've reshaped into here, we assume it is Insync.
4671 * We will shortly update recovery_offset to make
4672 * it official.
4673 */
4674 set_bit(R5_Insync, &dev->flags);
4675
NeilBrown1cc03eb2014-01-06 13:19:42 +11004676 if (test_bit(R5_WriteError, &dev->flags)) {
NeilBrown14a75d32011-12-23 10:17:52 +11004677 /* This flag does not apply to '.replacement'
4678 * only to .rdev, so make sure to check that*/
4679 struct md_rdev *rdev2 = rcu_dereference(
4680 conf->disks[i].rdev);
4681 if (rdev2 == rdev)
4682 clear_bit(R5_Insync, &dev->flags);
4683 if (rdev2 && !test_bit(Faulty, &rdev2->flags)) {
NeilBrownbc2607f2011-07-28 11:39:22 +10004684 s->handle_bad_blocks = 1;
NeilBrown14a75d32011-12-23 10:17:52 +11004685 atomic_inc(&rdev2->nr_pending);
NeilBrownbc2607f2011-07-28 11:39:22 +10004686 } else
4687 clear_bit(R5_WriteError, &dev->flags);
4688 }
NeilBrown1cc03eb2014-01-06 13:19:42 +11004689 if (test_bit(R5_MadeGood, &dev->flags)) {
NeilBrown14a75d32011-12-23 10:17:52 +11004690 /* This flag does not apply to '.replacement'
4691 * only to .rdev, so make sure to check that*/
4692 struct md_rdev *rdev2 = rcu_dereference(
4693 conf->disks[i].rdev);
4694 if (rdev2 && !test_bit(Faulty, &rdev2->flags)) {
NeilBrownb84db562011-07-28 11:39:23 +10004695 s->handle_bad_blocks = 1;
NeilBrown14a75d32011-12-23 10:17:52 +11004696 atomic_inc(&rdev2->nr_pending);
NeilBrownb84db562011-07-28 11:39:23 +10004697 } else
4698 clear_bit(R5_MadeGood, &dev->flags);
4699 }
NeilBrown977df362011-12-23 10:17:53 +11004700 if (test_bit(R5_MadeGoodRepl, &dev->flags)) {
4701 struct md_rdev *rdev2 = rcu_dereference(
4702 conf->disks[i].replacement);
4703 if (rdev2 && !test_bit(Faulty, &rdev2->flags)) {
4704 s->handle_bad_blocks = 1;
4705 atomic_inc(&rdev2->nr_pending);
4706 } else
4707 clear_bit(R5_MadeGoodRepl, &dev->flags);
4708 }
NeilBrown415e72d2010-06-17 17:25:21 +10004709 if (!test_bit(R5_Insync, &dev->flags)) {
NeilBrown16a53ec2006-06-26 00:27:38 -07004710 /* The ReadError flag will just be confusing now */
4711 clear_bit(R5_ReadError, &dev->flags);
4712 clear_bit(R5_ReWrite, &dev->flags);
4713 }
NeilBrown415e72d2010-06-17 17:25:21 +10004714 if (test_bit(R5_ReadError, &dev->flags))
4715 clear_bit(R5_Insync, &dev->flags);
4716 if (!test_bit(R5_Insync, &dev->flags)) {
NeilBrowncc940152011-07-26 11:35:35 +10004717 if (s->failed < 2)
4718 s->failed_num[s->failed] = i;
4719 s->failed++;
NeilBrown9a3e1102011-12-23 10:17:53 +11004720 if (rdev && !test_bit(Faulty, &rdev->flags))
4721 do_recovery = 1;
BingJing Changd63e2fc2018-08-01 17:08:36 +08004722 else if (!rdev) {
4723 rdev = rcu_dereference(
4724 conf->disks[i].replacement);
4725 if (rdev && !test_bit(Faulty, &rdev->flags))
4726 do_recovery = 1;
4727 }
NeilBrown415e72d2010-06-17 17:25:21 +10004728 }
Song Liu2ded3702016-11-17 15:24:38 -08004729
4730 if (test_bit(R5_InJournal, &dev->flags))
4731 s->injournal++;
Song Liu1e6d6902016-11-17 15:24:39 -08004732 if (test_bit(R5_InJournal, &dev->flags) && dev->written)
4733 s->just_cached++;
NeilBrown16a53ec2006-06-26 00:27:38 -07004734 }
NeilBrown9a3e1102011-12-23 10:17:53 +11004735 if (test_bit(STRIPE_SYNCING, &sh->state)) {
4736 /* If there is a failed device being replaced,
4737 * we must be recovering.
4738 * else if we are after recovery_cp, we must be syncing
majianpengc6d2e082012-04-02 01:16:59 +10004739 * else if MD_RECOVERY_REQUESTED is set, we also are syncing.
NeilBrown9a3e1102011-12-23 10:17:53 +11004740 * else we can only be replacing
4741 * sync and recovery both need to read all devices, and so
4742 * use the same flag.
4743 */
4744 if (do_recovery ||
majianpengc6d2e082012-04-02 01:16:59 +10004745 sh->sector >= conf->mddev->recovery_cp ||
4746 test_bit(MD_RECOVERY_REQUESTED, &(conf->mddev->recovery)))
NeilBrown9a3e1102011-12-23 10:17:53 +11004747 s->syncing = 1;
4748 else
4749 s->replacing = 1;
4750 }
NeilBrown16a53ec2006-06-26 00:27:38 -07004751 rcu_read_unlock();
NeilBrowncc940152011-07-26 11:35:35 +10004752}
NeilBrownf4168852007-02-28 20:11:53 -08004753
Guoqing Jiangcb9902d2020-06-16 11:25:51 +02004754/*
4755 * Return '1' if this is a member of batch, or '0' if it is a lone stripe or
4756 * a head which can now be handled.
4757 */
shli@kernel.org59fc6302014-12-15 12:57:03 +11004758static int clear_batch_ready(struct stripe_head *sh)
4759{
4760 struct stripe_head *tmp;
4761 if (!test_and_clear_bit(STRIPE_BATCH_READY, &sh->state))
NeilBrownb15a9db2015-05-22 15:20:04 +10004762 return (sh->batch_head && sh->batch_head != sh);
shli@kernel.org59fc6302014-12-15 12:57:03 +11004763 spin_lock(&sh->stripe_lock);
4764 if (!sh->batch_head) {
4765 spin_unlock(&sh->stripe_lock);
4766 return 0;
4767 }
4768
4769 /*
4770 * this stripe could be added to a batch list before we check
4771 * BATCH_READY, skips it
4772 */
4773 if (sh->batch_head != sh) {
4774 spin_unlock(&sh->stripe_lock);
4775 return 1;
4776 }
4777 spin_lock(&sh->batch_lock);
4778 list_for_each_entry(tmp, &sh->batch_list, batch_list)
4779 clear_bit(STRIPE_BATCH_READY, &tmp->state);
4780 spin_unlock(&sh->batch_lock);
4781 spin_unlock(&sh->stripe_lock);
4782
4783 /*
4784 * BATCH_READY is cleared, no new stripes can be added.
4785 * batch_list can be accessed without lock
4786 */
4787 return 0;
4788}
4789
NeilBrown3960ce72015-05-21 12:20:36 +10004790static void break_stripe_batch_list(struct stripe_head *head_sh,
4791 unsigned long handle_flags)
shli@kernel.org72ac7332014-12-15 12:57:03 +11004792{
NeilBrown4e3d62f2015-05-21 11:50:16 +10004793 struct stripe_head *sh, *next;
shli@kernel.org72ac7332014-12-15 12:57:03 +11004794 int i;
NeilBrownfb642b92015-05-21 12:00:47 +10004795 int do_wakeup = 0;
shli@kernel.org72ac7332014-12-15 12:57:03 +11004796
NeilBrownbb270512015-05-08 18:19:40 +10004797 list_for_each_entry_safe(sh, next, &head_sh->batch_list, batch_list) {
4798
shli@kernel.org72ac7332014-12-15 12:57:03 +11004799 list_del_init(&sh->batch_list);
4800
Shaohua Lifb3229d2016-03-09 10:08:38 -08004801 WARN_ONCE(sh->state & ((1 << STRIPE_ACTIVE) |
NeilBrown1b956f72015-05-21 12:40:26 +10004802 (1 << STRIPE_SYNCING) |
4803 (1 << STRIPE_REPLACED) |
NeilBrown1b956f72015-05-21 12:40:26 +10004804 (1 << STRIPE_DELAYED) |
4805 (1 << STRIPE_BIT_DELAY) |
4806 (1 << STRIPE_FULL_WRITE) |
4807 (1 << STRIPE_BIOFILL_RUN) |
4808 (1 << STRIPE_COMPUTE_RUN) |
NeilBrown1b956f72015-05-21 12:40:26 +10004809 (1 << STRIPE_DISCARD) |
4810 (1 << STRIPE_BATCH_READY) |
4811 (1 << STRIPE_BATCH_ERR) |
Shaohua Lifb3229d2016-03-09 10:08:38 -08004812 (1 << STRIPE_BITMAP_PENDING)),
4813 "stripe state: %lx\n", sh->state);
4814 WARN_ONCE(head_sh->state & ((1 << STRIPE_DISCARD) |
4815 (1 << STRIPE_REPLACED)),
4816 "head stripe state: %lx\n", head_sh->state);
NeilBrown1b956f72015-05-21 12:40:26 +10004817
4818 set_mask_bits(&sh->state, ~(STRIPE_EXPAND_SYNC_FLAGS |
NeilBrown550da242016-03-09 12:58:25 +11004819 (1 << STRIPE_PREREAD_ACTIVE) |
Dennis Yang184a09e2017-09-06 11:02:35 +08004820 (1 << STRIPE_DEGRADED) |
4821 (1 << STRIPE_ON_UNPLUG_LIST)),
NeilBrown1b956f72015-05-21 12:40:26 +10004822 head_sh->state & (1 << STRIPE_INSYNC));
4823
shli@kernel.org72ac7332014-12-15 12:57:03 +11004824 sh->check_state = head_sh->check_state;
4825 sh->reconstruct_state = head_sh->reconstruct_state;
Amy Chiang448ec632018-05-16 18:59:35 +08004826 spin_lock_irq(&sh->stripe_lock);
4827 sh->batch_head = NULL;
4828 spin_unlock_irq(&sh->stripe_lock);
NeilBrownfb642b92015-05-21 12:00:47 +10004829 for (i = 0; i < sh->disks; i++) {
4830 if (test_and_clear_bit(R5_Overlap, &sh->dev[i].flags))
4831 do_wakeup = 1;
shli@kernel.org72ac7332014-12-15 12:57:03 +11004832 sh->dev[i].flags = head_sh->dev[i].flags &
4833 (~((1 << R5_WriteError) | (1 << R5_Overlap)));
NeilBrownfb642b92015-05-21 12:00:47 +10004834 }
NeilBrown3960ce72015-05-21 12:20:36 +10004835 if (handle_flags == 0 ||
4836 sh->state & handle_flags)
4837 set_bit(STRIPE_HANDLE, &sh->state);
Shaohua Li6d036f72015-08-13 14:31:57 -07004838 raid5_release_stripe(sh);
shli@kernel.org72ac7332014-12-15 12:57:03 +11004839 }
NeilBrownfb642b92015-05-21 12:00:47 +10004840 spin_lock_irq(&head_sh->stripe_lock);
4841 head_sh->batch_head = NULL;
4842 spin_unlock_irq(&head_sh->stripe_lock);
4843 for (i = 0; i < head_sh->disks; i++)
4844 if (test_and_clear_bit(R5_Overlap, &head_sh->dev[i].flags))
4845 do_wakeup = 1;
NeilBrown3960ce72015-05-21 12:20:36 +10004846 if (head_sh->state & handle_flags)
4847 set_bit(STRIPE_HANDLE, &head_sh->state);
NeilBrownfb642b92015-05-21 12:00:47 +10004848
4849 if (do_wakeup)
4850 wake_up(&head_sh->raid_conf->wait_for_overlap);
shli@kernel.org72ac7332014-12-15 12:57:03 +11004851}
4852
NeilBrowncc940152011-07-26 11:35:35 +10004853static void handle_stripe(struct stripe_head *sh)
4854{
4855 struct stripe_head_state s;
NeilBrownd1688a62011-10-11 16:49:52 +11004856 struct r5conf *conf = sh->raid_conf;
NeilBrown3687c062011-07-27 11:00:36 +10004857 int i;
NeilBrown84789552011-07-27 11:00:36 +10004858 int prexor;
4859 int disks = sh->disks;
NeilBrown474af965fe2011-07-27 11:00:36 +10004860 struct r5dev *pdev, *qdev;
NeilBrowncc940152011-07-26 11:35:35 +10004861
4862 clear_bit(STRIPE_HANDLE, &sh->state);
Guoqing Jianga377a472020-06-16 11:25:50 +02004863
4864 /*
4865 * handle_stripe should not continue handle the batched stripe, only
4866 * the head of batch list or lone stripe can continue. Otherwise we
4867 * could see break_stripe_batch_list warns about the STRIPE_ACTIVE
4868 * is set for the batched stripe.
4869 */
4870 if (clear_batch_ready(sh))
4871 return;
4872
Dan Williams257a4b42011-11-08 16:22:06 +11004873 if (test_and_set_bit_lock(STRIPE_ACTIVE, &sh->state)) {
NeilBrowncc940152011-07-26 11:35:35 +10004874 /* already being handled, ensure it gets handled
4875 * again when current action finishes */
4876 set_bit(STRIPE_HANDLE, &sh->state);
4877 return;
4878 }
4879
NeilBrown4e3d62f2015-05-21 11:50:16 +10004880 if (test_and_clear_bit(STRIPE_BATCH_ERR, &sh->state))
NeilBrown3960ce72015-05-21 12:20:36 +10004881 break_stripe_batch_list(sh, 0);
shli@kernel.org72ac7332014-12-15 12:57:03 +11004882
shli@kernel.orgdabc4ec2014-12-15 12:57:04 +11004883 if (test_bit(STRIPE_SYNC_REQUESTED, &sh->state) && !sh->batch_head) {
NeilBrownf8dfcff2013-03-12 12:18:06 +11004884 spin_lock(&sh->stripe_lock);
Song Liu5ddf0442017-05-11 17:03:44 -07004885 /*
4886 * Cannot process 'sync' concurrently with 'discard'.
4887 * Flush data in r5cache before 'sync'.
4888 */
4889 if (!test_bit(STRIPE_R5C_PARTIAL_STRIPE, &sh->state) &&
4890 !test_bit(STRIPE_R5C_FULL_STRIPE, &sh->state) &&
4891 !test_bit(STRIPE_DISCARD, &sh->state) &&
NeilBrownf8dfcff2013-03-12 12:18:06 +11004892 test_and_clear_bit(STRIPE_SYNC_REQUESTED, &sh->state)) {
4893 set_bit(STRIPE_SYNCING, &sh->state);
4894 clear_bit(STRIPE_INSYNC, &sh->state);
NeilBrownf94c0b62013-07-22 12:57:21 +10004895 clear_bit(STRIPE_REPLACED, &sh->state);
NeilBrownf8dfcff2013-03-12 12:18:06 +11004896 }
4897 spin_unlock(&sh->stripe_lock);
NeilBrowncc940152011-07-26 11:35:35 +10004898 }
4899 clear_bit(STRIPE_DELAYED, &sh->state);
4900
4901 pr_debug("handling stripe %llu, state=%#lx cnt=%d, "
4902 "pd_idx=%d, qd_idx=%d\n, check:%d, reconstruct:%d\n",
4903 (unsigned long long)sh->sector, sh->state,
4904 atomic_read(&sh->count), sh->pd_idx, sh->qd_idx,
4905 sh->check_state, sh->reconstruct_state);
NeilBrowncc940152011-07-26 11:35:35 +10004906
NeilBrownacfe7262011-07-27 11:00:36 +10004907 analyse_stripe(sh, &s);
NeilBrownc5a31002011-07-27 11:00:36 +10004908
Shaohua Lib70abcb2015-08-13 14:31:58 -07004909 if (test_bit(STRIPE_LOG_TRAPPED, &sh->state))
4910 goto finish;
4911
NeilBrown16d997b2017-03-15 14:05:12 +11004912 if (s.handle_bad_blocks ||
4913 test_bit(MD_SB_CHANGE_PENDING, &conf->mddev->sb_flags)) {
NeilBrownbc2607f2011-07-28 11:39:22 +10004914 set_bit(STRIPE_HANDLE, &sh->state);
4915 goto finish;
4916 }
4917
NeilBrown474af965fe2011-07-27 11:00:36 +10004918 if (unlikely(s.blocked_rdev)) {
4919 if (s.syncing || s.expanding || s.expanded ||
NeilBrown9a3e1102011-12-23 10:17:53 +11004920 s.replacing || s.to_write || s.written) {
NeilBrown474af965fe2011-07-27 11:00:36 +10004921 set_bit(STRIPE_HANDLE, &sh->state);
4922 goto finish;
4923 }
4924 /* There is nothing for the blocked_rdev to block */
4925 rdev_dec_pending(s.blocked_rdev, conf->mddev);
4926 s.blocked_rdev = NULL;
4927 }
4928
4929 if (s.to_fill && !test_bit(STRIPE_BIOFILL_RUN, &sh->state)) {
4930 set_bit(STRIPE_OP_BIOFILL, &s.ops_request);
4931 set_bit(STRIPE_BIOFILL_RUN, &sh->state);
4932 }
4933
4934 pr_debug("locked=%d uptodate=%d to_read=%d"
4935 " to_write=%d failed=%d failed_num=%d,%d\n",
4936 s.locked, s.uptodate, s.to_read, s.to_write, s.failed,
4937 s.failed_num[0], s.failed_num[1]);
Song Liu70d466f2017-05-11 15:28:28 -07004938 /*
4939 * check if the array has lost more than max_degraded devices and,
NeilBrown474af965fe2011-07-27 11:00:36 +10004940 * if so, some requests might need to be failed.
Song Liu70d466f2017-05-11 15:28:28 -07004941 *
4942 * When journal device failed (log_failed), we will only process
4943 * the stripe if there is data need write to raid disks
NeilBrown474af965fe2011-07-27 11:00:36 +10004944 */
Song Liu70d466f2017-05-11 15:28:28 -07004945 if (s.failed > conf->max_degraded ||
4946 (s.log_failed && s.injournal == 0)) {
NeilBrown9a3f5302011-11-08 16:22:01 +11004947 sh->check_state = 0;
4948 sh->reconstruct_state = 0;
NeilBrown626f2092015-05-22 14:03:10 +10004949 break_stripe_batch_list(sh, 0);
NeilBrown9a3f5302011-11-08 16:22:01 +11004950 if (s.to_read+s.to_write+s.written)
NeilBrownbd83d0a2017-03-15 14:05:12 +11004951 handle_failed_stripe(conf, sh, &s, disks);
NeilBrown9a3e1102011-12-23 10:17:53 +11004952 if (s.syncing + s.replacing)
NeilBrown9a3f5302011-11-08 16:22:01 +11004953 handle_failed_sync(conf, sh, &s);
4954 }
NeilBrown474af965fe2011-07-27 11:00:36 +10004955
NeilBrown84789552011-07-27 11:00:36 +10004956 /* Now we check to see if any write operations have recently
4957 * completed
4958 */
4959 prexor = 0;
4960 if (sh->reconstruct_state == reconstruct_state_prexor_drain_result)
4961 prexor = 1;
4962 if (sh->reconstruct_state == reconstruct_state_drain_result ||
4963 sh->reconstruct_state == reconstruct_state_prexor_drain_result) {
4964 sh->reconstruct_state = reconstruct_state_idle;
4965
4966 /* All the 'written' buffers and the parity block are ready to
4967 * be written back to disk
4968 */
Shaohua Li9e4447682012-10-11 13:49:49 +11004969 BUG_ON(!test_bit(R5_UPTODATE, &sh->dev[sh->pd_idx].flags) &&
4970 !test_bit(R5_Discard, &sh->dev[sh->pd_idx].flags));
NeilBrown84789552011-07-27 11:00:36 +10004971 BUG_ON(sh->qd_idx >= 0 &&
Shaohua Li9e4447682012-10-11 13:49:49 +11004972 !test_bit(R5_UPTODATE, &sh->dev[sh->qd_idx].flags) &&
4973 !test_bit(R5_Discard, &sh->dev[sh->qd_idx].flags));
NeilBrown84789552011-07-27 11:00:36 +10004974 for (i = disks; i--; ) {
4975 struct r5dev *dev = &sh->dev[i];
4976 if (test_bit(R5_LOCKED, &dev->flags) &&
4977 (i == sh->pd_idx || i == sh->qd_idx ||
Song Liu1e6d6902016-11-17 15:24:39 -08004978 dev->written || test_bit(R5_InJournal,
4979 &dev->flags))) {
NeilBrown84789552011-07-27 11:00:36 +10004980 pr_debug("Writing block %d\n", i);
4981 set_bit(R5_Wantwrite, &dev->flags);
4982 if (prexor)
4983 continue;
NeilBrown9c4bdf62014-08-13 09:57:07 +10004984 if (s.failed > 1)
4985 continue;
NeilBrown84789552011-07-27 11:00:36 +10004986 if (!test_bit(R5_Insync, &dev->flags) ||
4987 ((i == sh->pd_idx || i == sh->qd_idx) &&
4988 s.failed == 0))
4989 set_bit(STRIPE_INSYNC, &sh->state);
4990 }
4991 }
4992 if (test_and_clear_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
4993 s.dec_preread_active = 1;
4994 }
4995
NeilBrownef5b7c62012-11-22 09:13:36 +11004996 /*
4997 * might be able to return some write requests if the parity blocks
4998 * are safe, or on a failed drive
4999 */
5000 pdev = &sh->dev[sh->pd_idx];
5001 s.p_failed = (s.failed >= 1 && s.failed_num[0] == sh->pd_idx)
5002 || (s.failed >= 2 && s.failed_num[1] == sh->pd_idx);
5003 qdev = &sh->dev[sh->qd_idx];
5004 s.q_failed = (s.failed >= 1 && s.failed_num[0] == sh->qd_idx)
5005 || (s.failed >= 2 && s.failed_num[1] == sh->qd_idx)
5006 || conf->level < 6;
5007
5008 if (s.written &&
5009 (s.p_failed || ((test_bit(R5_Insync, &pdev->flags)
5010 && !test_bit(R5_LOCKED, &pdev->flags)
5011 && (test_bit(R5_UPTODATE, &pdev->flags) ||
5012 test_bit(R5_Discard, &pdev->flags))))) &&
5013 (s.q_failed || ((test_bit(R5_Insync, &qdev->flags)
5014 && !test_bit(R5_LOCKED, &qdev->flags)
5015 && (test_bit(R5_UPTODATE, &qdev->flags) ||
5016 test_bit(R5_Discard, &qdev->flags))))))
NeilBrownbd83d0a2017-03-15 14:05:12 +11005017 handle_stripe_clean_event(conf, sh, disks);
NeilBrownef5b7c62012-11-22 09:13:36 +11005018
Song Liu1e6d6902016-11-17 15:24:39 -08005019 if (s.just_cached)
NeilBrownbd83d0a2017-03-15 14:05:12 +11005020 r5c_handle_cached_data_endio(conf, sh, disks);
Artur Paszkiewiczff875732017-03-09 09:59:58 +01005021 log_stripe_write_finished(sh);
Song Liu1e6d6902016-11-17 15:24:39 -08005022
NeilBrownef5b7c62012-11-22 09:13:36 +11005023 /* Now we might consider reading some blocks, either to check/generate
5024 * parity, or to satisfy requests
5025 * or to load a block that is being partially written.
5026 */
5027 if (s.to_read || s.non_overwrite
ChangSyun Penga1c6ae32020-07-31 17:50:17 +08005028 || (s.to_write && s.failed)
NeilBrownef5b7c62012-11-22 09:13:36 +11005029 || (s.syncing && (s.uptodate + s.compute < disks))
5030 || s.replacing
5031 || s.expanding)
5032 handle_stripe_fill(sh, &s, disks);
5033
Song Liu2ded3702016-11-17 15:24:38 -08005034 /*
5035 * When the stripe finishes full journal write cycle (write to journal
5036 * and raid disk), this is the clean up procedure so it is ready for
5037 * next operation.
5038 */
5039 r5c_finish_stripe_write_out(conf, sh, &s);
5040
5041 /*
5042 * Now to consider new write requests, cache write back and what else,
5043 * if anything should be read. We do not handle new writes when:
NeilBrown84789552011-07-27 11:00:36 +10005044 * 1/ A 'write' operation (copy+xor) is already in flight.
5045 * 2/ A 'check' operation is in flight, as it may clobber the parity
5046 * block.
Song Liu2ded3702016-11-17 15:24:38 -08005047 * 3/ A r5c cache log write is in flight.
NeilBrown84789552011-07-27 11:00:36 +10005048 */
Song Liu2ded3702016-11-17 15:24:38 -08005049
5050 if (!sh->reconstruct_state && !sh->check_state && !sh->log_io) {
5051 if (!r5c_is_writeback(conf->log)) {
5052 if (s.to_write)
5053 handle_stripe_dirtying(conf, sh, &s, disks);
5054 } else { /* write back cache */
5055 int ret = 0;
5056
5057 /* First, try handle writes in caching phase */
5058 if (s.to_write)
5059 ret = r5c_try_caching_write(conf, sh, &s,
5060 disks);
5061 /*
5062 * If caching phase failed: ret == -EAGAIN
5063 * OR
5064 * stripe under reclaim: !caching && injournal
5065 *
5066 * fall back to handle_stripe_dirtying()
5067 */
5068 if (ret == -EAGAIN ||
5069 /* stripe under reclaim: !caching && injournal */
5070 (!test_bit(STRIPE_R5C_CACHING, &sh->state) &&
Song Liud7bd3982016-11-23 22:50:39 -08005071 s.injournal > 0)) {
5072 ret = handle_stripe_dirtying(conf, sh, &s,
5073 disks);
5074 if (ret == -EAGAIN)
5075 goto finish;
5076 }
Song Liu2ded3702016-11-17 15:24:38 -08005077 }
5078 }
NeilBrown84789552011-07-27 11:00:36 +10005079
5080 /* maybe we need to check and possibly fix the parity for this stripe
5081 * Any reads will already have been scheduled, so we just see if enough
5082 * data is available. The parity check is held off while parity
5083 * dependent operations are in flight.
5084 */
5085 if (sh->check_state ||
5086 (s.syncing && s.locked == 0 &&
5087 !test_bit(STRIPE_COMPUTE_RUN, &sh->state) &&
5088 !test_bit(STRIPE_INSYNC, &sh->state))) {
5089 if (conf->level == 6)
5090 handle_parity_checks6(conf, sh, &s, disks);
5091 else
5092 handle_parity_checks5(conf, sh, &s, disks);
5093 }
NeilBrownc5a31002011-07-27 11:00:36 +10005094
NeilBrownf94c0b62013-07-22 12:57:21 +10005095 if ((s.replacing || s.syncing) && s.locked == 0
5096 && !test_bit(STRIPE_COMPUTE_RUN, &sh->state)
5097 && !test_bit(STRIPE_REPLACED, &sh->state)) {
NeilBrown9a3e1102011-12-23 10:17:53 +11005098 /* Write out to replacement devices where possible */
5099 for (i = 0; i < conf->raid_disks; i++)
NeilBrownf94c0b62013-07-22 12:57:21 +10005100 if (test_bit(R5_NeedReplace, &sh->dev[i].flags)) {
5101 WARN_ON(!test_bit(R5_UPTODATE, &sh->dev[i].flags));
NeilBrown9a3e1102011-12-23 10:17:53 +11005102 set_bit(R5_WantReplace, &sh->dev[i].flags);
5103 set_bit(R5_LOCKED, &sh->dev[i].flags);
5104 s.locked++;
5105 }
NeilBrownf94c0b62013-07-22 12:57:21 +10005106 if (s.replacing)
5107 set_bit(STRIPE_INSYNC, &sh->state);
5108 set_bit(STRIPE_REPLACED, &sh->state);
NeilBrown9a3e1102011-12-23 10:17:53 +11005109 }
5110 if ((s.syncing || s.replacing) && s.locked == 0 &&
NeilBrownf94c0b62013-07-22 12:57:21 +10005111 !test_bit(STRIPE_COMPUTE_RUN, &sh->state) &&
NeilBrown9a3e1102011-12-23 10:17:53 +11005112 test_bit(STRIPE_INSYNC, &sh->state)) {
Yufen Yuc911c462020-07-18 05:29:07 -04005113 md_done_sync(conf->mddev, RAID5_STRIPE_SECTORS(conf), 1);
NeilBrownc5a31002011-07-27 11:00:36 +10005114 clear_bit(STRIPE_SYNCING, &sh->state);
NeilBrownf8dfcff2013-03-12 12:18:06 +11005115 if (test_and_clear_bit(R5_Overlap, &sh->dev[sh->pd_idx].flags))
5116 wake_up(&conf->wait_for_overlap);
NeilBrownc5a31002011-07-27 11:00:36 +10005117 }
5118
5119 /* If the failed drives are just a ReadError, then we might need
5120 * to progress the repair/check process
5121 */
5122 if (s.failed <= conf->max_degraded && !conf->mddev->ro)
5123 for (i = 0; i < s.failed; i++) {
5124 struct r5dev *dev = &sh->dev[s.failed_num[i]];
5125 if (test_bit(R5_ReadError, &dev->flags)
5126 && !test_bit(R5_LOCKED, &dev->flags)
5127 && test_bit(R5_UPTODATE, &dev->flags)
5128 ) {
5129 if (!test_bit(R5_ReWrite, &dev->flags)) {
5130 set_bit(R5_Wantwrite, &dev->flags);
5131 set_bit(R5_ReWrite, &dev->flags);
Guoqing Jiang3a31cf32020-07-28 12:01:43 +02005132 } else
NeilBrownc5a31002011-07-27 11:00:36 +10005133 /* let's read it back */
5134 set_bit(R5_Wantread, &dev->flags);
Guoqing Jiang3a31cf32020-07-28 12:01:43 +02005135 set_bit(R5_LOCKED, &dev->flags);
5136 s.locked++;
NeilBrownc5a31002011-07-27 11:00:36 +10005137 }
5138 }
5139
NeilBrown3687c062011-07-27 11:00:36 +10005140 /* Finish reconstruct operations initiated by the expansion process */
5141 if (sh->reconstruct_state == reconstruct_state_result) {
5142 struct stripe_head *sh_src
Shaohua Li6d036f72015-08-13 14:31:57 -07005143 = raid5_get_active_stripe(conf, sh->sector, 1, 1, 1);
NeilBrown3687c062011-07-27 11:00:36 +10005144 if (sh_src && test_bit(STRIPE_EXPAND_SOURCE, &sh_src->state)) {
5145 /* sh cannot be written until sh_src has been read.
5146 * so arrange for sh to be delayed a little
5147 */
5148 set_bit(STRIPE_DELAYED, &sh->state);
5149 set_bit(STRIPE_HANDLE, &sh->state);
5150 if (!test_and_set_bit(STRIPE_PREREAD_ACTIVE,
5151 &sh_src->state))
5152 atomic_inc(&conf->preread_active_stripes);
Shaohua Li6d036f72015-08-13 14:31:57 -07005153 raid5_release_stripe(sh_src);
NeilBrown3687c062011-07-27 11:00:36 +10005154 goto finish;
5155 }
5156 if (sh_src)
Shaohua Li6d036f72015-08-13 14:31:57 -07005157 raid5_release_stripe(sh_src);
NeilBrown16a53ec2006-06-26 00:27:38 -07005158
NeilBrown3687c062011-07-27 11:00:36 +10005159 sh->reconstruct_state = reconstruct_state_idle;
5160 clear_bit(STRIPE_EXPANDING, &sh->state);
5161 for (i = conf->raid_disks; i--; ) {
5162 set_bit(R5_Wantwrite, &sh->dev[i].flags);
5163 set_bit(R5_LOCKED, &sh->dev[i].flags);
5164 s.locked++;
5165 }
5166 }
5167
5168 if (s.expanded && test_bit(STRIPE_EXPANDING, &sh->state) &&
5169 !sh->reconstruct_state) {
5170 /* Need to write out all blocks after computing parity */
5171 sh->disks = conf->raid_disks;
5172 stripe_set_idx(sh->sector, conf, 0, sh);
5173 schedule_reconstruction(sh, &s, 1, 1);
5174 } else if (s.expanded && !sh->reconstruct_state && s.locked == 0) {
5175 clear_bit(STRIPE_EXPAND_READY, &sh->state);
5176 atomic_dec(&conf->reshape_stripes);
5177 wake_up(&conf->wait_for_overlap);
Yufen Yuc911c462020-07-18 05:29:07 -04005178 md_done_sync(conf->mddev, RAID5_STRIPE_SECTORS(conf), 1);
NeilBrown3687c062011-07-27 11:00:36 +10005179 }
5180
5181 if (s.expanding && s.locked == 0 &&
5182 !test_bit(STRIPE_COMPUTE_RUN, &sh->state))
5183 handle_stripe_expansion(conf, sh);
5184
5185finish:
Dan Williams6bfe0b42008-04-30 00:52:32 -07005186 /* wait for this device to become unblocked */
NeilBrown5f066c62012-07-03 12:13:29 +10005187 if (unlikely(s.blocked_rdev)) {
5188 if (conf->mddev->external)
5189 md_wait_for_blocked_rdev(s.blocked_rdev,
5190 conf->mddev);
5191 else
5192 /* Internal metadata will immediately
5193 * be written by raid5d, so we don't
5194 * need to wait here.
5195 */
5196 rdev_dec_pending(s.blocked_rdev,
5197 conf->mddev);
5198 }
Dan Williams6bfe0b42008-04-30 00:52:32 -07005199
NeilBrownbc2607f2011-07-28 11:39:22 +10005200 if (s.handle_bad_blocks)
5201 for (i = disks; i--; ) {
NeilBrown3cb03002011-10-11 16:45:26 +11005202 struct md_rdev *rdev;
NeilBrownbc2607f2011-07-28 11:39:22 +10005203 struct r5dev *dev = &sh->dev[i];
5204 if (test_and_clear_bit(R5_WriteError, &dev->flags)) {
5205 /* We own a safe reference to the rdev */
5206 rdev = conf->disks[i].rdev;
5207 if (!rdev_set_badblocks(rdev, sh->sector,
Yufen Yuc911c462020-07-18 05:29:07 -04005208 RAID5_STRIPE_SECTORS(conf), 0))
NeilBrownbc2607f2011-07-28 11:39:22 +10005209 md_error(conf->mddev, rdev);
5210 rdev_dec_pending(rdev, conf->mddev);
5211 }
NeilBrownb84db562011-07-28 11:39:23 +10005212 if (test_and_clear_bit(R5_MadeGood, &dev->flags)) {
5213 rdev = conf->disks[i].rdev;
5214 rdev_clear_badblocks(rdev, sh->sector,
Yufen Yuc911c462020-07-18 05:29:07 -04005215 RAID5_STRIPE_SECTORS(conf), 0);
NeilBrownb84db562011-07-28 11:39:23 +10005216 rdev_dec_pending(rdev, conf->mddev);
5217 }
NeilBrown977df362011-12-23 10:17:53 +11005218 if (test_and_clear_bit(R5_MadeGoodRepl, &dev->flags)) {
5219 rdev = conf->disks[i].replacement;
NeilBrowndd054fc2011-12-23 10:17:53 +11005220 if (!rdev)
5221 /* rdev have been moved down */
5222 rdev = conf->disks[i].rdev;
NeilBrown977df362011-12-23 10:17:53 +11005223 rdev_clear_badblocks(rdev, sh->sector,
Yufen Yuc911c462020-07-18 05:29:07 -04005224 RAID5_STRIPE_SECTORS(conf), 0);
NeilBrown977df362011-12-23 10:17:53 +11005225 rdev_dec_pending(rdev, conf->mddev);
5226 }
NeilBrownbc2607f2011-07-28 11:39:22 +10005227 }
5228
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07005229 if (s.ops_request)
5230 raid_run_ops(sh, s.ops_request);
5231
Dan Williamsf0e43bc2008-06-28 08:31:55 +10005232 ops_run_io(sh, &s);
5233
NeilBrownc5709ef2011-07-26 11:35:20 +10005234 if (s.dec_preread_active) {
NeilBrown729a1862009-12-14 12:49:50 +11005235 /* We delay this until after ops_run_io so that if make_request
Tejun Heoe9c74692010-09-03 11:56:18 +02005236 * is waiting on a flush, it won't continue until the writes
NeilBrown729a1862009-12-14 12:49:50 +11005237 * have actually been submitted.
5238 */
5239 atomic_dec(&conf->preread_active_stripes);
5240 if (atomic_read(&conf->preread_active_stripes) <
5241 IO_THRESHOLD)
5242 md_wakeup_thread(conf->mddev->thread);
5243 }
5244
Dan Williams257a4b42011-11-08 16:22:06 +11005245 clear_bit_unlock(STRIPE_ACTIVE, &sh->state);
NeilBrown16a53ec2006-06-26 00:27:38 -07005246}
5247
NeilBrownd1688a62011-10-11 16:49:52 +11005248static void raid5_activate_delayed(struct r5conf *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005249{
5250 if (atomic_read(&conf->preread_active_stripes) < IO_THRESHOLD) {
5251 while (!list_empty(&conf->delayed_list)) {
5252 struct list_head *l = conf->delayed_list.next;
5253 struct stripe_head *sh;
5254 sh = list_entry(l, struct stripe_head, lru);
5255 list_del_init(l);
5256 clear_bit(STRIPE_DELAYED, &sh->state);
5257 if (!test_and_set_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
5258 atomic_inc(&conf->preread_active_stripes);
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005259 list_add_tail(&sh->lru, &conf->hold_list);
Shaohua Li851c30c2013-08-28 14:30:16 +08005260 raid5_wakeup_stripe_thread(sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005261 }
NeilBrown482c0832011-04-18 18:25:42 +10005262 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005263}
5264
Shaohua Li566c09c2013-11-14 15:16:17 +11005265static void activate_bit_delay(struct r5conf *conf,
5266 struct list_head *temp_inactive_list)
NeilBrown72626682005-09-09 16:23:54 -07005267{
5268 /* device_lock is held */
5269 struct list_head head;
5270 list_add(&head, &conf->bitmap_list);
5271 list_del_init(&conf->bitmap_list);
5272 while (!list_empty(&head)) {
5273 struct stripe_head *sh = list_entry(head.next, struct stripe_head, lru);
Shaohua Li566c09c2013-11-14 15:16:17 +11005274 int hash;
NeilBrown72626682005-09-09 16:23:54 -07005275 list_del_init(&sh->lru);
5276 atomic_inc(&sh->count);
Shaohua Li566c09c2013-11-14 15:16:17 +11005277 hash = sh->hash_lock_index;
5278 __release_stripe(conf, sh, &temp_inactive_list[hash]);
NeilBrown72626682005-09-09 16:23:54 -07005279 }
5280}
5281
NeilBrownfd01b882011-10-11 16:47:53 +11005282static int in_chunk_boundary(struct mddev *mddev, struct bio *bio)
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08005283{
NeilBrown3cb5edf2015-07-15 17:24:17 +10005284 struct r5conf *conf = mddev->private;
Christoph Hellwig10433d02017-08-23 19:10:28 +02005285 sector_t sector = bio->bi_iter.bi_sector;
NeilBrown3cb5edf2015-07-15 17:24:17 +10005286 unsigned int chunk_sectors;
Kent Overstreetaa8b57a2013-02-05 15:19:29 -08005287 unsigned int bio_sectors = bio_sectors(bio);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08005288
Christoph Hellwig10433d02017-08-23 19:10:28 +02005289 WARN_ON_ONCE(bio->bi_partno);
5290
NeilBrown3cb5edf2015-07-15 17:24:17 +10005291 chunk_sectors = min(conf->chunk_sectors, conf->prev_chunk_sectors);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08005292 return chunk_sectors >=
5293 ((sector & (chunk_sectors - 1)) + bio_sectors);
5294}
5295
5296/*
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005297 * add bio to the retry LIFO ( in O(1) ... we are in interrupt )
5298 * later sampled by raid5d.
5299 */
NeilBrownd1688a62011-10-11 16:49:52 +11005300static void add_bio_to_retry(struct bio *bi,struct r5conf *conf)
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005301{
5302 unsigned long flags;
5303
5304 spin_lock_irqsave(&conf->device_lock, flags);
5305
5306 bi->bi_next = conf->retry_read_aligned_list;
5307 conf->retry_read_aligned_list = bi;
5308
5309 spin_unlock_irqrestore(&conf->device_lock, flags);
5310 md_wakeup_thread(conf->mddev->thread);
5311}
5312
NeilBrown0472a422017-03-15 14:05:13 +11005313static struct bio *remove_bio_from_retry(struct r5conf *conf,
5314 unsigned int *offset)
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005315{
5316 struct bio *bi;
5317
5318 bi = conf->retry_read_aligned;
5319 if (bi) {
NeilBrown0472a422017-03-15 14:05:13 +11005320 *offset = conf->retry_read_offset;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005321 conf->retry_read_aligned = NULL;
5322 return bi;
5323 }
5324 bi = conf->retry_read_aligned_list;
5325 if(bi) {
Neil Brown387bb172007-02-08 14:20:29 -08005326 conf->retry_read_aligned_list = bi->bi_next;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005327 bi->bi_next = NULL;
NeilBrown0472a422017-03-15 14:05:13 +11005328 *offset = 0;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005329 }
5330
5331 return bi;
5332}
5333
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005334/*
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08005335 * The "raid5_align_endio" should check if the read succeeded and if it
5336 * did, call bio_endio on the original bio (having bio_put the new bio
5337 * first).
5338 * If the read failed..
5339 */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005340static void raid5_align_endio(struct bio *bi)
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08005341{
5342 struct bio* raid_bi = bi->bi_private;
NeilBrownfd01b882011-10-11 16:47:53 +11005343 struct mddev *mddev;
NeilBrownd1688a62011-10-11 16:49:52 +11005344 struct r5conf *conf;
NeilBrown3cb03002011-10-11 16:45:26 +11005345 struct md_rdev *rdev;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02005346 blk_status_t error = bi->bi_status;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005347
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08005348 bio_put(bi);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005349
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005350 rdev = (void*)raid_bi->bi_next;
5351 raid_bi->bi_next = NULL;
NeilBrown2b7f2222010-03-25 16:06:03 +11005352 mddev = rdev->mddev;
5353 conf = mddev->private;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005354
5355 rdev_dec_pending(rdev, conf->mddev);
5356
Sasha Levin9b81c842015-08-10 19:05:18 -04005357 if (!error) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005358 bio_endio(raid_bi);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005359 if (atomic_dec_and_test(&conf->active_aligned_reads))
Yuanhan Liub1b46482015-05-08 18:19:06 +10005360 wake_up(&conf->wait_for_quiescent);
NeilBrown6712ecf2007-09-27 12:47:43 +02005361 return;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005362 }
5363
Dan Williams45b42332007-07-09 11:56:43 -07005364 pr_debug("raid5_align_endio : io error...handing IO for a retry\n");
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005365
5366 add_bio_to_retry(raid_bi, conf);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08005367}
5368
Ming Lin7ef6b122015-05-06 22:51:24 -07005369static int raid5_read_one_chunk(struct mddev *mddev, struct bio *raid_bio)
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08005370{
NeilBrownd1688a62011-10-11 16:49:52 +11005371 struct r5conf *conf = mddev->private;
NeilBrown8553fe7ec2009-12-14 12:49:47 +11005372 int dd_idx;
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08005373 struct bio* align_bi;
NeilBrown3cb03002011-10-11 16:45:26 +11005374 struct md_rdev *rdev;
NeilBrown671488c2011-12-23 10:17:52 +11005375 sector_t end_sector;
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08005376
5377 if (!in_chunk_boundary(mddev, raid_bio)) {
Ming Lin7ef6b122015-05-06 22:51:24 -07005378 pr_debug("%s: non aligned\n", __func__);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08005379 return 0;
5380 }
5381 /*
Ming Leid7a10302017-02-14 23:29:03 +08005382 * use bio_clone_fast to make a copy of the bio
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08005383 */
Kent Overstreetafeee512018-05-20 18:25:52 -04005384 align_bi = bio_clone_fast(raid_bio, GFP_NOIO, &mddev->bio_set);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08005385 if (!align_bi)
5386 return 0;
5387 /*
5388 * set bi_end_io to a new function, and set bi_private to the
5389 * original bio.
5390 */
5391 align_bi->bi_end_io = raid5_align_endio;
5392 align_bi->bi_private = raid_bio;
5393 /*
5394 * compute position
5395 */
Kent Overstreet4f024f32013-10-11 15:44:27 -07005396 align_bi->bi_iter.bi_sector =
5397 raid5_compute_sector(conf, raid_bio->bi_iter.bi_sector,
5398 0, &dd_idx, NULL);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08005399
Kent Overstreetf73a1c72012-09-25 15:05:12 -07005400 end_sector = bio_end_sector(align_bi);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08005401 rcu_read_lock();
NeilBrown671488c2011-12-23 10:17:52 +11005402 rdev = rcu_dereference(conf->disks[dd_idx].replacement);
5403 if (!rdev || test_bit(Faulty, &rdev->flags) ||
5404 rdev->recovery_offset < end_sector) {
5405 rdev = rcu_dereference(conf->disks[dd_idx].rdev);
5406 if (rdev &&
5407 (test_bit(Faulty, &rdev->flags) ||
5408 !(test_bit(In_sync, &rdev->flags) ||
5409 rdev->recovery_offset >= end_sector)))
5410 rdev = NULL;
5411 }
Song Liu03b047f2017-01-11 13:39:14 -08005412
5413 if (r5c_big_stripe_cached(conf, align_bi->bi_iter.bi_sector)) {
5414 rcu_read_unlock();
5415 bio_put(align_bi);
5416 return 0;
5417 }
5418
NeilBrown671488c2011-12-23 10:17:52 +11005419 if (rdev) {
NeilBrown31c176e2011-07-28 11:39:22 +10005420 sector_t first_bad;
5421 int bad_sectors;
5422
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08005423 atomic_inc(&rdev->nr_pending);
5424 rcu_read_unlock();
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005425 raid_bio->bi_next = (void*)rdev;
Christoph Hellwig74d46992017-08-23 19:10:32 +02005426 bio_set_dev(align_bi, rdev->bdev);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005427
Kent Overstreet7140aaf2013-09-25 13:37:01 -07005428 if (is_badblock(rdev, align_bi->bi_iter.bi_sector,
Kent Overstreet4f024f32013-10-11 15:44:27 -07005429 bio_sectors(align_bi),
NeilBrown31c176e2011-07-28 11:39:22 +10005430 &first_bad, &bad_sectors)) {
Neil Brown387bb172007-02-08 14:20:29 -08005431 bio_put(align_bi);
5432 rdev_dec_pending(rdev, mddev);
5433 return 0;
5434 }
5435
majianpeng6c0544e2012-06-12 08:31:10 +08005436 /* No reshape active, so we can trust rdev->data_offset */
Kent Overstreet4f024f32013-10-11 15:44:27 -07005437 align_bi->bi_iter.bi_sector += rdev->data_offset;
majianpeng6c0544e2012-06-12 08:31:10 +08005438
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005439 spin_lock_irq(&conf->device_lock);
Yuanhan Liub1b46482015-05-08 18:19:06 +10005440 wait_event_lock_irq(conf->wait_for_quiescent,
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005441 conf->quiesce == 0,
Lukas Czernereed8c022012-11-30 11:42:40 +01005442 conf->device_lock);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005443 atomic_inc(&conf->active_aligned_reads);
5444 spin_unlock_irq(&conf->device_lock);
5445
Jonathan Brassowe3620a32013-03-07 16:22:01 -06005446 if (mddev->gendisk)
Christoph Hellwig74d46992017-08-23 19:10:32 +02005447 trace_block_bio_remap(align_bi->bi_disk->queue,
Jonathan Brassowe3620a32013-03-07 16:22:01 -06005448 align_bi, disk_devt(mddev->gendisk),
Kent Overstreet4f024f32013-10-11 15:44:27 -07005449 raid_bio->bi_iter.bi_sector);
Christoph Hellwiged00aab2020-07-01 10:59:44 +02005450 submit_bio_noacct(align_bi);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08005451 return 1;
5452 } else {
5453 rcu_read_unlock();
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005454 bio_put(align_bi);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08005455 return 0;
5456 }
5457}
5458
Ming Lin7ef6b122015-05-06 22:51:24 -07005459static struct bio *chunk_aligned_read(struct mddev *mddev, struct bio *raid_bio)
5460{
5461 struct bio *split;
NeilBrowndd7a8f52017-04-05 14:05:51 +10005462 sector_t sector = raid_bio->bi_iter.bi_sector;
5463 unsigned chunk_sects = mddev->chunk_sectors;
5464 unsigned sectors = chunk_sects - (sector & (chunk_sects-1));
Ming Lin7ef6b122015-05-06 22:51:24 -07005465
NeilBrowndd7a8f52017-04-05 14:05:51 +10005466 if (sectors < bio_sectors(raid_bio)) {
5467 struct r5conf *conf = mddev->private;
Kent Overstreetafeee512018-05-20 18:25:52 -04005468 split = bio_split(raid_bio, sectors, GFP_NOIO, &conf->bio_split);
NeilBrowndd7a8f52017-04-05 14:05:51 +10005469 bio_chain(split, raid_bio);
Christoph Hellwiged00aab2020-07-01 10:59:44 +02005470 submit_bio_noacct(raid_bio);
NeilBrowndd7a8f52017-04-05 14:05:51 +10005471 raid_bio = split;
5472 }
Ming Lin7ef6b122015-05-06 22:51:24 -07005473
NeilBrowndd7a8f52017-04-05 14:05:51 +10005474 if (!raid5_read_one_chunk(mddev, raid_bio))
5475 return raid_bio;
Ming Lin7ef6b122015-05-06 22:51:24 -07005476
5477 return NULL;
5478}
5479
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005480/* __get_priority_stripe - get the next stripe to process
5481 *
5482 * Full stripe writes are allowed to pass preread active stripes up until
5483 * the bypass_threshold is exceeded. In general the bypass_count
5484 * increments when the handle_list is handled before the hold_list; however, it
5485 * will not be incremented when STRIPE_IO_STARTED is sampled set signifying a
5486 * stripe with in flight i/o. The bypass_count will be reset when the
5487 * head of the hold_list has changed, i.e. the head was promoted to the
5488 * handle_list.
5489 */
Shaohua Li851c30c2013-08-28 14:30:16 +08005490static struct stripe_head *__get_priority_stripe(struct r5conf *conf, int group)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005491{
Shaohua Li535ae4e2017-02-15 19:37:32 -08005492 struct stripe_head *sh, *tmp;
Shaohua Li851c30c2013-08-28 14:30:16 +08005493 struct list_head *handle_list = NULL;
Shaohua Li535ae4e2017-02-15 19:37:32 -08005494 struct r5worker_group *wg;
Song Liu70d466f2017-05-11 15:28:28 -07005495 bool second_try = !r5c_is_writeback(conf->log) &&
5496 !r5l_log_disk_error(conf);
5497 bool try_loprio = test_bit(R5C_LOG_TIGHT, &conf->cache_state) ||
5498 r5l_log_disk_error(conf);
Shaohua Li851c30c2013-08-28 14:30:16 +08005499
Shaohua Li535ae4e2017-02-15 19:37:32 -08005500again:
5501 wg = NULL;
5502 sh = NULL;
Shaohua Li851c30c2013-08-28 14:30:16 +08005503 if (conf->worker_cnt_per_group == 0) {
Shaohua Li535ae4e2017-02-15 19:37:32 -08005504 handle_list = try_loprio ? &conf->loprio_list :
5505 &conf->handle_list;
Shaohua Li851c30c2013-08-28 14:30:16 +08005506 } else if (group != ANY_GROUP) {
Shaohua Li535ae4e2017-02-15 19:37:32 -08005507 handle_list = try_loprio ? &conf->worker_groups[group].loprio_list :
5508 &conf->worker_groups[group].handle_list;
Shaohua Libfc90cb2013-08-29 15:40:32 +08005509 wg = &conf->worker_groups[group];
Shaohua Li851c30c2013-08-28 14:30:16 +08005510 } else {
5511 int i;
5512 for (i = 0; i < conf->group_cnt; i++) {
Shaohua Li535ae4e2017-02-15 19:37:32 -08005513 handle_list = try_loprio ? &conf->worker_groups[i].loprio_list :
5514 &conf->worker_groups[i].handle_list;
Shaohua Libfc90cb2013-08-29 15:40:32 +08005515 wg = &conf->worker_groups[i];
Shaohua Li851c30c2013-08-28 14:30:16 +08005516 if (!list_empty(handle_list))
5517 break;
5518 }
5519 }
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005520
5521 pr_debug("%s: handle: %s hold: %s full_writes: %d bypass_count: %d\n",
5522 __func__,
Shaohua Li851c30c2013-08-28 14:30:16 +08005523 list_empty(handle_list) ? "empty" : "busy",
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005524 list_empty(&conf->hold_list) ? "empty" : "busy",
5525 atomic_read(&conf->pending_full_writes), conf->bypass_count);
5526
Shaohua Li851c30c2013-08-28 14:30:16 +08005527 if (!list_empty(handle_list)) {
5528 sh = list_entry(handle_list->next, typeof(*sh), lru);
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005529
5530 if (list_empty(&conf->hold_list))
5531 conf->bypass_count = 0;
5532 else if (!test_bit(STRIPE_IO_STARTED, &sh->state)) {
5533 if (conf->hold_list.next == conf->last_hold)
5534 conf->bypass_count++;
5535 else {
5536 conf->last_hold = conf->hold_list.next;
5537 conf->bypass_count -= conf->bypass_threshold;
5538 if (conf->bypass_count < 0)
5539 conf->bypass_count = 0;
5540 }
5541 }
5542 } else if (!list_empty(&conf->hold_list) &&
5543 ((conf->bypass_threshold &&
5544 conf->bypass_count > conf->bypass_threshold) ||
5545 atomic_read(&conf->pending_full_writes) == 0)) {
Shaohua Li851c30c2013-08-28 14:30:16 +08005546
5547 list_for_each_entry(tmp, &conf->hold_list, lru) {
5548 if (conf->worker_cnt_per_group == 0 ||
5549 group == ANY_GROUP ||
5550 !cpu_online(tmp->cpu) ||
5551 cpu_to_group(tmp->cpu) == group) {
5552 sh = tmp;
5553 break;
5554 }
5555 }
5556
5557 if (sh) {
5558 conf->bypass_count -= conf->bypass_threshold;
5559 if (conf->bypass_count < 0)
5560 conf->bypass_count = 0;
5561 }
Shaohua Libfc90cb2013-08-29 15:40:32 +08005562 wg = NULL;
Shaohua Li851c30c2013-08-28 14:30:16 +08005563 }
5564
Shaohua Li535ae4e2017-02-15 19:37:32 -08005565 if (!sh) {
5566 if (second_try)
5567 return NULL;
5568 second_try = true;
5569 try_loprio = !try_loprio;
5570 goto again;
5571 }
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005572
Shaohua Libfc90cb2013-08-29 15:40:32 +08005573 if (wg) {
5574 wg->stripes_cnt--;
5575 sh->group = NULL;
5576 }
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005577 list_del_init(&sh->lru);
Shaohua Lic7a6d352014-04-15 09:12:54 +08005578 BUG_ON(atomic_inc_return(&sh->count) != 1);
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005579 return sh;
5580}
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08005581
Shaohua Li8811b592012-08-02 08:33:00 +10005582struct raid5_plug_cb {
5583 struct blk_plug_cb cb;
5584 struct list_head list;
Shaohua Li566c09c2013-11-14 15:16:17 +11005585 struct list_head temp_inactive_list[NR_STRIPE_HASH_LOCKS];
Shaohua Li8811b592012-08-02 08:33:00 +10005586};
5587
5588static void raid5_unplug(struct blk_plug_cb *blk_cb, bool from_schedule)
5589{
5590 struct raid5_plug_cb *cb = container_of(
5591 blk_cb, struct raid5_plug_cb, cb);
5592 struct stripe_head *sh;
5593 struct mddev *mddev = cb->cb.data;
5594 struct r5conf *conf = mddev->private;
NeilBrowna9add5d2012-10-31 11:59:09 +11005595 int cnt = 0;
Shaohua Li566c09c2013-11-14 15:16:17 +11005596 int hash;
Shaohua Li8811b592012-08-02 08:33:00 +10005597
5598 if (cb->list.next && !list_empty(&cb->list)) {
5599 spin_lock_irq(&conf->device_lock);
5600 while (!list_empty(&cb->list)) {
5601 sh = list_first_entry(&cb->list, struct stripe_head, lru);
5602 list_del_init(&sh->lru);
5603 /*
5604 * avoid race release_stripe_plug() sees
5605 * STRIPE_ON_UNPLUG_LIST clear but the stripe
5606 * is still in our list
5607 */
Peter Zijlstra4e857c52014-03-17 18:06:10 +01005608 smp_mb__before_atomic();
Shaohua Li8811b592012-08-02 08:33:00 +10005609 clear_bit(STRIPE_ON_UNPLUG_LIST, &sh->state);
Shaohua Li773ca822013-08-27 17:50:39 +08005610 /*
5611 * STRIPE_ON_RELEASE_LIST could be set here. In that
5612 * case, the count is always > 1 here
5613 */
Shaohua Li566c09c2013-11-14 15:16:17 +11005614 hash = sh->hash_lock_index;
5615 __release_stripe(conf, sh, &cb->temp_inactive_list[hash]);
NeilBrowna9add5d2012-10-31 11:59:09 +11005616 cnt++;
Shaohua Li8811b592012-08-02 08:33:00 +10005617 }
5618 spin_unlock_irq(&conf->device_lock);
5619 }
Shaohua Li566c09c2013-11-14 15:16:17 +11005620 release_inactive_stripe_list(conf, cb->temp_inactive_list,
5621 NR_STRIPE_HASH_LOCKS);
Jonathan Brassowe3620a32013-03-07 16:22:01 -06005622 if (mddev->queue)
5623 trace_block_unplug(mddev->queue, cnt, !from_schedule);
Shaohua Li8811b592012-08-02 08:33:00 +10005624 kfree(cb);
5625}
5626
5627static void release_stripe_plug(struct mddev *mddev,
5628 struct stripe_head *sh)
5629{
5630 struct blk_plug_cb *blk_cb = blk_check_plugged(
5631 raid5_unplug, mddev,
5632 sizeof(struct raid5_plug_cb));
5633 struct raid5_plug_cb *cb;
5634
5635 if (!blk_cb) {
Shaohua Li6d036f72015-08-13 14:31:57 -07005636 raid5_release_stripe(sh);
Shaohua Li8811b592012-08-02 08:33:00 +10005637 return;
5638 }
5639
5640 cb = container_of(blk_cb, struct raid5_plug_cb, cb);
5641
Shaohua Li566c09c2013-11-14 15:16:17 +11005642 if (cb->list.next == NULL) {
5643 int i;
Shaohua Li8811b592012-08-02 08:33:00 +10005644 INIT_LIST_HEAD(&cb->list);
Shaohua Li566c09c2013-11-14 15:16:17 +11005645 for (i = 0; i < NR_STRIPE_HASH_LOCKS; i++)
5646 INIT_LIST_HEAD(cb->temp_inactive_list + i);
5647 }
Shaohua Li8811b592012-08-02 08:33:00 +10005648
5649 if (!test_and_set_bit(STRIPE_ON_UNPLUG_LIST, &sh->state))
5650 list_add_tail(&sh->lru, &cb->list);
5651 else
Shaohua Li6d036f72015-08-13 14:31:57 -07005652 raid5_release_stripe(sh);
Shaohua Li8811b592012-08-02 08:33:00 +10005653}
5654
Shaohua Li620125f2012-10-11 13:49:05 +11005655static void make_discard_request(struct mddev *mddev, struct bio *bi)
5656{
5657 struct r5conf *conf = mddev->private;
5658 sector_t logical_sector, last_sector;
5659 struct stripe_head *sh;
Shaohua Li620125f2012-10-11 13:49:05 +11005660 int stripe_sectors;
5661
5662 if (mddev->reshape_position != MaxSector)
5663 /* Skip discard while reshape is happening */
5664 return;
5665
Yufen Yuc911c462020-07-18 05:29:07 -04005666 logical_sector = bi->bi_iter.bi_sector & ~((sector_t)RAID5_STRIPE_SECTORS(conf)-1);
Guoqing Jiangb0f01ec2019-09-03 11:41:03 +02005667 last_sector = bio_end_sector(bi);
Shaohua Li620125f2012-10-11 13:49:05 +11005668
5669 bi->bi_next = NULL;
Shaohua Li620125f2012-10-11 13:49:05 +11005670
5671 stripe_sectors = conf->chunk_sectors *
5672 (conf->raid_disks - conf->max_degraded);
5673 logical_sector = DIV_ROUND_UP_SECTOR_T(logical_sector,
5674 stripe_sectors);
5675 sector_div(last_sector, stripe_sectors);
5676
5677 logical_sector *= conf->chunk_sectors;
5678 last_sector *= conf->chunk_sectors;
5679
5680 for (; logical_sector < last_sector;
Yufen Yuc911c462020-07-18 05:29:07 -04005681 logical_sector += RAID5_STRIPE_SECTORS(conf)) {
Shaohua Li620125f2012-10-11 13:49:05 +11005682 DEFINE_WAIT(w);
5683 int d;
5684 again:
Shaohua Li6d036f72015-08-13 14:31:57 -07005685 sh = raid5_get_active_stripe(conf, logical_sector, 0, 0, 0);
Shaohua Li620125f2012-10-11 13:49:05 +11005686 prepare_to_wait(&conf->wait_for_overlap, &w,
5687 TASK_UNINTERRUPTIBLE);
NeilBrownf8dfcff2013-03-12 12:18:06 +11005688 set_bit(R5_Overlap, &sh->dev[sh->pd_idx].flags);
5689 if (test_bit(STRIPE_SYNCING, &sh->state)) {
Shaohua Li6d036f72015-08-13 14:31:57 -07005690 raid5_release_stripe(sh);
NeilBrownf8dfcff2013-03-12 12:18:06 +11005691 schedule();
5692 goto again;
5693 }
5694 clear_bit(R5_Overlap, &sh->dev[sh->pd_idx].flags);
Shaohua Li620125f2012-10-11 13:49:05 +11005695 spin_lock_irq(&sh->stripe_lock);
5696 for (d = 0; d < conf->raid_disks; d++) {
5697 if (d == sh->pd_idx || d == sh->qd_idx)
5698 continue;
5699 if (sh->dev[d].towrite || sh->dev[d].toread) {
5700 set_bit(R5_Overlap, &sh->dev[d].flags);
5701 spin_unlock_irq(&sh->stripe_lock);
Shaohua Li6d036f72015-08-13 14:31:57 -07005702 raid5_release_stripe(sh);
Shaohua Li620125f2012-10-11 13:49:05 +11005703 schedule();
5704 goto again;
5705 }
5706 }
NeilBrownf8dfcff2013-03-12 12:18:06 +11005707 set_bit(STRIPE_DISCARD, &sh->state);
Shaohua Li620125f2012-10-11 13:49:05 +11005708 finish_wait(&conf->wait_for_overlap, &w);
shli@kernel.org7a87f432014-12-15 12:57:03 +11005709 sh->overwrite_disks = 0;
Shaohua Li620125f2012-10-11 13:49:05 +11005710 for (d = 0; d < conf->raid_disks; d++) {
5711 if (d == sh->pd_idx || d == sh->qd_idx)
5712 continue;
5713 sh->dev[d].towrite = bi;
5714 set_bit(R5_OVERWRITE, &sh->dev[d].flags);
NeilBrown016c76a2017-03-15 14:05:13 +11005715 bio_inc_remaining(bi);
NeilBrown49728052017-03-15 14:05:12 +11005716 md_write_inc(mddev, bi);
shli@kernel.org7a87f432014-12-15 12:57:03 +11005717 sh->overwrite_disks++;
Shaohua Li620125f2012-10-11 13:49:05 +11005718 }
5719 spin_unlock_irq(&sh->stripe_lock);
5720 if (conf->mddev->bitmap) {
5721 for (d = 0;
5722 d < conf->raid_disks - conf->max_degraded;
5723 d++)
Andy Shevchenkoe64e40182018-08-01 15:20:50 -07005724 md_bitmap_startwrite(mddev->bitmap,
5725 sh->sector,
Yufen Yuc911c462020-07-18 05:29:07 -04005726 RAID5_STRIPE_SECTORS(conf),
Andy Shevchenkoe64e40182018-08-01 15:20:50 -07005727 0);
Shaohua Li620125f2012-10-11 13:49:05 +11005728 sh->bm_seq = conf->seq_flush + 1;
5729 set_bit(STRIPE_BIT_DELAY, &sh->state);
5730 }
5731
5732 set_bit(STRIPE_HANDLE, &sh->state);
5733 clear_bit(STRIPE_DELAYED, &sh->state);
5734 if (!test_and_set_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
5735 atomic_inc(&conf->preread_active_stripes);
5736 release_stripe_plug(mddev, sh);
5737 }
5738
NeilBrown016c76a2017-03-15 14:05:13 +11005739 bio_endio(bi);
Shaohua Li620125f2012-10-11 13:49:05 +11005740}
5741
NeilBrowncc27b0c2017-06-05 16:49:39 +10005742static bool raid5_make_request(struct mddev *mddev, struct bio * bi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005743{
NeilBrownd1688a62011-10-11 16:49:52 +11005744 struct r5conf *conf = mddev->private;
NeilBrown911d4ee2009-03-31 14:39:38 +11005745 int dd_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005746 sector_t new_sector;
5747 sector_t logical_sector, last_sector;
5748 struct stripe_head *sh;
Jens Axboea3623572005-11-01 09:26:16 +01005749 const int rw = bio_data_dir(bi);
Shaohua Li27c0f682014-04-09 11:25:47 +08005750 DEFINE_WAIT(w);
5751 bool do_prepare;
Song Liu3bddb7f2016-11-18 16:46:50 -08005752 bool do_flush = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005753
Jens Axboe1eff9d32016-08-05 15:35:16 -06005754 if (unlikely(bi->bi_opf & REQ_PREFLUSH)) {
Tomasz Majchrzak1532d9e2017-12-27 10:31:40 +01005755 int ret = log_handle_flush_request(conf, bi);
Shaohua Li828cbe92015-09-02 13:49:49 -07005756
5757 if (ret == 0)
NeilBrowncc27b0c2017-06-05 16:49:39 +10005758 return true;
Shaohua Li828cbe92015-09-02 13:49:49 -07005759 if (ret == -ENODEV) {
David Jeffery775d7832019-09-16 13:15:14 -04005760 if (md_flush_request(mddev, bi))
5761 return true;
Shaohua Li828cbe92015-09-02 13:49:49 -07005762 }
5763 /* ret == -EAGAIN, fallback */
Song Liu3bddb7f2016-11-18 16:46:50 -08005764 /*
5765 * if r5l_handle_flush_request() didn't clear REQ_PREFLUSH,
5766 * we need to flush journal device
5767 */
5768 do_flush = bi->bi_opf & REQ_PREFLUSH;
NeilBrowne5dcdd82005-09-09 16:23:41 -07005769 }
5770
NeilBrowncc27b0c2017-06-05 16:49:39 +10005771 if (!md_write_start(mddev, bi))
5772 return false;
Eric Mei9ffc8f72015-03-18 23:39:11 -06005773 /*
5774 * If array is degraded, better not do chunk aligned read because
5775 * later we might have to read it again in order to reconstruct
5776 * data on failed drives.
5777 */
5778 if (rw == READ && mddev->degraded == 0 &&
Ming Lin7ef6b122015-05-06 22:51:24 -07005779 mddev->reshape_position == MaxSector) {
5780 bi = chunk_aligned_read(mddev, bi);
5781 if (!bi)
NeilBrowncc27b0c2017-06-05 16:49:39 +10005782 return true;
Ming Lin7ef6b122015-05-06 22:51:24 -07005783 }
Raz Ben-Jehuda(caro)52488612006-12-10 02:20:48 -08005784
Mike Christie796a5cf2016-06-05 14:32:07 -05005785 if (unlikely(bio_op(bi) == REQ_OP_DISCARD)) {
Shaohua Li620125f2012-10-11 13:49:05 +11005786 make_discard_request(mddev, bi);
NeilBrowncc27b0c2017-06-05 16:49:39 +10005787 md_write_end(mddev);
5788 return true;
Shaohua Li620125f2012-10-11 13:49:05 +11005789 }
5790
Yufen Yuc911c462020-07-18 05:29:07 -04005791 logical_sector = bi->bi_iter.bi_sector & ~((sector_t)RAID5_STRIPE_SECTORS(conf)-1);
Kent Overstreetf73a1c72012-09-25 15:05:12 -07005792 last_sector = bio_end_sector(bi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005793 bi->bi_next = NULL;
NeilBrown06d91a52005-06-21 17:17:12 -07005794
Shaohua Li27c0f682014-04-09 11:25:47 +08005795 prepare_to_wait(&conf->wait_for_overlap, &w, TASK_UNINTERRUPTIBLE);
Yufen Yuc911c462020-07-18 05:29:07 -04005796 for (; logical_sector < last_sector; logical_sector += RAID5_STRIPE_SECTORS(conf)) {
NeilBrownb5663ba2009-03-31 14:39:38 +11005797 int previous;
NeilBrownc46501b2013-08-27 15:52:13 +10005798 int seq;
NeilBrownb578d552006-03-27 01:18:12 -08005799
Shaohua Li27c0f682014-04-09 11:25:47 +08005800 do_prepare = false;
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005801 retry:
NeilBrownc46501b2013-08-27 15:52:13 +10005802 seq = read_seqcount_begin(&conf->gen_lock);
NeilBrownb5663ba2009-03-31 14:39:38 +11005803 previous = 0;
Shaohua Li27c0f682014-04-09 11:25:47 +08005804 if (do_prepare)
5805 prepare_to_wait(&conf->wait_for_overlap, &w,
5806 TASK_UNINTERRUPTIBLE);
NeilBrownb0f9ec02009-03-31 15:27:18 +11005807 if (unlikely(conf->reshape_progress != MaxSector)) {
NeilBrownfef9c612009-03-31 15:16:46 +11005808 /* spinlock is needed as reshape_progress may be
NeilBrowndf8e7f762006-03-27 01:18:15 -08005809 * 64bit on a 32bit platform, and so it might be
5810 * possible to see a half-updated value
Jesper Juhlaeb878b2011-04-10 18:06:17 +02005811 * Of course reshape_progress could change after
NeilBrowndf8e7f762006-03-27 01:18:15 -08005812 * the lock is dropped, so once we get a reference
5813 * to the stripe that we think it is, we will have
5814 * to check again.
5815 */
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005816 spin_lock_irq(&conf->device_lock);
NeilBrown2c810cd2012-05-21 09:27:00 +10005817 if (mddev->reshape_backwards
NeilBrownfef9c612009-03-31 15:16:46 +11005818 ? logical_sector < conf->reshape_progress
5819 : logical_sector >= conf->reshape_progress) {
NeilBrownb5663ba2009-03-31 14:39:38 +11005820 previous = 1;
5821 } else {
NeilBrown2c810cd2012-05-21 09:27:00 +10005822 if (mddev->reshape_backwards
NeilBrownfef9c612009-03-31 15:16:46 +11005823 ? logical_sector < conf->reshape_safe
5824 : logical_sector >= conf->reshape_safe) {
NeilBrownb578d552006-03-27 01:18:12 -08005825 spin_unlock_irq(&conf->device_lock);
5826 schedule();
Shaohua Li27c0f682014-04-09 11:25:47 +08005827 do_prepare = true;
NeilBrownb578d552006-03-27 01:18:12 -08005828 goto retry;
5829 }
5830 }
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005831 spin_unlock_irq(&conf->device_lock);
5832 }
NeilBrown16a53ec2006-06-26 00:27:38 -07005833
NeilBrown112bf892009-03-31 14:39:38 +11005834 new_sector = raid5_compute_sector(conf, logical_sector,
5835 previous,
NeilBrown911d4ee2009-03-31 14:39:38 +11005836 &dd_idx, NULL);
Shaohua Li849674e2016-01-20 13:52:20 -08005837 pr_debug("raid456: raid5_make_request, sector %llu logical %llu\n",
NeilBrownc46501b2013-08-27 15:52:13 +10005838 (unsigned long long)new_sector,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005839 (unsigned long long)logical_sector);
5840
Shaohua Li6d036f72015-08-13 14:31:57 -07005841 sh = raid5_get_active_stripe(conf, new_sector, previous,
Jens Axboe1eff9d32016-08-05 15:35:16 -06005842 (bi->bi_opf & REQ_RAHEAD), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005843 if (sh) {
NeilBrownb0f9ec02009-03-31 15:27:18 +11005844 if (unlikely(previous)) {
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005845 /* expansion might have moved on while waiting for a
NeilBrowndf8e7f762006-03-27 01:18:15 -08005846 * stripe, so we must do the range check again.
5847 * Expansion could still move past after this
5848 * test, but as we are holding a reference to
5849 * 'sh', we know that if that happens,
5850 * STRIPE_EXPANDING will get set and the expansion
5851 * won't proceed until we finish with the stripe.
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005852 */
5853 int must_retry = 0;
5854 spin_lock_irq(&conf->device_lock);
NeilBrown2c810cd2012-05-21 09:27:00 +10005855 if (mddev->reshape_backwards
NeilBrownb0f9ec02009-03-31 15:27:18 +11005856 ? logical_sector >= conf->reshape_progress
5857 : logical_sector < conf->reshape_progress)
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005858 /* mismatch, need to try again */
5859 must_retry = 1;
5860 spin_unlock_irq(&conf->device_lock);
5861 if (must_retry) {
Shaohua Li6d036f72015-08-13 14:31:57 -07005862 raid5_release_stripe(sh);
Dan Williams7a3ab902009-06-16 16:00:33 -07005863 schedule();
Shaohua Li27c0f682014-04-09 11:25:47 +08005864 do_prepare = true;
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005865 goto retry;
5866 }
5867 }
NeilBrownc46501b2013-08-27 15:52:13 +10005868 if (read_seqcount_retry(&conf->gen_lock, seq)) {
5869 /* Might have got the wrong stripe_head
5870 * by accident
5871 */
Shaohua Li6d036f72015-08-13 14:31:57 -07005872 raid5_release_stripe(sh);
NeilBrownc46501b2013-08-27 15:52:13 +10005873 goto retry;
5874 }
NeilBrowne62e58a2009-07-01 13:15:35 +10005875
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005876 if (test_bit(STRIPE_EXPANDING, &sh->state) ||
shli@kernel.orgda41ba62014-12-15 12:57:03 +11005877 !add_stripe_bio(sh, bi, dd_idx, rw, previous)) {
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005878 /* Stripe is busy expanding or
5879 * add failed due to overlap. Flush everything
Linus Torvalds1da177e2005-04-16 15:20:36 -07005880 * and wait a while
5881 */
NeilBrown482c0832011-04-18 18:25:42 +10005882 md_wakeup_thread(mddev->thread);
Shaohua Li6d036f72015-08-13 14:31:57 -07005883 raid5_release_stripe(sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005884 schedule();
Shaohua Li27c0f682014-04-09 11:25:47 +08005885 do_prepare = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005886 goto retry;
5887 }
Song Liu3bddb7f2016-11-18 16:46:50 -08005888 if (do_flush) {
5889 set_bit(STRIPE_R5C_PREFLUSH, &sh->state);
5890 /* we only need flush for one stripe */
5891 do_flush = false;
5892 }
5893
Guoqing Jiang1684e972020-06-16 11:25:52 +02005894 set_bit(STRIPE_HANDLE, &sh->state);
NeilBrown6ed30032008-02-06 01:40:00 -08005895 clear_bit(STRIPE_DELAYED, &sh->state);
shli@kernel.org59fc6302014-12-15 12:57:03 +11005896 if ((!sh->batch_head || sh == sh->batch_head) &&
Jens Axboe1eff9d32016-08-05 15:35:16 -06005897 (bi->bi_opf & REQ_SYNC) &&
NeilBrown729a1862009-12-14 12:49:50 +11005898 !test_and_set_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
5899 atomic_inc(&conf->preread_active_stripes);
Shaohua Li8811b592012-08-02 08:33:00 +10005900 release_stripe_plug(mddev, sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005901 } else {
5902 /* cannot get stripe for read-ahead, just give-up */
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02005903 bi->bi_status = BLK_STS_IOERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005904 break;
5905 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005906 }
Shaohua Li27c0f682014-04-09 11:25:47 +08005907 finish_wait(&conf->wait_for_overlap, &w);
NeilBrown7c13edc2011-04-18 18:25:43 +10005908
NeilBrown49728052017-03-15 14:05:12 +11005909 if (rw == WRITE)
5910 md_write_end(mddev);
NeilBrown016c76a2017-03-15 14:05:13 +11005911 bio_endio(bi);
NeilBrowncc27b0c2017-06-05 16:49:39 +10005912 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005913}
5914
NeilBrownfd01b882011-10-11 16:47:53 +11005915static sector_t raid5_size(struct mddev *mddev, sector_t sectors, int raid_disks);
Dan Williamsb522adc2009-03-31 15:00:31 +11005916
NeilBrownfd01b882011-10-11 16:47:53 +11005917static sector_t reshape_request(struct mddev *mddev, sector_t sector_nr, int *skipped)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005918{
NeilBrown52c03292006-06-26 00:27:43 -07005919 /* reshaping is quite different to recovery/resync so it is
5920 * handled quite separately ... here.
5921 *
5922 * On each call to sync_request, we gather one chunk worth of
5923 * destination stripes and flag them as expanding.
5924 * Then we find all the source stripes and request reads.
5925 * As the reads complete, handle_stripe will copy the data
5926 * into the destination stripe and release that stripe.
5927 */
NeilBrownd1688a62011-10-11 16:49:52 +11005928 struct r5conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005929 struct stripe_head *sh;
NeilBrowndb0505d2017-10-17 16:18:36 +11005930 struct md_rdev *rdev;
NeilBrownccfcc3c2006-03-27 01:18:09 -08005931 sector_t first_sector, last_sector;
NeilBrownf4168852007-02-28 20:11:53 -08005932 int raid_disks = conf->previous_raid_disks;
5933 int data_disks = raid_disks - conf->max_degraded;
5934 int new_data_disks = conf->raid_disks - conf->max_degraded;
NeilBrown52c03292006-06-26 00:27:43 -07005935 int i;
5936 int dd_idx;
NeilBrownc8f517c2009-03-31 15:28:40 +11005937 sector_t writepos, readpos, safepos;
NeilBrownec32a2b2009-03-31 15:17:38 +11005938 sector_t stripe_addr;
NeilBrown7a661382009-03-31 15:21:40 +11005939 int reshape_sectors;
NeilBrownab69ae12009-03-31 15:26:47 +11005940 struct list_head stripes;
NeilBrown92140482015-07-06 12:28:45 +10005941 sector_t retn;
NeilBrown52c03292006-06-26 00:27:43 -07005942
NeilBrownfef9c612009-03-31 15:16:46 +11005943 if (sector_nr == 0) {
5944 /* If restarting in the middle, skip the initial sectors */
NeilBrown2c810cd2012-05-21 09:27:00 +10005945 if (mddev->reshape_backwards &&
NeilBrownfef9c612009-03-31 15:16:46 +11005946 conf->reshape_progress < raid5_size(mddev, 0, 0)) {
5947 sector_nr = raid5_size(mddev, 0, 0)
5948 - conf->reshape_progress;
NeilBrown6cbd8142015-07-24 13:30:32 +10005949 } else if (mddev->reshape_backwards &&
5950 conf->reshape_progress == MaxSector) {
5951 /* shouldn't happen, but just in case, finish up.*/
5952 sector_nr = MaxSector;
NeilBrown2c810cd2012-05-21 09:27:00 +10005953 } else if (!mddev->reshape_backwards &&
NeilBrownfef9c612009-03-31 15:16:46 +11005954 conf->reshape_progress > 0)
5955 sector_nr = conf->reshape_progress;
NeilBrownf4168852007-02-28 20:11:53 -08005956 sector_div(sector_nr, new_data_disks);
NeilBrownfef9c612009-03-31 15:16:46 +11005957 if (sector_nr) {
NeilBrown8dee7212009-11-06 14:59:29 +11005958 mddev->curr_resync_completed = sector_nr;
Junxiao Bie1a86db2020-07-14 16:10:26 -07005959 sysfs_notify_dirent_safe(mddev->sysfs_completed);
NeilBrownfef9c612009-03-31 15:16:46 +11005960 *skipped = 1;
NeilBrown92140482015-07-06 12:28:45 +10005961 retn = sector_nr;
5962 goto finish;
NeilBrownfef9c612009-03-31 15:16:46 +11005963 }
NeilBrown52c03292006-06-26 00:27:43 -07005964 }
5965
NeilBrown7a661382009-03-31 15:21:40 +11005966 /* We need to process a full chunk at a time.
5967 * If old and new chunk sizes differ, we need to process the
5968 * largest of these
5969 */
NeilBrown3cb5edf2015-07-15 17:24:17 +10005970
5971 reshape_sectors = max(conf->chunk_sectors, conf->prev_chunk_sectors);
NeilBrown7a661382009-03-31 15:21:40 +11005972
NeilBrownb5254dd2012-05-21 09:27:01 +10005973 /* We update the metadata at least every 10 seconds, or when
5974 * the data about to be copied would over-write the source of
5975 * the data at the front of the range. i.e. one new_stripe
5976 * along from reshape_progress new_maps to after where
5977 * reshape_safe old_maps to
NeilBrown52c03292006-06-26 00:27:43 -07005978 */
NeilBrownfef9c612009-03-31 15:16:46 +11005979 writepos = conf->reshape_progress;
NeilBrownf4168852007-02-28 20:11:53 -08005980 sector_div(writepos, new_data_disks);
NeilBrownc8f517c2009-03-31 15:28:40 +11005981 readpos = conf->reshape_progress;
5982 sector_div(readpos, data_disks);
NeilBrownfef9c612009-03-31 15:16:46 +11005983 safepos = conf->reshape_safe;
NeilBrownf4168852007-02-28 20:11:53 -08005984 sector_div(safepos, data_disks);
NeilBrown2c810cd2012-05-21 09:27:00 +10005985 if (mddev->reshape_backwards) {
NeilBrownc74c0d72015-07-15 17:54:15 +10005986 BUG_ON(writepos < reshape_sectors);
5987 writepos -= reshape_sectors;
NeilBrownc8f517c2009-03-31 15:28:40 +11005988 readpos += reshape_sectors;
NeilBrown7a661382009-03-31 15:21:40 +11005989 safepos += reshape_sectors;
NeilBrownfef9c612009-03-31 15:16:46 +11005990 } else {
NeilBrown7a661382009-03-31 15:21:40 +11005991 writepos += reshape_sectors;
NeilBrownc74c0d72015-07-15 17:54:15 +10005992 /* readpos and safepos are worst-case calculations.
5993 * A negative number is overly pessimistic, and causes
5994 * obvious problems for unsigned storage. So clip to 0.
5995 */
NeilBrowned37d832009-05-27 21:39:05 +10005996 readpos -= min_t(sector_t, reshape_sectors, readpos);
5997 safepos -= min_t(sector_t, reshape_sectors, safepos);
NeilBrownfef9c612009-03-31 15:16:46 +11005998 }
NeilBrown52c03292006-06-26 00:27:43 -07005999
NeilBrownb5254dd2012-05-21 09:27:01 +10006000 /* Having calculated the 'writepos' possibly use it
6001 * to set 'stripe_addr' which is where we will write to.
6002 */
6003 if (mddev->reshape_backwards) {
6004 BUG_ON(conf->reshape_progress == 0);
6005 stripe_addr = writepos;
6006 BUG_ON((mddev->dev_sectors &
6007 ~((sector_t)reshape_sectors - 1))
6008 - reshape_sectors - stripe_addr
6009 != sector_nr);
6010 } else {
6011 BUG_ON(writepos != sector_nr + reshape_sectors);
6012 stripe_addr = sector_nr;
6013 }
6014
NeilBrownc8f517c2009-03-31 15:28:40 +11006015 /* 'writepos' is the most advanced device address we might write.
6016 * 'readpos' is the least advanced device address we might read.
6017 * 'safepos' is the least address recorded in the metadata as having
6018 * been reshaped.
NeilBrownb5254dd2012-05-21 09:27:01 +10006019 * If there is a min_offset_diff, these are adjusted either by
6020 * increasing the safepos/readpos if diff is negative, or
6021 * increasing writepos if diff is positive.
6022 * If 'readpos' is then behind 'writepos', there is no way that we can
NeilBrownc8f517c2009-03-31 15:28:40 +11006023 * ensure safety in the face of a crash - that must be done by userspace
6024 * making a backup of the data. So in that case there is no particular
6025 * rush to update metadata.
6026 * Otherwise if 'safepos' is behind 'writepos', then we really need to
6027 * update the metadata to advance 'safepos' to match 'readpos' so that
6028 * we can be safe in the event of a crash.
6029 * So we insist on updating metadata if safepos is behind writepos and
6030 * readpos is beyond writepos.
6031 * In any case, update the metadata every 10 seconds.
6032 * Maybe that number should be configurable, but I'm not sure it is
6033 * worth it.... maybe it could be a multiple of safemode_delay???
6034 */
NeilBrownb5254dd2012-05-21 09:27:01 +10006035 if (conf->min_offset_diff < 0) {
6036 safepos += -conf->min_offset_diff;
6037 readpos += -conf->min_offset_diff;
6038 } else
6039 writepos += conf->min_offset_diff;
6040
NeilBrown2c810cd2012-05-21 09:27:00 +10006041 if ((mddev->reshape_backwards
NeilBrownc8f517c2009-03-31 15:28:40 +11006042 ? (safepos > writepos && readpos < writepos)
6043 : (safepos < writepos && readpos > writepos)) ||
6044 time_after(jiffies, conf->reshape_checkpoint + 10*HZ)) {
NeilBrown52c03292006-06-26 00:27:43 -07006045 /* Cannot proceed until we've updated the superblock... */
6046 wait_event(conf->wait_for_overlap,
NeilBrownc91abf52013-11-19 12:02:01 +11006047 atomic_read(&conf->reshape_stripes)==0
6048 || test_bit(MD_RECOVERY_INTR, &mddev->recovery));
6049 if (atomic_read(&conf->reshape_stripes) != 0)
6050 return 0;
NeilBrownfef9c612009-03-31 15:16:46 +11006051 mddev->reshape_position = conf->reshape_progress;
NeilBrown75d3da42011-01-14 09:14:34 +11006052 mddev->curr_resync_completed = sector_nr;
NeilBrowndb0505d2017-10-17 16:18:36 +11006053 if (!mddev->reshape_backwards)
6054 /* Can update recovery_offset */
6055 rdev_for_each(rdev, mddev)
6056 if (rdev->raid_disk >= 0 &&
6057 !test_bit(Journal, &rdev->flags) &&
6058 !test_bit(In_sync, &rdev->flags) &&
6059 rdev->recovery_offset < sector_nr)
6060 rdev->recovery_offset = sector_nr;
6061
NeilBrownc8f517c2009-03-31 15:28:40 +11006062 conf->reshape_checkpoint = jiffies;
Shaohua Li29530792016-12-08 15:48:19 -08006063 set_bit(MD_SB_CHANGE_DEVS, &mddev->sb_flags);
NeilBrown52c03292006-06-26 00:27:43 -07006064 md_wakeup_thread(mddev->thread);
Shaohua Li29530792016-12-08 15:48:19 -08006065 wait_event(mddev->sb_wait, mddev->sb_flags == 0 ||
NeilBrownc91abf52013-11-19 12:02:01 +11006066 test_bit(MD_RECOVERY_INTR, &mddev->recovery));
6067 if (test_bit(MD_RECOVERY_INTR, &mddev->recovery))
6068 return 0;
NeilBrown52c03292006-06-26 00:27:43 -07006069 spin_lock_irq(&conf->device_lock);
NeilBrownfef9c612009-03-31 15:16:46 +11006070 conf->reshape_safe = mddev->reshape_position;
NeilBrown52c03292006-06-26 00:27:43 -07006071 spin_unlock_irq(&conf->device_lock);
6072 wake_up(&conf->wait_for_overlap);
Junxiao Bie1a86db2020-07-14 16:10:26 -07006073 sysfs_notify_dirent_safe(mddev->sysfs_completed);
NeilBrown52c03292006-06-26 00:27:43 -07006074 }
6075
NeilBrownab69ae12009-03-31 15:26:47 +11006076 INIT_LIST_HEAD(&stripes);
Yufen Yuc911c462020-07-18 05:29:07 -04006077 for (i = 0; i < reshape_sectors; i += RAID5_STRIPE_SECTORS(conf)) {
NeilBrown52c03292006-06-26 00:27:43 -07006078 int j;
NeilBrowna9f326e2009-09-23 18:06:41 +10006079 int skipped_disk = 0;
Shaohua Li6d036f72015-08-13 14:31:57 -07006080 sh = raid5_get_active_stripe(conf, stripe_addr+i, 0, 0, 1);
NeilBrown52c03292006-06-26 00:27:43 -07006081 set_bit(STRIPE_EXPANDING, &sh->state);
6082 atomic_inc(&conf->reshape_stripes);
6083 /* If any of this stripe is beyond the end of the old
6084 * array, then we need to zero those blocks
6085 */
6086 for (j=sh->disks; j--;) {
6087 sector_t s;
6088 if (j == sh->pd_idx)
6089 continue;
NeilBrownf4168852007-02-28 20:11:53 -08006090 if (conf->level == 6 &&
NeilBrownd0dabf72009-03-31 14:39:38 +11006091 j == sh->qd_idx)
NeilBrownf4168852007-02-28 20:11:53 -08006092 continue;
Shaohua Li6d036f72015-08-13 14:31:57 -07006093 s = raid5_compute_blocknr(sh, j, 0);
Dan Williamsb522adc2009-03-31 15:00:31 +11006094 if (s < raid5_size(mddev, 0, 0)) {
NeilBrowna9f326e2009-09-23 18:06:41 +10006095 skipped_disk = 1;
NeilBrown52c03292006-06-26 00:27:43 -07006096 continue;
6097 }
Yufen Yuc911c462020-07-18 05:29:07 -04006098 memset(page_address(sh->dev[j].page), 0, RAID5_STRIPE_SIZE(conf));
NeilBrown52c03292006-06-26 00:27:43 -07006099 set_bit(R5_Expanded, &sh->dev[j].flags);
6100 set_bit(R5_UPTODATE, &sh->dev[j].flags);
6101 }
NeilBrowna9f326e2009-09-23 18:06:41 +10006102 if (!skipped_disk) {
NeilBrown52c03292006-06-26 00:27:43 -07006103 set_bit(STRIPE_EXPAND_READY, &sh->state);
6104 set_bit(STRIPE_HANDLE, &sh->state);
6105 }
NeilBrownab69ae12009-03-31 15:26:47 +11006106 list_add(&sh->lru, &stripes);
NeilBrown52c03292006-06-26 00:27:43 -07006107 }
6108 spin_lock_irq(&conf->device_lock);
NeilBrown2c810cd2012-05-21 09:27:00 +10006109 if (mddev->reshape_backwards)
NeilBrown7a661382009-03-31 15:21:40 +11006110 conf->reshape_progress -= reshape_sectors * new_data_disks;
NeilBrownfef9c612009-03-31 15:16:46 +11006111 else
NeilBrown7a661382009-03-31 15:21:40 +11006112 conf->reshape_progress += reshape_sectors * new_data_disks;
NeilBrown52c03292006-06-26 00:27:43 -07006113 spin_unlock_irq(&conf->device_lock);
6114 /* Ok, those stripe are ready. We can start scheduling
6115 * reads on the source stripes.
6116 * The source stripes are determined by mapping the first and last
6117 * block on the destination stripes.
6118 */
NeilBrown52c03292006-06-26 00:27:43 -07006119 first_sector =
NeilBrownec32a2b2009-03-31 15:17:38 +11006120 raid5_compute_sector(conf, stripe_addr*(new_data_disks),
NeilBrown911d4ee2009-03-31 14:39:38 +11006121 1, &dd_idx, NULL);
NeilBrown52c03292006-06-26 00:27:43 -07006122 last_sector =
NeilBrown0e6e0272009-06-09 16:32:22 +10006123 raid5_compute_sector(conf, ((stripe_addr+reshape_sectors)
Andre Noll09c9e5f2009-06-18 08:45:55 +10006124 * new_data_disks - 1),
NeilBrown911d4ee2009-03-31 14:39:38 +11006125 1, &dd_idx, NULL);
Andre Noll58c0fed2009-03-31 14:33:13 +11006126 if (last_sector >= mddev->dev_sectors)
6127 last_sector = mddev->dev_sectors - 1;
NeilBrown52c03292006-06-26 00:27:43 -07006128 while (first_sector <= last_sector) {
Shaohua Li6d036f72015-08-13 14:31:57 -07006129 sh = raid5_get_active_stripe(conf, first_sector, 1, 0, 1);
NeilBrown52c03292006-06-26 00:27:43 -07006130 set_bit(STRIPE_EXPAND_SOURCE, &sh->state);
6131 set_bit(STRIPE_HANDLE, &sh->state);
Shaohua Li6d036f72015-08-13 14:31:57 -07006132 raid5_release_stripe(sh);
Yufen Yuc911c462020-07-18 05:29:07 -04006133 first_sector += RAID5_STRIPE_SECTORS(conf);
NeilBrown52c03292006-06-26 00:27:43 -07006134 }
NeilBrownab69ae12009-03-31 15:26:47 +11006135 /* Now that the sources are clearly marked, we can release
6136 * the destination stripes
6137 */
6138 while (!list_empty(&stripes)) {
6139 sh = list_entry(stripes.next, struct stripe_head, lru);
6140 list_del_init(&sh->lru);
Shaohua Li6d036f72015-08-13 14:31:57 -07006141 raid5_release_stripe(sh);
NeilBrownab69ae12009-03-31 15:26:47 +11006142 }
NeilBrownc6207272008-02-06 01:39:52 -08006143 /* If this takes us to the resync_max point where we have to pause,
6144 * then we need to write out the superblock.
6145 */
NeilBrown7a661382009-03-31 15:21:40 +11006146 sector_nr += reshape_sectors;
NeilBrown92140482015-07-06 12:28:45 +10006147 retn = reshape_sectors;
6148finish:
NeilBrownc5e19d92015-07-17 12:06:02 +10006149 if (mddev->curr_resync_completed > mddev->resync_max ||
6150 (sector_nr - mddev->curr_resync_completed) * 2
NeilBrownc03f6a12009-04-17 11:06:30 +10006151 >= mddev->resync_max - mddev->curr_resync_completed) {
NeilBrownc6207272008-02-06 01:39:52 -08006152 /* Cannot proceed until we've updated the superblock... */
6153 wait_event(conf->wait_for_overlap,
NeilBrownc91abf52013-11-19 12:02:01 +11006154 atomic_read(&conf->reshape_stripes) == 0
6155 || test_bit(MD_RECOVERY_INTR, &mddev->recovery));
6156 if (atomic_read(&conf->reshape_stripes) != 0)
6157 goto ret;
NeilBrownfef9c612009-03-31 15:16:46 +11006158 mddev->reshape_position = conf->reshape_progress;
NeilBrown75d3da42011-01-14 09:14:34 +11006159 mddev->curr_resync_completed = sector_nr;
NeilBrowndb0505d2017-10-17 16:18:36 +11006160 if (!mddev->reshape_backwards)
6161 /* Can update recovery_offset */
6162 rdev_for_each(rdev, mddev)
6163 if (rdev->raid_disk >= 0 &&
6164 !test_bit(Journal, &rdev->flags) &&
6165 !test_bit(In_sync, &rdev->flags) &&
6166 rdev->recovery_offset < sector_nr)
6167 rdev->recovery_offset = sector_nr;
NeilBrownc8f517c2009-03-31 15:28:40 +11006168 conf->reshape_checkpoint = jiffies;
Shaohua Li29530792016-12-08 15:48:19 -08006169 set_bit(MD_SB_CHANGE_DEVS, &mddev->sb_flags);
NeilBrownc6207272008-02-06 01:39:52 -08006170 md_wakeup_thread(mddev->thread);
6171 wait_event(mddev->sb_wait,
Shaohua Li29530792016-12-08 15:48:19 -08006172 !test_bit(MD_SB_CHANGE_DEVS, &mddev->sb_flags)
NeilBrownc91abf52013-11-19 12:02:01 +11006173 || test_bit(MD_RECOVERY_INTR, &mddev->recovery));
6174 if (test_bit(MD_RECOVERY_INTR, &mddev->recovery))
6175 goto ret;
NeilBrownc6207272008-02-06 01:39:52 -08006176 spin_lock_irq(&conf->device_lock);
NeilBrownfef9c612009-03-31 15:16:46 +11006177 conf->reshape_safe = mddev->reshape_position;
NeilBrownc6207272008-02-06 01:39:52 -08006178 spin_unlock_irq(&conf->device_lock);
6179 wake_up(&conf->wait_for_overlap);
Junxiao Bie1a86db2020-07-14 16:10:26 -07006180 sysfs_notify_dirent_safe(mddev->sysfs_completed);
NeilBrownc6207272008-02-06 01:39:52 -08006181 }
NeilBrownc91abf52013-11-19 12:02:01 +11006182ret:
NeilBrown92140482015-07-06 12:28:45 +10006183 return retn;
NeilBrown52c03292006-06-26 00:27:43 -07006184}
6185
Shaohua Li849674e2016-01-20 13:52:20 -08006186static inline sector_t raid5_sync_request(struct mddev *mddev, sector_t sector_nr,
6187 int *skipped)
NeilBrown52c03292006-06-26 00:27:43 -07006188{
NeilBrownd1688a62011-10-11 16:49:52 +11006189 struct r5conf *conf = mddev->private;
NeilBrown52c03292006-06-26 00:27:43 -07006190 struct stripe_head *sh;
Andre Noll58c0fed2009-03-31 14:33:13 +11006191 sector_t max_sector = mddev->dev_sectors;
NeilBrown57dab0b2010-10-19 10:03:39 +11006192 sector_t sync_blocks;
NeilBrown16a53ec2006-06-26 00:27:38 -07006193 int still_degraded = 0;
6194 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006195
NeilBrown72626682005-09-09 16:23:54 -07006196 if (sector_nr >= max_sector) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006197 /* just being told to finish up .. nothing much to do */
NeilBrowncea9c222009-03-31 15:15:05 +11006198
NeilBrown29269552006-03-27 01:18:10 -08006199 if (test_bit(MD_RECOVERY_RESHAPE, &mddev->recovery)) {
6200 end_reshape(conf);
6201 return 0;
6202 }
NeilBrown72626682005-09-09 16:23:54 -07006203
6204 if (mddev->curr_resync < max_sector) /* aborted */
Andy Shevchenkoe64e40182018-08-01 15:20:50 -07006205 md_bitmap_end_sync(mddev->bitmap, mddev->curr_resync,
6206 &sync_blocks, 1);
NeilBrown16a53ec2006-06-26 00:27:38 -07006207 else /* completed sync */
NeilBrown72626682005-09-09 16:23:54 -07006208 conf->fullsync = 0;
Andy Shevchenkoe64e40182018-08-01 15:20:50 -07006209 md_bitmap_close_sync(mddev->bitmap);
NeilBrown72626682005-09-09 16:23:54 -07006210
Linus Torvalds1da177e2005-04-16 15:20:36 -07006211 return 0;
6212 }
NeilBrownccfcc3c2006-03-27 01:18:09 -08006213
NeilBrown64bd6602009-08-03 10:59:58 +10006214 /* Allow raid5_quiesce to complete */
6215 wait_event(conf->wait_for_overlap, conf->quiesce != 2);
6216
NeilBrown52c03292006-06-26 00:27:43 -07006217 if (test_bit(MD_RECOVERY_RESHAPE, &mddev->recovery))
6218 return reshape_request(mddev, sector_nr, skipped);
NeilBrownf6705572006-03-27 01:18:11 -08006219
NeilBrownc6207272008-02-06 01:39:52 -08006220 /* No need to check resync_max as we never do more than one
6221 * stripe, and as resync_max will always be on a chunk boundary,
6222 * if the check in md_do_sync didn't fire, there is no chance
6223 * of overstepping resync_max here
6224 */
6225
NeilBrown16a53ec2006-06-26 00:27:38 -07006226 /* if there is too many failed drives and we are trying
Linus Torvalds1da177e2005-04-16 15:20:36 -07006227 * to resync, then assert that we are finished, because there is
6228 * nothing we can do.
6229 */
NeilBrown3285edf2006-06-26 00:27:55 -07006230 if (mddev->degraded >= conf->max_degraded &&
NeilBrown16a53ec2006-06-26 00:27:38 -07006231 test_bit(MD_RECOVERY_SYNC, &mddev->recovery)) {
Andre Noll58c0fed2009-03-31 14:33:13 +11006232 sector_t rv = mddev->dev_sectors - sector_nr;
NeilBrown57afd892005-06-21 17:17:13 -07006233 *skipped = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006234 return rv;
6235 }
majianpeng6f608042013-04-24 11:42:41 +10006236 if (!test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery) &&
6237 !conf->fullsync &&
Andy Shevchenkoe64e40182018-08-01 15:20:50 -07006238 !md_bitmap_start_sync(mddev->bitmap, sector_nr, &sync_blocks, 1) &&
Yufen Yuc911c462020-07-18 05:29:07 -04006239 sync_blocks >= RAID5_STRIPE_SECTORS(conf)) {
NeilBrown72626682005-09-09 16:23:54 -07006240 /* we can skip this block, and probably more */
Yufen Yu83c3e5e2020-07-22 23:29:05 -04006241 do_div(sync_blocks, RAID5_STRIPE_SECTORS(conf));
NeilBrown72626682005-09-09 16:23:54 -07006242 *skipped = 1;
Yufen Yuc911c462020-07-18 05:29:07 -04006243 /* keep things rounded to whole stripes */
6244 return sync_blocks * RAID5_STRIPE_SECTORS(conf);
NeilBrown72626682005-09-09 16:23:54 -07006245 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006246
Andy Shevchenkoe64e40182018-08-01 15:20:50 -07006247 md_bitmap_cond_end_sync(mddev->bitmap, sector_nr, false);
NeilBrownb47490c2008-02-06 01:39:50 -08006248
Shaohua Li6d036f72015-08-13 14:31:57 -07006249 sh = raid5_get_active_stripe(conf, sector_nr, 0, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006250 if (sh == NULL) {
Shaohua Li6d036f72015-08-13 14:31:57 -07006251 sh = raid5_get_active_stripe(conf, sector_nr, 0, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006252 /* make sure we don't swamp the stripe cache if someone else
NeilBrown16a53ec2006-06-26 00:27:38 -07006253 * is trying to get access
Linus Torvalds1da177e2005-04-16 15:20:36 -07006254 */
Nishanth Aravamudan66c006a2005-11-07 01:01:17 -08006255 schedule_timeout_uninterruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006256 }
NeilBrown16a53ec2006-06-26 00:27:38 -07006257 /* Need to check if array will still be degraded after recovery/resync
Eric Mei16d9cfa2015-01-06 09:35:02 -08006258 * Note in case of > 1 drive failures it's possible we're rebuilding
6259 * one drive while leaving another faulty drive in array.
NeilBrown16a53ec2006-06-26 00:27:38 -07006260 */
Eric Mei16d9cfa2015-01-06 09:35:02 -08006261 rcu_read_lock();
6262 for (i = 0; i < conf->raid_disks; i++) {
Mark Rutland6aa7de02017-10-23 14:07:29 -07006263 struct md_rdev *rdev = READ_ONCE(conf->disks[i].rdev);
Eric Mei16d9cfa2015-01-06 09:35:02 -08006264
6265 if (rdev == NULL || test_bit(Faulty, &rdev->flags))
NeilBrown16a53ec2006-06-26 00:27:38 -07006266 still_degraded = 1;
Eric Mei16d9cfa2015-01-06 09:35:02 -08006267 }
6268 rcu_read_unlock();
NeilBrown16a53ec2006-06-26 00:27:38 -07006269
Andy Shevchenkoe64e40182018-08-01 15:20:50 -07006270 md_bitmap_start_sync(mddev->bitmap, sector_nr, &sync_blocks, still_degraded);
NeilBrown16a53ec2006-06-26 00:27:38 -07006271
NeilBrown83206d62011-07-26 11:19:49 +10006272 set_bit(STRIPE_SYNC_REQUESTED, &sh->state);
Eivind Sarto053f5b62014-06-09 17:06:19 -07006273 set_bit(STRIPE_HANDLE, &sh->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006274
Shaohua Li6d036f72015-08-13 14:31:57 -07006275 raid5_release_stripe(sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006276
Yufen Yuc911c462020-07-18 05:29:07 -04006277 return RAID5_STRIPE_SECTORS(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006278}
6279
NeilBrown0472a422017-03-15 14:05:13 +11006280static int retry_aligned_read(struct r5conf *conf, struct bio *raid_bio,
6281 unsigned int offset)
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08006282{
6283 /* We may not be able to submit a whole bio at once as there
6284 * may not be enough stripe_heads available.
6285 * We cannot pre-allocate enough stripe_heads as we may need
6286 * more than exist in the cache (if we allow ever large chunks).
6287 * So we do one stripe head at a time and record in
6288 * ->bi_hw_segments how many have been done.
6289 *
6290 * We *know* that this entire raid_bio is in one chunk, so
6291 * it will be only one 'dd_idx' and only need one call to raid5_compute_sector.
6292 */
6293 struct stripe_head *sh;
NeilBrown911d4ee2009-03-31 14:39:38 +11006294 int dd_idx;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08006295 sector_t sector, logical_sector, last_sector;
6296 int scnt = 0;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08006297 int handled = 0;
6298
Kent Overstreet4f024f32013-10-11 15:44:27 -07006299 logical_sector = raid_bio->bi_iter.bi_sector &
Yufen Yuc911c462020-07-18 05:29:07 -04006300 ~((sector_t)RAID5_STRIPE_SECTORS(conf)-1);
NeilBrown112bf892009-03-31 14:39:38 +11006301 sector = raid5_compute_sector(conf, logical_sector,
NeilBrown911d4ee2009-03-31 14:39:38 +11006302 0, &dd_idx, NULL);
Kent Overstreetf73a1c72012-09-25 15:05:12 -07006303 last_sector = bio_end_sector(raid_bio);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08006304
6305 for (; logical_sector < last_sector;
Yufen Yuc911c462020-07-18 05:29:07 -04006306 logical_sector += RAID5_STRIPE_SECTORS(conf),
6307 sector += RAID5_STRIPE_SECTORS(conf),
Neil Brown387bb172007-02-08 14:20:29 -08006308 scnt++) {
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08006309
NeilBrown0472a422017-03-15 14:05:13 +11006310 if (scnt < offset)
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08006311 /* already done this stripe */
6312 continue;
6313
Shaohua Li6d036f72015-08-13 14:31:57 -07006314 sh = raid5_get_active_stripe(conf, sector, 0, 1, 1);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08006315
6316 if (!sh) {
6317 /* failed to get a stripe - must wait */
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08006318 conf->retry_read_aligned = raid_bio;
NeilBrown0472a422017-03-15 14:05:13 +11006319 conf->retry_read_offset = scnt;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08006320 return handled;
6321 }
6322
shli@kernel.orgda41ba62014-12-15 12:57:03 +11006323 if (!add_stripe_bio(sh, raid_bio, dd_idx, 0, 0)) {
Shaohua Li6d036f72015-08-13 14:31:57 -07006324 raid5_release_stripe(sh);
Neil Brown387bb172007-02-08 14:20:29 -08006325 conf->retry_read_aligned = raid_bio;
NeilBrown0472a422017-03-15 14:05:13 +11006326 conf->retry_read_offset = scnt;
Neil Brown387bb172007-02-08 14:20:29 -08006327 return handled;
6328 }
6329
majianpeng3f9e7c12012-07-31 10:04:21 +10006330 set_bit(R5_ReadNoMerge, &sh->dev[dd_idx].flags);
Dan Williams36d1c642009-07-14 11:48:22 -07006331 handle_stripe(sh);
Shaohua Li6d036f72015-08-13 14:31:57 -07006332 raid5_release_stripe(sh);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08006333 handled++;
6334 }
NeilBrown016c76a2017-03-15 14:05:13 +11006335
6336 bio_endio(raid_bio);
6337
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08006338 if (atomic_dec_and_test(&conf->active_aligned_reads))
Yuanhan Liub1b46482015-05-08 18:19:06 +10006339 wake_up(&conf->wait_for_quiescent);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08006340 return handled;
6341}
6342
Shaohua Libfc90cb2013-08-29 15:40:32 +08006343static int handle_active_stripes(struct r5conf *conf, int group,
Shaohua Li566c09c2013-11-14 15:16:17 +11006344 struct r5worker *worker,
6345 struct list_head *temp_inactive_list)
Christoph Hellwigefcd4872019-04-04 18:56:16 +02006346 __releases(&conf->device_lock)
6347 __acquires(&conf->device_lock)
Shaohua Li46a06402012-08-02 08:33:15 +10006348{
6349 struct stripe_head *batch[MAX_STRIPE_BATCH], *sh;
Shaohua Li566c09c2013-11-14 15:16:17 +11006350 int i, batch_size = 0, hash;
6351 bool release_inactive = false;
Shaohua Li46a06402012-08-02 08:33:15 +10006352
6353 while (batch_size < MAX_STRIPE_BATCH &&
Shaohua Li851c30c2013-08-28 14:30:16 +08006354 (sh = __get_priority_stripe(conf, group)) != NULL)
Shaohua Li46a06402012-08-02 08:33:15 +10006355 batch[batch_size++] = sh;
6356
Shaohua Li566c09c2013-11-14 15:16:17 +11006357 if (batch_size == 0) {
6358 for (i = 0; i < NR_STRIPE_HASH_LOCKS; i++)
6359 if (!list_empty(temp_inactive_list + i))
6360 break;
Shaohua Lia8c34f92015-09-02 13:49:46 -07006361 if (i == NR_STRIPE_HASH_LOCKS) {
6362 spin_unlock_irq(&conf->device_lock);
Tomasz Majchrzak1532d9e2017-12-27 10:31:40 +01006363 log_flush_stripe_to_raid(conf);
Shaohua Lia8c34f92015-09-02 13:49:46 -07006364 spin_lock_irq(&conf->device_lock);
Shaohua Li566c09c2013-11-14 15:16:17 +11006365 return batch_size;
Shaohua Lia8c34f92015-09-02 13:49:46 -07006366 }
Shaohua Li566c09c2013-11-14 15:16:17 +11006367 release_inactive = true;
6368 }
Shaohua Li46a06402012-08-02 08:33:15 +10006369 spin_unlock_irq(&conf->device_lock);
6370
Shaohua Li566c09c2013-11-14 15:16:17 +11006371 release_inactive_stripe_list(conf, temp_inactive_list,
6372 NR_STRIPE_HASH_LOCKS);
6373
Shaohua Lia8c34f92015-09-02 13:49:46 -07006374 r5l_flush_stripe_to_raid(conf->log);
Shaohua Li566c09c2013-11-14 15:16:17 +11006375 if (release_inactive) {
6376 spin_lock_irq(&conf->device_lock);
6377 return 0;
6378 }
6379
Shaohua Li46a06402012-08-02 08:33:15 +10006380 for (i = 0; i < batch_size; i++)
6381 handle_stripe(batch[i]);
Artur Paszkiewiczff875732017-03-09 09:59:58 +01006382 log_write_stripe_run(conf);
Shaohua Li46a06402012-08-02 08:33:15 +10006383
6384 cond_resched();
6385
6386 spin_lock_irq(&conf->device_lock);
Shaohua Li566c09c2013-11-14 15:16:17 +11006387 for (i = 0; i < batch_size; i++) {
6388 hash = batch[i]->hash_lock_index;
6389 __release_stripe(conf, batch[i], &temp_inactive_list[hash]);
6390 }
Shaohua Li46a06402012-08-02 08:33:15 +10006391 return batch_size;
6392}
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08006393
Shaohua Li851c30c2013-08-28 14:30:16 +08006394static void raid5_do_work(struct work_struct *work)
6395{
6396 struct r5worker *worker = container_of(work, struct r5worker, work);
6397 struct r5worker_group *group = worker->group;
6398 struct r5conf *conf = group->conf;
NeilBrown16d997b2017-03-15 14:05:12 +11006399 struct mddev *mddev = conf->mddev;
Shaohua Li851c30c2013-08-28 14:30:16 +08006400 int group_id = group - conf->worker_groups;
6401 int handled;
6402 struct blk_plug plug;
6403
6404 pr_debug("+++ raid5worker active\n");
6405
6406 blk_start_plug(&plug);
6407 handled = 0;
6408 spin_lock_irq(&conf->device_lock);
6409 while (1) {
6410 int batch_size, released;
6411
Shaohua Li566c09c2013-11-14 15:16:17 +11006412 released = release_stripe_list(conf, worker->temp_inactive_list);
Shaohua Li851c30c2013-08-28 14:30:16 +08006413
Shaohua Li566c09c2013-11-14 15:16:17 +11006414 batch_size = handle_active_stripes(conf, group_id, worker,
6415 worker->temp_inactive_list);
Shaohua Libfc90cb2013-08-29 15:40:32 +08006416 worker->working = false;
Shaohua Li851c30c2013-08-28 14:30:16 +08006417 if (!batch_size && !released)
6418 break;
6419 handled += batch_size;
NeilBrown16d997b2017-03-15 14:05:12 +11006420 wait_event_lock_irq(mddev->sb_wait,
6421 !test_bit(MD_SB_CHANGE_PENDING, &mddev->sb_flags),
6422 conf->device_lock);
Shaohua Li851c30c2013-08-28 14:30:16 +08006423 }
6424 pr_debug("%d stripes handled\n", handled);
6425
6426 spin_unlock_irq(&conf->device_lock);
Ofer Heifetz7e96d552017-07-24 09:17:40 +03006427
Song Liu9c72a18e42017-08-24 09:53:59 -07006428 flush_deferred_bios(conf);
6429
6430 r5l_flush_stripe_to_raid(conf->log);
6431
Ofer Heifetz7e96d552017-07-24 09:17:40 +03006432 async_tx_issue_pending_all();
Shaohua Li851c30c2013-08-28 14:30:16 +08006433 blk_finish_plug(&plug);
6434
6435 pr_debug("--- raid5worker inactive\n");
6436}
6437
Linus Torvalds1da177e2005-04-16 15:20:36 -07006438/*
6439 * This is our raid5 kernel thread.
6440 *
6441 * We scan the hash table for stripes which can be handled now.
6442 * During the scan, completed stripes are saved for us by the interrupt
6443 * handler, so that they will not have to wait for our next wakeup.
6444 */
Shaohua Li4ed87312012-10-11 13:34:00 +11006445static void raid5d(struct md_thread *thread)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006446{
Shaohua Li4ed87312012-10-11 13:34:00 +11006447 struct mddev *mddev = thread->mddev;
NeilBrownd1688a62011-10-11 16:49:52 +11006448 struct r5conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006449 int handled;
NeilBrowne1dfa0a2011-04-18 18:25:41 +10006450 struct blk_plug plug;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006451
Dan Williams45b42332007-07-09 11:56:43 -07006452 pr_debug("+++ raid5d active\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07006453
6454 md_check_recovery(mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006455
NeilBrowne1dfa0a2011-04-18 18:25:41 +10006456 blk_start_plug(&plug);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006457 handled = 0;
6458 spin_lock_irq(&conf->device_lock);
6459 while (1) {
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08006460 struct bio *bio;
Shaohua Li773ca822013-08-27 17:50:39 +08006461 int batch_size, released;
NeilBrown0472a422017-03-15 14:05:13 +11006462 unsigned int offset;
Shaohua Li773ca822013-08-27 17:50:39 +08006463
Shaohua Li566c09c2013-11-14 15:16:17 +11006464 released = release_stripe_list(conf, conf->temp_inactive_list);
NeilBrownedbe83a2015-02-26 12:47:56 +11006465 if (released)
6466 clear_bit(R5_DID_ALLOC, &conf->cache_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006467
NeilBrown0021b7b2012-07-31 09:08:14 +02006468 if (
NeilBrown7c13edc2011-04-18 18:25:43 +10006469 !list_empty(&conf->bitmap_list)) {
6470 /* Now is a good time to flush some bitmap updates */
6471 conf->seq_flush++;
NeilBrown700e4322005-11-28 13:44:10 -08006472 spin_unlock_irq(&conf->device_lock);
Andy Shevchenkoe64e40182018-08-01 15:20:50 -07006473 md_bitmap_unplug(mddev->bitmap);
NeilBrown700e4322005-11-28 13:44:10 -08006474 spin_lock_irq(&conf->device_lock);
NeilBrown7c13edc2011-04-18 18:25:43 +10006475 conf->seq_write = conf->seq_flush;
Shaohua Li566c09c2013-11-14 15:16:17 +11006476 activate_bit_delay(conf, conf->temp_inactive_list);
NeilBrown72626682005-09-09 16:23:54 -07006477 }
NeilBrown0021b7b2012-07-31 09:08:14 +02006478 raid5_activate_delayed(conf);
NeilBrown72626682005-09-09 16:23:54 -07006479
NeilBrown0472a422017-03-15 14:05:13 +11006480 while ((bio = remove_bio_from_retry(conf, &offset))) {
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08006481 int ok;
6482 spin_unlock_irq(&conf->device_lock);
NeilBrown0472a422017-03-15 14:05:13 +11006483 ok = retry_aligned_read(conf, bio, offset);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08006484 spin_lock_irq(&conf->device_lock);
6485 if (!ok)
6486 break;
6487 handled++;
6488 }
6489
Shaohua Li566c09c2013-11-14 15:16:17 +11006490 batch_size = handle_active_stripes(conf, ANY_GROUP, NULL,
6491 conf->temp_inactive_list);
Shaohua Li773ca822013-08-27 17:50:39 +08006492 if (!batch_size && !released)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006493 break;
Shaohua Li46a06402012-08-02 08:33:15 +10006494 handled += batch_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006495
Shaohua Li29530792016-12-08 15:48:19 -08006496 if (mddev->sb_flags & ~(1 << MD_SB_CHANGE_PENDING)) {
Shaohua Li46a06402012-08-02 08:33:15 +10006497 spin_unlock_irq(&conf->device_lock);
NeilBrownde393cd2011-07-28 11:31:48 +10006498 md_check_recovery(mddev);
Shaohua Li46a06402012-08-02 08:33:15 +10006499 spin_lock_irq(&conf->device_lock);
6500 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006501 }
Dan Williams45b42332007-07-09 11:56:43 -07006502 pr_debug("%d stripes handled\n", handled);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006503
6504 spin_unlock_irq(&conf->device_lock);
NeilBrown2d5b5692015-07-06 12:49:23 +10006505 if (test_and_clear_bit(R5_ALLOC_MORE, &conf->cache_state) &&
6506 mutex_trylock(&conf->cache_size_mutex)) {
NeilBrownedbe83a2015-02-26 12:47:56 +11006507 grow_one_stripe(conf, __GFP_NOWARN);
6508 /* Set flag even if allocation failed. This helps
6509 * slow down allocation requests when mem is short
6510 */
6511 set_bit(R5_DID_ALLOC, &conf->cache_state);
NeilBrown2d5b5692015-07-06 12:49:23 +10006512 mutex_unlock(&conf->cache_size_mutex);
NeilBrownedbe83a2015-02-26 12:47:56 +11006513 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006514
Shaohua Li765d7042017-01-04 09:33:23 -08006515 flush_deferred_bios(conf);
6516
Shaohua Li0576b1c2015-08-13 14:32:00 -07006517 r5l_flush_stripe_to_raid(conf->log);
6518
Dan Williamsc9f21aa2008-07-23 12:05:51 -07006519 async_tx_issue_pending_all();
NeilBrowne1dfa0a2011-04-18 18:25:41 +10006520 blk_finish_plug(&plug);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006521
Dan Williams45b42332007-07-09 11:56:43 -07006522 pr_debug("--- raid5d inactive\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07006523}
6524
NeilBrown3f294f42005-11-08 21:39:25 -08006525static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11006526raid5_show_stripe_cache_size(struct mddev *mddev, char *page)
NeilBrown3f294f42005-11-08 21:39:25 -08006527{
NeilBrown7b1485b2014-12-15 12:56:59 +11006528 struct r5conf *conf;
6529 int ret = 0;
6530 spin_lock(&mddev->lock);
6531 conf = mddev->private;
NeilBrown96de1e62005-11-08 21:39:39 -08006532 if (conf)
NeilBrownedbe83a2015-02-26 12:47:56 +11006533 ret = sprintf(page, "%d\n", conf->min_nr_stripes);
NeilBrown7b1485b2014-12-15 12:56:59 +11006534 spin_unlock(&mddev->lock);
6535 return ret;
NeilBrown3f294f42005-11-08 21:39:25 -08006536}
6537
NeilBrownc41d4ac2010-06-01 19:37:24 +10006538int
NeilBrownfd01b882011-10-11 16:47:53 +11006539raid5_set_cache_size(struct mddev *mddev, int size)
NeilBrownc41d4ac2010-06-01 19:37:24 +10006540{
Alexei Naberezhnov483cbbe2018-03-27 16:54:16 -07006541 int result = 0;
NeilBrownd1688a62011-10-11 16:49:52 +11006542 struct r5conf *conf = mddev->private;
NeilBrownc41d4ac2010-06-01 19:37:24 +10006543
6544 if (size <= 16 || size > 32768)
6545 return -EINVAL;
NeilBrown486f0642015-02-25 12:10:35 +11006546
NeilBrownedbe83a2015-02-26 12:47:56 +11006547 conf->min_nr_stripes = size;
NeilBrown2d5b5692015-07-06 12:49:23 +10006548 mutex_lock(&conf->cache_size_mutex);
NeilBrown486f0642015-02-25 12:10:35 +11006549 while (size < conf->max_nr_stripes &&
6550 drop_one_stripe(conf))
6551 ;
NeilBrown2d5b5692015-07-06 12:49:23 +10006552 mutex_unlock(&conf->cache_size_mutex);
NeilBrown486f0642015-02-25 12:10:35 +11006553
Artur Paszkiewicz2214c262017-05-08 11:56:55 +02006554 md_allow_write(mddev);
NeilBrown486f0642015-02-25 12:10:35 +11006555
NeilBrown2d5b5692015-07-06 12:49:23 +10006556 mutex_lock(&conf->cache_size_mutex);
NeilBrown486f0642015-02-25 12:10:35 +11006557 while (size > conf->max_nr_stripes)
Alexei Naberezhnov483cbbe2018-03-27 16:54:16 -07006558 if (!grow_one_stripe(conf, GFP_KERNEL)) {
6559 conf->min_nr_stripes = conf->max_nr_stripes;
6560 result = -ENOMEM;
NeilBrown486f0642015-02-25 12:10:35 +11006561 break;
Alexei Naberezhnov483cbbe2018-03-27 16:54:16 -07006562 }
NeilBrown2d5b5692015-07-06 12:49:23 +10006563 mutex_unlock(&conf->cache_size_mutex);
NeilBrown486f0642015-02-25 12:10:35 +11006564
Alexei Naberezhnov483cbbe2018-03-27 16:54:16 -07006565 return result;
NeilBrownc41d4ac2010-06-01 19:37:24 +10006566}
6567EXPORT_SYMBOL(raid5_set_cache_size);
6568
NeilBrown3f294f42005-11-08 21:39:25 -08006569static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11006570raid5_store_stripe_cache_size(struct mddev *mddev, const char *page, size_t len)
NeilBrown3f294f42005-11-08 21:39:25 -08006571{
NeilBrown67918752014-12-15 12:57:01 +11006572 struct r5conf *conf;
Dan Williams4ef197d82008-04-28 02:15:54 -07006573 unsigned long new;
Dan Williamsb5470dc2008-06-27 21:44:04 -07006574 int err;
6575
NeilBrown3f294f42005-11-08 21:39:25 -08006576 if (len >= PAGE_SIZE)
6577 return -EINVAL;
Jingoo Hanb29bebd2013-06-01 16:15:16 +09006578 if (kstrtoul(page, 10, &new))
NeilBrown3f294f42005-11-08 21:39:25 -08006579 return -EINVAL;
NeilBrown67918752014-12-15 12:57:01 +11006580 err = mddev_lock(mddev);
Dan Williamsb5470dc2008-06-27 21:44:04 -07006581 if (err)
6582 return err;
NeilBrown67918752014-12-15 12:57:01 +11006583 conf = mddev->private;
6584 if (!conf)
6585 err = -ENODEV;
6586 else
6587 err = raid5_set_cache_size(mddev, new);
6588 mddev_unlock(mddev);
6589
6590 return err ?: len;
NeilBrown3f294f42005-11-08 21:39:25 -08006591}
NeilBrown007583c2005-11-08 21:39:30 -08006592
NeilBrown96de1e62005-11-08 21:39:39 -08006593static struct md_sysfs_entry
6594raid5_stripecache_size = __ATTR(stripe_cache_size, S_IRUGO | S_IWUSR,
6595 raid5_show_stripe_cache_size,
6596 raid5_store_stripe_cache_size);
NeilBrown3f294f42005-11-08 21:39:25 -08006597
6598static ssize_t
Markus Stockhausend06f1912014-12-15 12:57:05 +11006599raid5_show_rmw_level(struct mddev *mddev, char *page)
6600{
6601 struct r5conf *conf = mddev->private;
6602 if (conf)
6603 return sprintf(page, "%d\n", conf->rmw_level);
6604 else
6605 return 0;
6606}
6607
6608static ssize_t
6609raid5_store_rmw_level(struct mddev *mddev, const char *page, size_t len)
6610{
6611 struct r5conf *conf = mddev->private;
6612 unsigned long new;
6613
6614 if (!conf)
6615 return -ENODEV;
6616
6617 if (len >= PAGE_SIZE)
6618 return -EINVAL;
6619
6620 if (kstrtoul(page, 10, &new))
6621 return -EINVAL;
6622
6623 if (new != PARITY_DISABLE_RMW && !raid6_call.xor_syndrome)
6624 return -EINVAL;
6625
6626 if (new != PARITY_DISABLE_RMW &&
6627 new != PARITY_ENABLE_RMW &&
6628 new != PARITY_PREFER_RMW)
6629 return -EINVAL;
6630
6631 conf->rmw_level = new;
6632 return len;
6633}
6634
6635static struct md_sysfs_entry
6636raid5_rmw_level = __ATTR(rmw_level, S_IRUGO | S_IWUSR,
6637 raid5_show_rmw_level,
6638 raid5_store_rmw_level);
6639
Yufen Yu3b5408b2020-07-18 05:29:09 -04006640static ssize_t
6641raid5_show_stripe_size(struct mddev *mddev, char *page)
6642{
6643 struct r5conf *conf;
6644 int ret = 0;
6645
6646 spin_lock(&mddev->lock);
6647 conf = mddev->private;
6648 if (conf)
6649 ret = sprintf(page, "%lu\n", RAID5_STRIPE_SIZE(conf));
6650 spin_unlock(&mddev->lock);
6651 return ret;
6652}
6653
6654#if PAGE_SIZE != DEFAULT_STRIPE_SIZE
6655static ssize_t
6656raid5_store_stripe_size(struct mddev *mddev, const char *page, size_t len)
6657{
6658 struct r5conf *conf;
6659 unsigned long new;
6660 int err;
6661
6662 if (len >= PAGE_SIZE)
6663 return -EINVAL;
6664 if (kstrtoul(page, 10, &new))
6665 return -EINVAL;
6666
6667 /*
6668 * The value should not be bigger than PAGE_SIZE. It requires to
Yufen Yu6af10a32020-08-20 09:22:05 -04006669 * be multiple of DEFAULT_STRIPE_SIZE and the value should be power
6670 * of two.
Yufen Yu3b5408b2020-07-18 05:29:09 -04006671 */
Yufen Yu6af10a32020-08-20 09:22:05 -04006672 if (new % DEFAULT_STRIPE_SIZE != 0 ||
6673 new > PAGE_SIZE || new == 0 ||
6674 new != roundup_pow_of_two(new))
Yufen Yu3b5408b2020-07-18 05:29:09 -04006675 return -EINVAL;
6676
6677 err = mddev_lock(mddev);
6678 if (err)
6679 return err;
6680
6681 conf = mddev->private;
6682 if (!conf) {
6683 err = -ENODEV;
6684 goto out_unlock;
6685 }
6686
6687 if (new == conf->stripe_size)
6688 goto out_unlock;
6689
6690 pr_debug("md/raid: change stripe_size from %lu to %lu\n",
6691 conf->stripe_size, new);
6692
6693 mddev_suspend(mddev);
6694 conf->stripe_size = new;
6695 conf->stripe_shift = ilog2(new) - 9;
6696 conf->stripe_sectors = new >> 9;
6697 mddev_resume(mddev);
6698
6699out_unlock:
6700 mddev_unlock(mddev);
6701 return err ?: len;
6702}
6703
6704static struct md_sysfs_entry
6705raid5_stripe_size = __ATTR(stripe_size, 0644,
6706 raid5_show_stripe_size,
6707 raid5_store_stripe_size);
6708#else
6709static struct md_sysfs_entry
6710raid5_stripe_size = __ATTR(stripe_size, 0444,
6711 raid5_show_stripe_size,
6712 NULL);
6713#endif
Markus Stockhausend06f1912014-12-15 12:57:05 +11006714
6715static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11006716raid5_show_preread_threshold(struct mddev *mddev, char *page)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07006717{
NeilBrown7b1485b2014-12-15 12:56:59 +11006718 struct r5conf *conf;
6719 int ret = 0;
6720 spin_lock(&mddev->lock);
6721 conf = mddev->private;
Dan Williams8b3e6cd2008-04-28 02:15:53 -07006722 if (conf)
NeilBrown7b1485b2014-12-15 12:56:59 +11006723 ret = sprintf(page, "%d\n", conf->bypass_threshold);
6724 spin_unlock(&mddev->lock);
6725 return ret;
Dan Williams8b3e6cd2008-04-28 02:15:53 -07006726}
6727
6728static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11006729raid5_store_preread_threshold(struct mddev *mddev, const char *page, size_t len)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07006730{
NeilBrown67918752014-12-15 12:57:01 +11006731 struct r5conf *conf;
Dan Williams4ef197d82008-04-28 02:15:54 -07006732 unsigned long new;
NeilBrown67918752014-12-15 12:57:01 +11006733 int err;
6734
Dan Williams8b3e6cd2008-04-28 02:15:53 -07006735 if (len >= PAGE_SIZE)
6736 return -EINVAL;
Jingoo Hanb29bebd2013-06-01 16:15:16 +09006737 if (kstrtoul(page, 10, &new))
Dan Williams8b3e6cd2008-04-28 02:15:53 -07006738 return -EINVAL;
NeilBrown67918752014-12-15 12:57:01 +11006739
6740 err = mddev_lock(mddev);
6741 if (err)
6742 return err;
6743 conf = mddev->private;
6744 if (!conf)
6745 err = -ENODEV;
NeilBrownedbe83a2015-02-26 12:47:56 +11006746 else if (new > conf->min_nr_stripes)
NeilBrown67918752014-12-15 12:57:01 +11006747 err = -EINVAL;
6748 else
6749 conf->bypass_threshold = new;
6750 mddev_unlock(mddev);
6751 return err ?: len;
Dan Williams8b3e6cd2008-04-28 02:15:53 -07006752}
6753
6754static struct md_sysfs_entry
6755raid5_preread_bypass_threshold = __ATTR(preread_bypass_threshold,
6756 S_IRUGO | S_IWUSR,
6757 raid5_show_preread_threshold,
6758 raid5_store_preread_threshold);
6759
6760static ssize_t
Shaohua Lid592a992014-05-21 17:57:44 +08006761raid5_show_skip_copy(struct mddev *mddev, char *page)
6762{
NeilBrown7b1485b2014-12-15 12:56:59 +11006763 struct r5conf *conf;
6764 int ret = 0;
6765 spin_lock(&mddev->lock);
6766 conf = mddev->private;
Shaohua Lid592a992014-05-21 17:57:44 +08006767 if (conf)
NeilBrown7b1485b2014-12-15 12:56:59 +11006768 ret = sprintf(page, "%d\n", conf->skip_copy);
6769 spin_unlock(&mddev->lock);
6770 return ret;
Shaohua Lid592a992014-05-21 17:57:44 +08006771}
6772
6773static ssize_t
6774raid5_store_skip_copy(struct mddev *mddev, const char *page, size_t len)
6775{
NeilBrown67918752014-12-15 12:57:01 +11006776 struct r5conf *conf;
Shaohua Lid592a992014-05-21 17:57:44 +08006777 unsigned long new;
NeilBrown67918752014-12-15 12:57:01 +11006778 int err;
6779
Shaohua Lid592a992014-05-21 17:57:44 +08006780 if (len >= PAGE_SIZE)
6781 return -EINVAL;
Shaohua Lid592a992014-05-21 17:57:44 +08006782 if (kstrtoul(page, 10, &new))
6783 return -EINVAL;
6784 new = !!new;
Shaohua Lid592a992014-05-21 17:57:44 +08006785
NeilBrown67918752014-12-15 12:57:01 +11006786 err = mddev_lock(mddev);
6787 if (err)
6788 return err;
6789 conf = mddev->private;
6790 if (!conf)
6791 err = -ENODEV;
6792 else if (new != conf->skip_copy) {
Christoph Hellwig1cb039f2020-09-24 08:51:38 +02006793 struct request_queue *q = mddev->queue;
6794
NeilBrown67918752014-12-15 12:57:01 +11006795 mddev_suspend(mddev);
6796 conf->skip_copy = new;
6797 if (new)
Christoph Hellwig1cb039f2020-09-24 08:51:38 +02006798 blk_queue_flag_set(QUEUE_FLAG_STABLE_WRITES, q);
NeilBrown67918752014-12-15 12:57:01 +11006799 else
Christoph Hellwig1cb039f2020-09-24 08:51:38 +02006800 blk_queue_flag_clear(QUEUE_FLAG_STABLE_WRITES, q);
NeilBrown67918752014-12-15 12:57:01 +11006801 mddev_resume(mddev);
6802 }
6803 mddev_unlock(mddev);
6804 return err ?: len;
Shaohua Lid592a992014-05-21 17:57:44 +08006805}
6806
6807static struct md_sysfs_entry
6808raid5_skip_copy = __ATTR(skip_copy, S_IRUGO | S_IWUSR,
6809 raid5_show_skip_copy,
6810 raid5_store_skip_copy);
6811
Shaohua Lid592a992014-05-21 17:57:44 +08006812static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11006813stripe_cache_active_show(struct mddev *mddev, char *page)
NeilBrown3f294f42005-11-08 21:39:25 -08006814{
NeilBrownd1688a62011-10-11 16:49:52 +11006815 struct r5conf *conf = mddev->private;
NeilBrown96de1e62005-11-08 21:39:39 -08006816 if (conf)
6817 return sprintf(page, "%d\n", atomic_read(&conf->active_stripes));
6818 else
6819 return 0;
NeilBrown3f294f42005-11-08 21:39:25 -08006820}
6821
NeilBrown96de1e62005-11-08 21:39:39 -08006822static struct md_sysfs_entry
6823raid5_stripecache_active = __ATTR_RO(stripe_cache_active);
NeilBrown3f294f42005-11-08 21:39:25 -08006824
Shaohua Lib7214202013-08-27 17:50:42 +08006825static ssize_t
6826raid5_show_group_thread_cnt(struct mddev *mddev, char *page)
6827{
NeilBrown7b1485b2014-12-15 12:56:59 +11006828 struct r5conf *conf;
6829 int ret = 0;
6830 spin_lock(&mddev->lock);
6831 conf = mddev->private;
Shaohua Lib7214202013-08-27 17:50:42 +08006832 if (conf)
NeilBrown7b1485b2014-12-15 12:56:59 +11006833 ret = sprintf(page, "%d\n", conf->worker_cnt_per_group);
6834 spin_unlock(&mddev->lock);
6835 return ret;
Shaohua Lib7214202013-08-27 17:50:42 +08006836}
6837
majianpeng60aaf932013-11-14 15:16:20 +11006838static int alloc_thread_groups(struct r5conf *conf, int cnt,
6839 int *group_cnt,
majianpeng60aaf932013-11-14 15:16:20 +11006840 struct r5worker_group **worker_groups);
Shaohua Lib7214202013-08-27 17:50:42 +08006841static ssize_t
6842raid5_store_group_thread_cnt(struct mddev *mddev, const char *page, size_t len)
6843{
NeilBrown67918752014-12-15 12:57:01 +11006844 struct r5conf *conf;
Shaohua Li7d5d7b52017-09-21 11:03:52 -07006845 unsigned int new;
Shaohua Lib7214202013-08-27 17:50:42 +08006846 int err;
majianpeng60aaf932013-11-14 15:16:20 +11006847 struct r5worker_group *new_groups, *old_groups;
Guoqing Jiangd2c9ad42019-12-20 15:46:29 +01006848 int group_cnt;
Shaohua Lib7214202013-08-27 17:50:42 +08006849
6850 if (len >= PAGE_SIZE)
6851 return -EINVAL;
Shaohua Li7d5d7b52017-09-21 11:03:52 -07006852 if (kstrtouint(page, 10, &new))
6853 return -EINVAL;
6854 /* 8192 should be big enough */
6855 if (new > 8192)
Shaohua Lib7214202013-08-27 17:50:42 +08006856 return -EINVAL;
6857
NeilBrown67918752014-12-15 12:57:01 +11006858 err = mddev_lock(mddev);
Shaohua Lib7214202013-08-27 17:50:42 +08006859 if (err)
6860 return err;
NeilBrown67918752014-12-15 12:57:01 +11006861 conf = mddev->private;
6862 if (!conf)
6863 err = -ENODEV;
6864 else if (new != conf->worker_cnt_per_group) {
6865 mddev_suspend(mddev);
6866
6867 old_groups = conf->worker_groups;
6868 if (old_groups)
6869 flush_workqueue(raid5_wq);
6870
Guoqing Jiangd2c9ad42019-12-20 15:46:29 +01006871 err = alloc_thread_groups(conf, new, &group_cnt, &new_groups);
NeilBrown67918752014-12-15 12:57:01 +11006872 if (!err) {
6873 spin_lock_irq(&conf->device_lock);
6874 conf->group_cnt = group_cnt;
Guoqing Jiangd2c9ad42019-12-20 15:46:29 +01006875 conf->worker_cnt_per_group = new;
NeilBrown67918752014-12-15 12:57:01 +11006876 conf->worker_groups = new_groups;
6877 spin_unlock_irq(&conf->device_lock);
6878
6879 if (old_groups)
6880 kfree(old_groups[0].workers);
6881 kfree(old_groups);
6882 }
6883 mddev_resume(mddev);
6884 }
6885 mddev_unlock(mddev);
6886
6887 return err ?: len;
Shaohua Lib7214202013-08-27 17:50:42 +08006888}
6889
6890static struct md_sysfs_entry
6891raid5_group_thread_cnt = __ATTR(group_thread_cnt, S_IRUGO | S_IWUSR,
6892 raid5_show_group_thread_cnt,
6893 raid5_store_group_thread_cnt);
6894
NeilBrown007583c2005-11-08 21:39:30 -08006895static struct attribute *raid5_attrs[] = {
NeilBrown3f294f42005-11-08 21:39:25 -08006896 &raid5_stripecache_size.attr,
6897 &raid5_stripecache_active.attr,
Dan Williams8b3e6cd2008-04-28 02:15:53 -07006898 &raid5_preread_bypass_threshold.attr,
Shaohua Lib7214202013-08-27 17:50:42 +08006899 &raid5_group_thread_cnt.attr,
Shaohua Lid592a992014-05-21 17:57:44 +08006900 &raid5_skip_copy.attr,
Markus Stockhausend06f1912014-12-15 12:57:05 +11006901 &raid5_rmw_level.attr,
Yufen Yu3b5408b2020-07-18 05:29:09 -04006902 &raid5_stripe_size.attr,
Song Liu2c7da142016-11-17 15:24:41 -08006903 &r5c_journal_mode.attr,
Mariusz Dabrowskia596d082019-02-18 15:04:09 +01006904 &ppl_write_hint.attr,
NeilBrown3f294f42005-11-08 21:39:25 -08006905 NULL,
6906};
NeilBrown007583c2005-11-08 21:39:30 -08006907static struct attribute_group raid5_attrs_group = {
6908 .name = NULL,
6909 .attrs = raid5_attrs,
NeilBrown3f294f42005-11-08 21:39:25 -08006910};
6911
Guoqing Jiangd2c9ad42019-12-20 15:46:29 +01006912static int alloc_thread_groups(struct r5conf *conf, int cnt, int *group_cnt,
majianpeng60aaf932013-11-14 15:16:20 +11006913 struct r5worker_group **worker_groups)
Shaohua Li851c30c2013-08-28 14:30:16 +08006914{
Shaohua Li566c09c2013-11-14 15:16:17 +11006915 int i, j, k;
Shaohua Li851c30c2013-08-28 14:30:16 +08006916 ssize_t size;
6917 struct r5worker *workers;
6918
Shaohua Li851c30c2013-08-28 14:30:16 +08006919 if (cnt == 0) {
majianpeng60aaf932013-11-14 15:16:20 +11006920 *group_cnt = 0;
6921 *worker_groups = NULL;
Shaohua Li851c30c2013-08-28 14:30:16 +08006922 return 0;
6923 }
majianpeng60aaf932013-11-14 15:16:20 +11006924 *group_cnt = num_possible_nodes();
Shaohua Li851c30c2013-08-28 14:30:16 +08006925 size = sizeof(struct r5worker) * cnt;
Kees Cook6396bb22018-06-12 14:03:40 -07006926 workers = kcalloc(size, *group_cnt, GFP_NOIO);
6927 *worker_groups = kcalloc(*group_cnt, sizeof(struct r5worker_group),
6928 GFP_NOIO);
majianpeng60aaf932013-11-14 15:16:20 +11006929 if (!*worker_groups || !workers) {
Shaohua Li851c30c2013-08-28 14:30:16 +08006930 kfree(workers);
majianpeng60aaf932013-11-14 15:16:20 +11006931 kfree(*worker_groups);
Shaohua Li851c30c2013-08-28 14:30:16 +08006932 return -ENOMEM;
6933 }
6934
majianpeng60aaf932013-11-14 15:16:20 +11006935 for (i = 0; i < *group_cnt; i++) {
Shaohua Li851c30c2013-08-28 14:30:16 +08006936 struct r5worker_group *group;
6937
NeilBrown0c775d52013-11-25 11:12:43 +11006938 group = &(*worker_groups)[i];
Shaohua Li851c30c2013-08-28 14:30:16 +08006939 INIT_LIST_HEAD(&group->handle_list);
Shaohua Li535ae4e2017-02-15 19:37:32 -08006940 INIT_LIST_HEAD(&group->loprio_list);
Shaohua Li851c30c2013-08-28 14:30:16 +08006941 group->conf = conf;
6942 group->workers = workers + i * cnt;
6943
6944 for (j = 0; j < cnt; j++) {
Shaohua Li566c09c2013-11-14 15:16:17 +11006945 struct r5worker *worker = group->workers + j;
6946 worker->group = group;
6947 INIT_WORK(&worker->work, raid5_do_work);
6948
6949 for (k = 0; k < NR_STRIPE_HASH_LOCKS; k++)
6950 INIT_LIST_HEAD(worker->temp_inactive_list + k);
Shaohua Li851c30c2013-08-28 14:30:16 +08006951 }
6952 }
6953
6954 return 0;
6955}
6956
6957static void free_thread_groups(struct r5conf *conf)
6958{
6959 if (conf->worker_groups)
6960 kfree(conf->worker_groups[0].workers);
6961 kfree(conf->worker_groups);
6962 conf->worker_groups = NULL;
6963}
6964
Dan Williams80c3a6c2009-03-17 18:10:40 -07006965static sector_t
NeilBrownfd01b882011-10-11 16:47:53 +11006966raid5_size(struct mddev *mddev, sector_t sectors, int raid_disks)
Dan Williams80c3a6c2009-03-17 18:10:40 -07006967{
NeilBrownd1688a62011-10-11 16:49:52 +11006968 struct r5conf *conf = mddev->private;
Dan Williams80c3a6c2009-03-17 18:10:40 -07006969
6970 if (!sectors)
6971 sectors = mddev->dev_sectors;
NeilBrown5e5e3e72009-10-16 16:35:30 +11006972 if (!raid_disks)
NeilBrown7ec05472009-03-31 15:10:36 +11006973 /* size is defined by the smallest of previous and new size */
NeilBrown5e5e3e72009-10-16 16:35:30 +11006974 raid_disks = min(conf->raid_disks, conf->previous_raid_disks);
Dan Williams80c3a6c2009-03-17 18:10:40 -07006975
NeilBrown3cb5edf2015-07-15 17:24:17 +10006976 sectors &= ~((sector_t)conf->chunk_sectors - 1);
6977 sectors &= ~((sector_t)conf->prev_chunk_sectors - 1);
Dan Williams80c3a6c2009-03-17 18:10:40 -07006978 return sectors * (raid_disks - conf->max_degraded);
6979}
6980
Oleg Nesterov789b5e02014-02-06 03:42:45 +05306981static void free_scratch_buffer(struct r5conf *conf, struct raid5_percpu *percpu)
6982{
6983 safe_put_page(percpu->spare_page);
Oleg Nesterov789b5e02014-02-06 03:42:45 +05306984 percpu->spare_page = NULL;
Kent Overstreetb330e6a2019-03-11 23:31:06 -07006985 kvfree(percpu->scribble);
Oleg Nesterov789b5e02014-02-06 03:42:45 +05306986 percpu->scribble = NULL;
6987}
6988
6989static int alloc_scratch_buffer(struct r5conf *conf, struct raid5_percpu *percpu)
6990{
Kent Overstreetb330e6a2019-03-11 23:31:06 -07006991 if (conf->level == 6 && !percpu->spare_page) {
Oleg Nesterov789b5e02014-02-06 03:42:45 +05306992 percpu->spare_page = alloc_page(GFP_KERNEL);
Kent Overstreetb330e6a2019-03-11 23:31:06 -07006993 if (!percpu->spare_page)
6994 return -ENOMEM;
6995 }
Oleg Nesterov789b5e02014-02-06 03:42:45 +05306996
Kent Overstreetb330e6a2019-03-11 23:31:06 -07006997 if (scribble_alloc(percpu,
6998 max(conf->raid_disks,
6999 conf->previous_raid_disks),
7000 max(conf->chunk_sectors,
7001 conf->prev_chunk_sectors)
Yufen Yuc911c462020-07-18 05:29:07 -04007002 / RAID5_STRIPE_SECTORS(conf))) {
Oleg Nesterov789b5e02014-02-06 03:42:45 +05307003 free_scratch_buffer(conf, percpu);
7004 return -ENOMEM;
7005 }
7006
7007 return 0;
7008}
7009
Sebastian Andrzej Siewior29c6d1b2016-08-18 14:57:24 +02007010static int raid456_cpu_dead(unsigned int cpu, struct hlist_node *node)
7011{
7012 struct r5conf *conf = hlist_entry_safe(node, struct r5conf, node);
7013
7014 free_scratch_buffer(conf, per_cpu_ptr(conf->percpu, cpu));
7015 return 0;
7016}
7017
NeilBrownd1688a62011-10-11 16:49:52 +11007018static void raid5_free_percpu(struct r5conf *conf)
Dan Williams36d1c642009-07-14 11:48:22 -07007019{
Dan Williams36d1c642009-07-14 11:48:22 -07007020 if (!conf->percpu)
7021 return;
7022
Sebastian Andrzej Siewior29c6d1b2016-08-18 14:57:24 +02007023 cpuhp_state_remove_instance(CPUHP_MD_RAID5_PREPARE, &conf->node);
Dan Williams36d1c642009-07-14 11:48:22 -07007024 free_percpu(conf->percpu);
7025}
7026
NeilBrownd1688a62011-10-11 16:49:52 +11007027static void free_conf(struct r5conf *conf)
Dan Williams95fc17a2009-07-31 12:39:15 +10007028{
Song Liud7bd3982016-11-23 22:50:39 -08007029 int i;
7030
Artur Paszkiewiczff875732017-03-09 09:59:58 +01007031 log_exit(conf);
7032
Aliaksei Karaliou565e0452017-12-23 21:20:31 +03007033 unregister_shrinker(&conf->shrinker);
Shaohua Li851c30c2013-08-28 14:30:16 +08007034 free_thread_groups(conf);
Dan Williams95fc17a2009-07-31 12:39:15 +10007035 shrink_stripes(conf);
Dan Williams36d1c642009-07-14 11:48:22 -07007036 raid5_free_percpu(conf);
Song Liud7bd3982016-11-23 22:50:39 -08007037 for (i = 0; i < conf->pool_size; i++)
7038 if (conf->disks[i].extra_page)
7039 put_page(conf->disks[i].extra_page);
Dan Williams95fc17a2009-07-31 12:39:15 +10007040 kfree(conf->disks);
Kent Overstreetafeee512018-05-20 18:25:52 -04007041 bioset_exit(&conf->bio_split);
Dan Williams95fc17a2009-07-31 12:39:15 +10007042 kfree(conf->stripe_hashtbl);
Shaohua Liaaf9f122017-03-03 22:06:12 -08007043 kfree(conf->pending_data);
Dan Williams95fc17a2009-07-31 12:39:15 +10007044 kfree(conf);
7045}
7046
Sebastian Andrzej Siewior29c6d1b2016-08-18 14:57:24 +02007047static int raid456_cpu_up_prepare(unsigned int cpu, struct hlist_node *node)
Dan Williams36d1c642009-07-14 11:48:22 -07007048{
Sebastian Andrzej Siewior29c6d1b2016-08-18 14:57:24 +02007049 struct r5conf *conf = hlist_entry_safe(node, struct r5conf, node);
Dan Williams36d1c642009-07-14 11:48:22 -07007050 struct raid5_percpu *percpu = per_cpu_ptr(conf->percpu, cpu);
7051
Sebastian Andrzej Siewior29c6d1b2016-08-18 14:57:24 +02007052 if (alloc_scratch_buffer(conf, percpu)) {
NeilBrowncc6167b2016-11-02 14:16:50 +11007053 pr_warn("%s: failed memory allocation for cpu%u\n",
7054 __func__, cpu);
Sebastian Andrzej Siewior29c6d1b2016-08-18 14:57:24 +02007055 return -ENOMEM;
Dan Williams36d1c642009-07-14 11:48:22 -07007056 }
Sebastian Andrzej Siewior29c6d1b2016-08-18 14:57:24 +02007057 return 0;
Dan Williams36d1c642009-07-14 11:48:22 -07007058}
Dan Williams36d1c642009-07-14 11:48:22 -07007059
NeilBrownd1688a62011-10-11 16:49:52 +11007060static int raid5_alloc_percpu(struct r5conf *conf)
Dan Williams36d1c642009-07-14 11:48:22 -07007061{
Oleg Nesterov789b5e02014-02-06 03:42:45 +05307062 int err = 0;
Dan Williams36d1c642009-07-14 11:48:22 -07007063
Oleg Nesterov789b5e02014-02-06 03:42:45 +05307064 conf->percpu = alloc_percpu(struct raid5_percpu);
7065 if (!conf->percpu)
Dan Williams36d1c642009-07-14 11:48:22 -07007066 return -ENOMEM;
Dan Williams36d1c642009-07-14 11:48:22 -07007067
Sebastian Andrzej Siewior29c6d1b2016-08-18 14:57:24 +02007068 err = cpuhp_state_add_instance(CPUHP_MD_RAID5_PREPARE, &conf->node);
Shaohua Li27a353c2016-02-24 17:38:28 -08007069 if (!err) {
7070 conf->scribble_disks = max(conf->raid_disks,
7071 conf->previous_raid_disks);
7072 conf->scribble_sectors = max(conf->chunk_sectors,
7073 conf->prev_chunk_sectors);
7074 }
Dan Williams36d1c642009-07-14 11:48:22 -07007075 return err;
7076}
7077
NeilBrownedbe83a2015-02-26 12:47:56 +11007078static unsigned long raid5_cache_scan(struct shrinker *shrink,
7079 struct shrink_control *sc)
7080{
7081 struct r5conf *conf = container_of(shrink, struct r5conf, shrinker);
NeilBrown2d5b5692015-07-06 12:49:23 +10007082 unsigned long ret = SHRINK_STOP;
7083
7084 if (mutex_trylock(&conf->cache_size_mutex)) {
7085 ret= 0;
NeilBrown49895bc2015-08-03 17:09:57 +10007086 while (ret < sc->nr_to_scan &&
7087 conf->max_nr_stripes > conf->min_nr_stripes) {
NeilBrown2d5b5692015-07-06 12:49:23 +10007088 if (drop_one_stripe(conf) == 0) {
7089 ret = SHRINK_STOP;
7090 break;
7091 }
7092 ret++;
7093 }
7094 mutex_unlock(&conf->cache_size_mutex);
NeilBrownedbe83a2015-02-26 12:47:56 +11007095 }
7096 return ret;
7097}
7098
7099static unsigned long raid5_cache_count(struct shrinker *shrink,
7100 struct shrink_control *sc)
7101{
7102 struct r5conf *conf = container_of(shrink, struct r5conf, shrinker);
7103
7104 if (conf->max_nr_stripes < conf->min_nr_stripes)
7105 /* unlikely, but not impossible */
7106 return 0;
7107 return conf->max_nr_stripes - conf->min_nr_stripes;
7108}
7109
NeilBrownd1688a62011-10-11 16:49:52 +11007110static struct r5conf *setup_conf(struct mddev *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007111{
NeilBrownd1688a62011-10-11 16:49:52 +11007112 struct r5conf *conf;
NeilBrown5e5e3e72009-10-16 16:35:30 +11007113 int raid_disk, memory, max_disks;
NeilBrown3cb03002011-10-11 16:45:26 +11007114 struct md_rdev *rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007115 struct disk_info *disk;
NeilBrown02326052012-07-03 15:56:52 +10007116 char pers_name[6];
Shaohua Li566c09c2013-11-14 15:16:17 +11007117 int i;
Guoqing Jiangd2c9ad42019-12-20 15:46:29 +01007118 int group_cnt;
majianpeng60aaf932013-11-14 15:16:20 +11007119 struct r5worker_group *new_group;
Kent Overstreetafeee512018-05-20 18:25:52 -04007120 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007121
NeilBrown91adb562009-03-31 14:39:39 +11007122 if (mddev->new_level != 5
7123 && mddev->new_level != 4
7124 && mddev->new_level != 6) {
NeilBrowncc6167b2016-11-02 14:16:50 +11007125 pr_warn("md/raid:%s: raid level not set to 4/5/6 (%d)\n",
7126 mdname(mddev), mddev->new_level);
NeilBrown91adb562009-03-31 14:39:39 +11007127 return ERR_PTR(-EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007128 }
NeilBrown91adb562009-03-31 14:39:39 +11007129 if ((mddev->new_level == 5
7130 && !algorithm_valid_raid5(mddev->new_layout)) ||
7131 (mddev->new_level == 6
7132 && !algorithm_valid_raid6(mddev->new_layout))) {
NeilBrowncc6167b2016-11-02 14:16:50 +11007133 pr_warn("md/raid:%s: layout %d not supported\n",
7134 mdname(mddev), mddev->new_layout);
NeilBrown91adb562009-03-31 14:39:39 +11007135 return ERR_PTR(-EIO);
7136 }
7137 if (mddev->new_level == 6 && mddev->raid_disks < 4) {
NeilBrowncc6167b2016-11-02 14:16:50 +11007138 pr_warn("md/raid:%s: not enough configured devices (%d, minimum 4)\n",
7139 mdname(mddev), mddev->raid_disks);
NeilBrown91adb562009-03-31 14:39:39 +11007140 return ERR_PTR(-EINVAL);
NeilBrown99c0fb52009-03-31 14:39:38 +11007141 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007142
Andre Noll664e7c42009-06-18 08:45:27 +10007143 if (!mddev->new_chunk_sectors ||
7144 (mddev->new_chunk_sectors << 9) % PAGE_SIZE ||
7145 !is_power_of_2(mddev->new_chunk_sectors)) {
NeilBrowncc6167b2016-11-02 14:16:50 +11007146 pr_warn("md/raid:%s: invalid chunk size %d\n",
7147 mdname(mddev), mddev->new_chunk_sectors << 9);
NeilBrown91adb562009-03-31 14:39:39 +11007148 return ERR_PTR(-EINVAL);
NeilBrown4bbf3772008-10-13 11:55:12 +11007149 }
7150
NeilBrownd1688a62011-10-11 16:49:52 +11007151 conf = kzalloc(sizeof(struct r5conf), GFP_KERNEL);
NeilBrown91adb562009-03-31 14:39:39 +11007152 if (conf == NULL)
7153 goto abort;
Yufen Yuc911c462020-07-18 05:29:07 -04007154
Yufen Yue2368582020-07-18 05:29:08 -04007155#if PAGE_SIZE != DEFAULT_STRIPE_SIZE
7156 conf->stripe_size = DEFAULT_STRIPE_SIZE;
7157 conf->stripe_shift = ilog2(DEFAULT_STRIPE_SIZE) - 9;
7158 conf->stripe_sectors = DEFAULT_STRIPE_SIZE >> 9;
7159#endif
Shaohua Liaaf9f122017-03-03 22:06:12 -08007160 INIT_LIST_HEAD(&conf->free_list);
7161 INIT_LIST_HEAD(&conf->pending_list);
Kees Cook6396bb22018-06-12 14:03:40 -07007162 conf->pending_data = kcalloc(PENDING_IO_MAX,
7163 sizeof(struct r5pending_data),
7164 GFP_KERNEL);
Shaohua Liaaf9f122017-03-03 22:06:12 -08007165 if (!conf->pending_data)
7166 goto abort;
7167 for (i = 0; i < PENDING_IO_MAX; i++)
7168 list_add(&conf->pending_data[i].sibling, &conf->free_list);
Shaohua Li851c30c2013-08-28 14:30:16 +08007169 /* Don't enable multi-threading by default*/
Guoqing Jiangd2c9ad42019-12-20 15:46:29 +01007170 if (!alloc_thread_groups(conf, 0, &group_cnt, &new_group)) {
majianpeng60aaf932013-11-14 15:16:20 +11007171 conf->group_cnt = group_cnt;
Guoqing Jiangd2c9ad42019-12-20 15:46:29 +01007172 conf->worker_cnt_per_group = 0;
majianpeng60aaf932013-11-14 15:16:20 +11007173 conf->worker_groups = new_group;
7174 } else
Shaohua Li851c30c2013-08-28 14:30:16 +08007175 goto abort;
Dan Williamsf5efd452009-10-16 15:55:38 +11007176 spin_lock_init(&conf->device_lock);
Ahmed S. Darwish0a87b252020-07-20 17:55:25 +02007177 seqcount_spinlock_init(&conf->gen_lock, &conf->device_lock);
NeilBrown2d5b5692015-07-06 12:49:23 +10007178 mutex_init(&conf->cache_size_mutex);
Yuanhan Liub1b46482015-05-08 18:19:06 +10007179 init_waitqueue_head(&conf->wait_for_quiescent);
Shaohua Li6ab2a4b2016-02-25 16:24:42 -08007180 init_waitqueue_head(&conf->wait_for_stripe);
Dan Williamsf5efd452009-10-16 15:55:38 +11007181 init_waitqueue_head(&conf->wait_for_overlap);
7182 INIT_LIST_HEAD(&conf->handle_list);
Shaohua Li535ae4e2017-02-15 19:37:32 -08007183 INIT_LIST_HEAD(&conf->loprio_list);
Dan Williamsf5efd452009-10-16 15:55:38 +11007184 INIT_LIST_HEAD(&conf->hold_list);
7185 INIT_LIST_HEAD(&conf->delayed_list);
7186 INIT_LIST_HEAD(&conf->bitmap_list);
Shaohua Li773ca822013-08-27 17:50:39 +08007187 init_llist_head(&conf->released_stripes);
Dan Williamsf5efd452009-10-16 15:55:38 +11007188 atomic_set(&conf->active_stripes, 0);
7189 atomic_set(&conf->preread_active_stripes, 0);
7190 atomic_set(&conf->active_aligned_reads, 0);
Shaohua Li765d7042017-01-04 09:33:23 -08007191 spin_lock_init(&conf->pending_bios_lock);
7192 conf->batch_bio_dispatch = true;
7193 rdev_for_each(rdev, mddev) {
7194 if (test_bit(Journal, &rdev->flags))
7195 continue;
7196 if (blk_queue_nonrot(bdev_get_queue(rdev->bdev))) {
7197 conf->batch_bio_dispatch = false;
7198 break;
7199 }
7200 }
7201
Dan Williamsf5efd452009-10-16 15:55:38 +11007202 conf->bypass_threshold = BYPASS_THRESHOLD;
NeilBrownd890fa22011-10-26 11:54:39 +11007203 conf->recovery_disabled = mddev->recovery_disabled - 1;
NeilBrown91adb562009-03-31 14:39:39 +11007204
7205 conf->raid_disks = mddev->raid_disks;
7206 if (mddev->reshape_position == MaxSector)
7207 conf->previous_raid_disks = mddev->raid_disks;
7208 else
7209 conf->previous_raid_disks = mddev->raid_disks - mddev->delta_disks;
NeilBrown5e5e3e72009-10-16 16:35:30 +11007210 max_disks = max(conf->raid_disks, conf->previous_raid_disks);
NeilBrown91adb562009-03-31 14:39:39 +11007211
Kees Cook6396bb22018-06-12 14:03:40 -07007212 conf->disks = kcalloc(max_disks, sizeof(struct disk_info),
NeilBrown91adb562009-03-31 14:39:39 +11007213 GFP_KERNEL);
Song Liud7bd3982016-11-23 22:50:39 -08007214
NeilBrown91adb562009-03-31 14:39:39 +11007215 if (!conf->disks)
7216 goto abort;
7217
Song Liud7bd3982016-11-23 22:50:39 -08007218 for (i = 0; i < max_disks; i++) {
7219 conf->disks[i].extra_page = alloc_page(GFP_KERNEL);
7220 if (!conf->disks[i].extra_page)
7221 goto abort;
7222 }
7223
Kent Overstreetafeee512018-05-20 18:25:52 -04007224 ret = bioset_init(&conf->bio_split, BIO_POOL_SIZE, 0, 0);
7225 if (ret)
NeilBrowndd7a8f52017-04-05 14:05:51 +10007226 goto abort;
NeilBrown91adb562009-03-31 14:39:39 +11007227 conf->mddev = mddev;
7228
7229 if ((conf->stripe_hashtbl = kzalloc(PAGE_SIZE, GFP_KERNEL)) == NULL)
7230 goto abort;
7231
Shaohua Li566c09c2013-11-14 15:16:17 +11007232 /* We init hash_locks[0] separately to that it can be used
7233 * as the reference lock in the spin_lock_nest_lock() call
7234 * in lock_all_device_hash_locks_irq in order to convince
7235 * lockdep that we know what we are doing.
7236 */
7237 spin_lock_init(conf->hash_locks);
7238 for (i = 1; i < NR_STRIPE_HASH_LOCKS; i++)
7239 spin_lock_init(conf->hash_locks + i);
7240
7241 for (i = 0; i < NR_STRIPE_HASH_LOCKS; i++)
7242 INIT_LIST_HEAD(conf->inactive_list + i);
7243
7244 for (i = 0; i < NR_STRIPE_HASH_LOCKS; i++)
7245 INIT_LIST_HEAD(conf->temp_inactive_list + i);
7246
Song Liu1e6d6902016-11-17 15:24:39 -08007247 atomic_set(&conf->r5c_cached_full_stripes, 0);
7248 INIT_LIST_HEAD(&conf->r5c_full_stripe_list);
7249 atomic_set(&conf->r5c_cached_partial_stripes, 0);
7250 INIT_LIST_HEAD(&conf->r5c_partial_stripe_list);
Shaohua Lie33fbb92017-02-10 16:18:09 -08007251 atomic_set(&conf->r5c_flushing_full_stripes, 0);
7252 atomic_set(&conf->r5c_flushing_partial_stripes, 0);
Song Liu1e6d6902016-11-17 15:24:39 -08007253
Dan Williams36d1c642009-07-14 11:48:22 -07007254 conf->level = mddev->new_level;
shli@kernel.org46d5b782014-12-15 12:57:02 +11007255 conf->chunk_sectors = mddev->new_chunk_sectors;
Dan Williams36d1c642009-07-14 11:48:22 -07007256 if (raid5_alloc_percpu(conf) != 0)
7257 goto abort;
7258
NeilBrown0c55e022010-05-03 14:09:02 +10007259 pr_debug("raid456: run(%s) called.\n", mdname(mddev));
NeilBrown91adb562009-03-31 14:39:39 +11007260
NeilBrowndafb20f2012-03-19 12:46:39 +11007261 rdev_for_each(rdev, mddev) {
NeilBrown91adb562009-03-31 14:39:39 +11007262 raid_disk = rdev->raid_disk;
NeilBrown5e5e3e72009-10-16 16:35:30 +11007263 if (raid_disk >= max_disks
Shaohua Lif2076e72015-10-08 21:54:12 -07007264 || raid_disk < 0 || test_bit(Journal, &rdev->flags))
NeilBrown91adb562009-03-31 14:39:39 +11007265 continue;
7266 disk = conf->disks + raid_disk;
7267
NeilBrown17045f52011-12-23 10:17:53 +11007268 if (test_bit(Replacement, &rdev->flags)) {
7269 if (disk->replacement)
7270 goto abort;
7271 disk->replacement = rdev;
7272 } else {
7273 if (disk->rdev)
7274 goto abort;
7275 disk->rdev = rdev;
7276 }
NeilBrown91adb562009-03-31 14:39:39 +11007277
7278 if (test_bit(In_sync, &rdev->flags)) {
7279 char b[BDEVNAME_SIZE];
NeilBrowncc6167b2016-11-02 14:16:50 +11007280 pr_info("md/raid:%s: device %s operational as raid disk %d\n",
7281 mdname(mddev), bdevname(rdev->bdev, b), raid_disk);
Jonathan Brassowd6b212f2011-06-08 18:00:28 -05007282 } else if (rdev->saved_raid_disk != raid_disk)
NeilBrown91adb562009-03-31 14:39:39 +11007283 /* Cannot rely on bitmap to complete recovery */
7284 conf->fullsync = 1;
7285 }
7286
NeilBrown91adb562009-03-31 14:39:39 +11007287 conf->level = mddev->new_level;
Markus Stockhausen584acdd2014-12-15 12:57:05 +11007288 if (conf->level == 6) {
NeilBrown91adb562009-03-31 14:39:39 +11007289 conf->max_degraded = 2;
Markus Stockhausen584acdd2014-12-15 12:57:05 +11007290 if (raid6_call.xor_syndrome)
7291 conf->rmw_level = PARITY_ENABLE_RMW;
7292 else
7293 conf->rmw_level = PARITY_DISABLE_RMW;
7294 } else {
NeilBrown91adb562009-03-31 14:39:39 +11007295 conf->max_degraded = 1;
Markus Stockhausen584acdd2014-12-15 12:57:05 +11007296 conf->rmw_level = PARITY_ENABLE_RMW;
7297 }
NeilBrown91adb562009-03-31 14:39:39 +11007298 conf->algorithm = mddev->new_layout;
NeilBrownfef9c612009-03-31 15:16:46 +11007299 conf->reshape_progress = mddev->reshape_position;
NeilBrowne183eae2009-03-31 15:20:22 +11007300 if (conf->reshape_progress != MaxSector) {
Andre Noll09c9e5f2009-06-18 08:45:55 +10007301 conf->prev_chunk_sectors = mddev->chunk_sectors;
NeilBrowne183eae2009-03-31 15:20:22 +11007302 conf->prev_algo = mddev->layout;
NeilBrown5cac6bc2015-07-17 12:17:50 +10007303 } else {
7304 conf->prev_chunk_sectors = conf->chunk_sectors;
7305 conf->prev_algo = conf->algorithm;
NeilBrowne183eae2009-03-31 15:20:22 +11007306 }
NeilBrown91adb562009-03-31 14:39:39 +11007307
NeilBrownedbe83a2015-02-26 12:47:56 +11007308 conf->min_nr_stripes = NR_STRIPES;
Shaohua Liad5b0f72016-08-30 10:29:33 -07007309 if (mddev->reshape_position != MaxSector) {
7310 int stripes = max_t(int,
Yufen Yuc911c462020-07-18 05:29:07 -04007311 ((mddev->chunk_sectors << 9) / RAID5_STRIPE_SIZE(conf)) * 4,
7312 ((mddev->new_chunk_sectors << 9) / RAID5_STRIPE_SIZE(conf)) * 4);
Shaohua Liad5b0f72016-08-30 10:29:33 -07007313 conf->min_nr_stripes = max(NR_STRIPES, stripes);
7314 if (conf->min_nr_stripes != NR_STRIPES)
NeilBrowncc6167b2016-11-02 14:16:50 +11007315 pr_info("md/raid:%s: force stripe size %d for reshape\n",
Shaohua Liad5b0f72016-08-30 10:29:33 -07007316 mdname(mddev), conf->min_nr_stripes);
7317 }
NeilBrownedbe83a2015-02-26 12:47:56 +11007318 memory = conf->min_nr_stripes * (sizeof(struct stripe_head) +
NeilBrown5e5e3e72009-10-16 16:35:30 +11007319 max_disks * ((sizeof(struct bio) + PAGE_SIZE))) / 1024;
Shaohua Li4bda5562013-11-14 15:16:17 +11007320 atomic_set(&conf->empty_inactive_list_nr, NR_STRIPE_HASH_LOCKS);
NeilBrownedbe83a2015-02-26 12:47:56 +11007321 if (grow_stripes(conf, conf->min_nr_stripes)) {
NeilBrowncc6167b2016-11-02 14:16:50 +11007322 pr_warn("md/raid:%s: couldn't allocate %dkB for buffers\n",
7323 mdname(mddev), memory);
NeilBrown91adb562009-03-31 14:39:39 +11007324 goto abort;
7325 } else
NeilBrowncc6167b2016-11-02 14:16:50 +11007326 pr_debug("md/raid:%s: allocated %dkB\n", mdname(mddev), memory);
NeilBrownedbe83a2015-02-26 12:47:56 +11007327 /*
7328 * Losing a stripe head costs more than the time to refill it,
7329 * it reduces the queue depth and so can hurt throughput.
7330 * So set it rather large, scaled by number of devices.
7331 */
7332 conf->shrinker.seeks = DEFAULT_SEEKS * conf->raid_disks * 4;
7333 conf->shrinker.scan_objects = raid5_cache_scan;
7334 conf->shrinker.count_objects = raid5_cache_count;
7335 conf->shrinker.batch = 128;
7336 conf->shrinker.flags = 0;
Chao Yu6a0f53f2016-09-20 10:33:57 +08007337 if (register_shrinker(&conf->shrinker)) {
NeilBrowncc6167b2016-11-02 14:16:50 +11007338 pr_warn("md/raid:%s: couldn't register shrinker.\n",
7339 mdname(mddev));
Chao Yu6a0f53f2016-09-20 10:33:57 +08007340 goto abort;
7341 }
NeilBrown91adb562009-03-31 14:39:39 +11007342
NeilBrown02326052012-07-03 15:56:52 +10007343 sprintf(pers_name, "raid%d", mddev->new_level);
7344 conf->thread = md_register_thread(raid5d, mddev, pers_name);
NeilBrown91adb562009-03-31 14:39:39 +11007345 if (!conf->thread) {
NeilBrowncc6167b2016-11-02 14:16:50 +11007346 pr_warn("md/raid:%s: couldn't allocate thread.\n",
7347 mdname(mddev));
NeilBrown91adb562009-03-31 14:39:39 +11007348 goto abort;
7349 }
7350
7351 return conf;
7352
7353 abort:
7354 if (conf) {
Dan Williams95fc17a2009-07-31 12:39:15 +10007355 free_conf(conf);
NeilBrown91adb562009-03-31 14:39:39 +11007356 return ERR_PTR(-EIO);
7357 } else
7358 return ERR_PTR(-ENOMEM);
7359}
7360
NeilBrownc148ffd2009-11-13 17:47:00 +11007361static int only_parity(int raid_disk, int algo, int raid_disks, int max_degraded)
7362{
7363 switch (algo) {
7364 case ALGORITHM_PARITY_0:
7365 if (raid_disk < max_degraded)
7366 return 1;
7367 break;
7368 case ALGORITHM_PARITY_N:
7369 if (raid_disk >= raid_disks - max_degraded)
7370 return 1;
7371 break;
7372 case ALGORITHM_PARITY_0_6:
NeilBrownf72ffdd2014-09-30 14:23:59 +10007373 if (raid_disk == 0 ||
NeilBrownc148ffd2009-11-13 17:47:00 +11007374 raid_disk == raid_disks - 1)
7375 return 1;
7376 break;
7377 case ALGORITHM_LEFT_ASYMMETRIC_6:
7378 case ALGORITHM_RIGHT_ASYMMETRIC_6:
7379 case ALGORITHM_LEFT_SYMMETRIC_6:
7380 case ALGORITHM_RIGHT_SYMMETRIC_6:
7381 if (raid_disk == raid_disks - 1)
7382 return 1;
7383 }
7384 return 0;
7385}
7386
Christoph Hellwig16ef5102020-09-24 08:51:33 +02007387static void raid5_set_io_opt(struct r5conf *conf)
7388{
7389 blk_queue_io_opt(conf->mddev->queue, (conf->chunk_sectors << 9) *
7390 (conf->raid_disks - conf->max_degraded));
7391}
7392
Shaohua Li849674e2016-01-20 13:52:20 -08007393static int raid5_run(struct mddev *mddev)
NeilBrown91adb562009-03-31 14:39:39 +11007394{
NeilBrownd1688a62011-10-11 16:49:52 +11007395 struct r5conf *conf;
NeilBrown9f7c2222010-07-26 12:04:13 +10007396 int working_disks = 0;
NeilBrownc148ffd2009-11-13 17:47:00 +11007397 int dirty_parity_disks = 0;
NeilBrown3cb03002011-10-11 16:45:26 +11007398 struct md_rdev *rdev;
Shaohua Li713cf5a2015-08-13 14:32:03 -07007399 struct md_rdev *journal_dev = NULL;
NeilBrownc148ffd2009-11-13 17:47:00 +11007400 sector_t reshape_offset = 0;
NeilBrown17045f52011-12-23 10:17:53 +11007401 int i;
NeilBrownb5254dd2012-05-21 09:27:01 +10007402 long long min_offset_diff = 0;
7403 int first = 1;
NeilBrown91adb562009-03-31 14:39:39 +11007404
NeilBrowna415c0f2017-06-05 16:05:13 +10007405 if (mddev_init_writes_pending(mddev) < 0)
7406 return -ENOMEM;
7407
Andre Noll8c6ac8682009-06-18 08:48:06 +10007408 if (mddev->recovery_cp != MaxSector)
NeilBrowncc6167b2016-11-02 14:16:50 +11007409 pr_notice("md/raid:%s: not clean -- starting background reconstruction\n",
7410 mdname(mddev));
NeilBrownb5254dd2012-05-21 09:27:01 +10007411
7412 rdev_for_each(rdev, mddev) {
7413 long long diff;
Shaohua Li713cf5a2015-08-13 14:32:03 -07007414
Shaohua Lif2076e72015-10-08 21:54:12 -07007415 if (test_bit(Journal, &rdev->flags)) {
Shaohua Li713cf5a2015-08-13 14:32:03 -07007416 journal_dev = rdev;
Shaohua Lif2076e72015-10-08 21:54:12 -07007417 continue;
7418 }
NeilBrownb5254dd2012-05-21 09:27:01 +10007419 if (rdev->raid_disk < 0)
7420 continue;
7421 diff = (rdev->new_data_offset - rdev->data_offset);
7422 if (first) {
7423 min_offset_diff = diff;
7424 first = 0;
7425 } else if (mddev->reshape_backwards &&
7426 diff < min_offset_diff)
7427 min_offset_diff = diff;
7428 else if (!mddev->reshape_backwards &&
7429 diff > min_offset_diff)
7430 min_offset_diff = diff;
7431 }
7432
NeilBrown230b55f2017-10-17 14:24:09 +11007433 if ((test_bit(MD_HAS_JOURNAL, &mddev->flags) || journal_dev) &&
7434 (mddev->bitmap_info.offset || mddev->bitmap_info.file)) {
7435 pr_notice("md/raid:%s: array cannot have both journal and bitmap\n",
7436 mdname(mddev));
7437 return -EINVAL;
7438 }
7439
NeilBrownf6705572006-03-27 01:18:11 -08007440 if (mddev->reshape_position != MaxSector) {
7441 /* Check that we can continue the reshape.
NeilBrownb5254dd2012-05-21 09:27:01 +10007442 * Difficulties arise if the stripe we would write to
7443 * next is at or after the stripe we would read from next.
7444 * For a reshape that changes the number of devices, this
7445 * is only possible for a very short time, and mdadm makes
7446 * sure that time appears to have past before assembling
7447 * the array. So we fail if that time hasn't passed.
7448 * For a reshape that keeps the number of devices the same
7449 * mdadm must be monitoring the reshape can keeping the
7450 * critical areas read-only and backed up. It will start
7451 * the array in read-only mode, so we check for that.
NeilBrownf6705572006-03-27 01:18:11 -08007452 */
7453 sector_t here_new, here_old;
7454 int old_disks;
Andre Noll18b00332009-03-31 15:00:56 +11007455 int max_degraded = (mddev->level == 6 ? 2 : 1);
NeilBrown05256d92015-07-15 17:36:21 +10007456 int chunk_sectors;
7457 int new_data_disks;
NeilBrownf6705572006-03-27 01:18:11 -08007458
Shaohua Li713cf5a2015-08-13 14:32:03 -07007459 if (journal_dev) {
NeilBrowncc6167b2016-11-02 14:16:50 +11007460 pr_warn("md/raid:%s: don't support reshape with journal - aborting.\n",
7461 mdname(mddev));
Shaohua Li713cf5a2015-08-13 14:32:03 -07007462 return -EINVAL;
7463 }
7464
NeilBrown88ce4932009-03-31 15:24:23 +11007465 if (mddev->new_level != mddev->level) {
NeilBrowncc6167b2016-11-02 14:16:50 +11007466 pr_warn("md/raid:%s: unsupported reshape required - aborting.\n",
7467 mdname(mddev));
NeilBrownf6705572006-03-27 01:18:11 -08007468 return -EINVAL;
7469 }
NeilBrownf6705572006-03-27 01:18:11 -08007470 old_disks = mddev->raid_disks - mddev->delta_disks;
7471 /* reshape_position must be on a new-stripe boundary, and one
NeilBrownf4168852007-02-28 20:11:53 -08007472 * further up in new geometry must map after here in old
7473 * geometry.
NeilBrown05256d92015-07-15 17:36:21 +10007474 * If the chunk sizes are different, then as we perform reshape
7475 * in units of the largest of the two, reshape_position needs
7476 * be a multiple of the largest chunk size times new data disks.
NeilBrownf6705572006-03-27 01:18:11 -08007477 */
7478 here_new = mddev->reshape_position;
NeilBrown05256d92015-07-15 17:36:21 +10007479 chunk_sectors = max(mddev->chunk_sectors, mddev->new_chunk_sectors);
7480 new_data_disks = mddev->raid_disks - max_degraded;
7481 if (sector_div(here_new, chunk_sectors * new_data_disks)) {
NeilBrowncc6167b2016-11-02 14:16:50 +11007482 pr_warn("md/raid:%s: reshape_position not on a stripe boundary\n",
7483 mdname(mddev));
NeilBrownf6705572006-03-27 01:18:11 -08007484 return -EINVAL;
7485 }
NeilBrown05256d92015-07-15 17:36:21 +10007486 reshape_offset = here_new * chunk_sectors;
NeilBrownf6705572006-03-27 01:18:11 -08007487 /* here_new is the stripe we will write to */
7488 here_old = mddev->reshape_position;
NeilBrown05256d92015-07-15 17:36:21 +10007489 sector_div(here_old, chunk_sectors * (old_disks-max_degraded));
NeilBrownf4168852007-02-28 20:11:53 -08007490 /* here_old is the first stripe that we might need to read
7491 * from */
NeilBrown67ac6012009-08-13 10:06:24 +10007492 if (mddev->delta_disks == 0) {
7493 /* We cannot be sure it is safe to start an in-place
NeilBrownb5254dd2012-05-21 09:27:01 +10007494 * reshape. It is only safe if user-space is monitoring
NeilBrown67ac6012009-08-13 10:06:24 +10007495 * and taking constant backups.
7496 * mdadm always starts a situation like this in
7497 * readonly mode so it can take control before
7498 * allowing any writes. So just check for that.
7499 */
NeilBrownb5254dd2012-05-21 09:27:01 +10007500 if (abs(min_offset_diff) >= mddev->chunk_sectors &&
7501 abs(min_offset_diff) >= mddev->new_chunk_sectors)
7502 /* not really in-place - so OK */;
7503 else if (mddev->ro == 0) {
NeilBrowncc6167b2016-11-02 14:16:50 +11007504 pr_warn("md/raid:%s: in-place reshape must be started in read-only mode - aborting\n",
7505 mdname(mddev));
NeilBrown67ac6012009-08-13 10:06:24 +10007506 return -EINVAL;
7507 }
NeilBrown2c810cd2012-05-21 09:27:00 +10007508 } else if (mddev->reshape_backwards
NeilBrown05256d92015-07-15 17:36:21 +10007509 ? (here_new * chunk_sectors + min_offset_diff <=
7510 here_old * chunk_sectors)
7511 : (here_new * chunk_sectors >=
7512 here_old * chunk_sectors + (-min_offset_diff))) {
NeilBrownf6705572006-03-27 01:18:11 -08007513 /* Reading from the same stripe as writing to - bad */
NeilBrowncc6167b2016-11-02 14:16:50 +11007514 pr_warn("md/raid:%s: reshape_position too early for auto-recovery - aborting.\n",
7515 mdname(mddev));
NeilBrownf6705572006-03-27 01:18:11 -08007516 return -EINVAL;
7517 }
NeilBrowncc6167b2016-11-02 14:16:50 +11007518 pr_debug("md/raid:%s: reshape will continue\n", mdname(mddev));
NeilBrownf6705572006-03-27 01:18:11 -08007519 /* OK, we should be able to continue; */
NeilBrownf6705572006-03-27 01:18:11 -08007520 } else {
NeilBrown91adb562009-03-31 14:39:39 +11007521 BUG_ON(mddev->level != mddev->new_level);
7522 BUG_ON(mddev->layout != mddev->new_layout);
Andre Noll664e7c42009-06-18 08:45:27 +10007523 BUG_ON(mddev->chunk_sectors != mddev->new_chunk_sectors);
NeilBrown91adb562009-03-31 14:39:39 +11007524 BUG_ON(mddev->delta_disks != 0);
NeilBrownf6705572006-03-27 01:18:11 -08007525 }
7526
Artur Paszkiewicz3418d032017-03-09 09:59:59 +01007527 if (test_bit(MD_HAS_JOURNAL, &mddev->flags) &&
7528 test_bit(MD_HAS_PPL, &mddev->flags)) {
7529 pr_warn("md/raid:%s: using journal device and PPL not allowed - disabling PPL\n",
7530 mdname(mddev));
7531 clear_bit(MD_HAS_PPL, &mddev->flags);
Pawel Baldysiakddc08822017-08-16 17:13:45 +02007532 clear_bit(MD_HAS_MULTIPLE_PPLS, &mddev->flags);
Artur Paszkiewicz3418d032017-03-09 09:59:59 +01007533 }
7534
NeilBrown245f46c2009-03-31 14:39:39 +11007535 if (mddev->private == NULL)
7536 conf = setup_conf(mddev);
7537 else
7538 conf = mddev->private;
7539
NeilBrown91adb562009-03-31 14:39:39 +11007540 if (IS_ERR(conf))
7541 return PTR_ERR(conf);
NeilBrown9ffae0c2006-01-06 00:20:32 -08007542
Song Liu486b0f72016-08-19 15:34:01 -07007543 if (test_bit(MD_HAS_JOURNAL, &mddev->flags)) {
7544 if (!journal_dev) {
NeilBrowncc6167b2016-11-02 14:16:50 +11007545 pr_warn("md/raid:%s: journal disk is missing, force array readonly\n",
7546 mdname(mddev));
Song Liu486b0f72016-08-19 15:34:01 -07007547 mddev->ro = 1;
7548 set_disk_ro(mddev->gendisk, 1);
7549 } else if (mddev->recovery_cp == MaxSector)
7550 set_bit(MD_JOURNAL_CLEAN, &mddev->flags);
Shaohua Li7dde2ad2015-10-08 21:54:10 -07007551 }
7552
NeilBrownb5254dd2012-05-21 09:27:01 +10007553 conf->min_offset_diff = min_offset_diff;
NeilBrown91adb562009-03-31 14:39:39 +11007554 mddev->thread = conf->thread;
7555 conf->thread = NULL;
7556 mddev->private = conf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007557
NeilBrown17045f52011-12-23 10:17:53 +11007558 for (i = 0; i < conf->raid_disks && conf->previous_raid_disks;
7559 i++) {
7560 rdev = conf->disks[i].rdev;
7561 if (!rdev && conf->disks[i].replacement) {
7562 /* The replacement is all we have yet */
7563 rdev = conf->disks[i].replacement;
7564 conf->disks[i].replacement = NULL;
7565 clear_bit(Replacement, &rdev->flags);
7566 conf->disks[i].rdev = rdev;
7567 }
7568 if (!rdev)
NeilBrownc148ffd2009-11-13 17:47:00 +11007569 continue;
NeilBrown17045f52011-12-23 10:17:53 +11007570 if (conf->disks[i].replacement &&
7571 conf->reshape_progress != MaxSector) {
7572 /* replacements and reshape simply do not mix. */
NeilBrowncc6167b2016-11-02 14:16:50 +11007573 pr_warn("md: cannot handle concurrent replacement and reshape.\n");
NeilBrown17045f52011-12-23 10:17:53 +11007574 goto abort;
7575 }
NeilBrown2f115882010-06-17 17:41:03 +10007576 if (test_bit(In_sync, &rdev->flags)) {
NeilBrown91adb562009-03-31 14:39:39 +11007577 working_disks++;
NeilBrown2f115882010-06-17 17:41:03 +10007578 continue;
7579 }
NeilBrownc148ffd2009-11-13 17:47:00 +11007580 /* This disc is not fully in-sync. However if it
7581 * just stored parity (beyond the recovery_offset),
7582 * when we don't need to be concerned about the
7583 * array being dirty.
7584 * When reshape goes 'backwards', we never have
7585 * partially completed devices, so we only need
7586 * to worry about reshape going forwards.
7587 */
7588 /* Hack because v0.91 doesn't store recovery_offset properly. */
7589 if (mddev->major_version == 0 &&
7590 mddev->minor_version > 90)
7591 rdev->recovery_offset = reshape_offset;
H. Peter Anvin5026d7a2013-06-12 07:37:43 -07007592
NeilBrownc148ffd2009-11-13 17:47:00 +11007593 if (rdev->recovery_offset < reshape_offset) {
7594 /* We need to check old and new layout */
7595 if (!only_parity(rdev->raid_disk,
7596 conf->algorithm,
7597 conf->raid_disks,
7598 conf->max_degraded))
7599 continue;
7600 }
7601 if (!only_parity(rdev->raid_disk,
7602 conf->prev_algo,
7603 conf->previous_raid_disks,
7604 conf->max_degraded))
7605 continue;
7606 dirty_parity_disks++;
7607 }
NeilBrown91adb562009-03-31 14:39:39 +11007608
NeilBrown17045f52011-12-23 10:17:53 +11007609 /*
7610 * 0 for a fully functional array, 1 or 2 for a degraded array.
7611 */
Song Liu2e38a372017-01-24 10:45:30 -08007612 mddev->degraded = raid5_calc_degraded(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007613
NeilBrown674806d2010-06-16 17:17:53 +10007614 if (has_failed(conf)) {
NeilBrowncc6167b2016-11-02 14:16:50 +11007615 pr_crit("md/raid:%s: not enough operational devices (%d/%d failed)\n",
NeilBrown02c2de82006-10-03 01:15:47 -07007616 mdname(mddev), mddev->degraded, conf->raid_disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007617 goto abort;
7618 }
7619
NeilBrown91adb562009-03-31 14:39:39 +11007620 /* device size must be a multiple of chunk size */
Andre Noll9d8f0362009-06-18 08:45:01 +10007621 mddev->dev_sectors &= ~(mddev->chunk_sectors - 1);
NeilBrown91adb562009-03-31 14:39:39 +11007622 mddev->resync_max_sectors = mddev->dev_sectors;
7623
NeilBrownc148ffd2009-11-13 17:47:00 +11007624 if (mddev->degraded > dirty_parity_disks &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07007625 mddev->recovery_cp != MaxSector) {
Artur Paszkiewicz4536bf9b2017-03-09 10:00:01 +01007626 if (test_bit(MD_HAS_PPL, &mddev->flags))
7627 pr_crit("md/raid:%s: starting dirty degraded array with PPL.\n",
7628 mdname(mddev));
7629 else if (mddev->ok_start_degraded)
NeilBrowncc6167b2016-11-02 14:16:50 +11007630 pr_crit("md/raid:%s: starting dirty degraded array - data corruption possible.\n",
7631 mdname(mddev));
NeilBrown6ff8d8ec2006-01-06 00:20:15 -08007632 else {
NeilBrowncc6167b2016-11-02 14:16:50 +11007633 pr_crit("md/raid:%s: cannot start dirty degraded array.\n",
7634 mdname(mddev));
NeilBrown6ff8d8ec2006-01-06 00:20:15 -08007635 goto abort;
7636 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007637 }
7638
NeilBrowncc6167b2016-11-02 14:16:50 +11007639 pr_info("md/raid:%s: raid level %d active with %d out of %d devices, algorithm %d\n",
7640 mdname(mddev), conf->level,
7641 mddev->raid_disks-mddev->degraded, mddev->raid_disks,
7642 mddev->new_layout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007643
7644 print_raid5_conf(conf);
7645
NeilBrownfef9c612009-03-31 15:16:46 +11007646 if (conf->reshape_progress != MaxSector) {
NeilBrownfef9c612009-03-31 15:16:46 +11007647 conf->reshape_safe = conf->reshape_progress;
NeilBrownf6705572006-03-27 01:18:11 -08007648 atomic_set(&conf->reshape_stripes, 0);
7649 clear_bit(MD_RECOVERY_SYNC, &mddev->recovery);
7650 clear_bit(MD_RECOVERY_CHECK, &mddev->recovery);
7651 set_bit(MD_RECOVERY_RESHAPE, &mddev->recovery);
7652 set_bit(MD_RECOVERY_RUNNING, &mddev->recovery);
7653 mddev->sync_thread = md_register_thread(md_do_sync, mddev,
NeilBrown0da3c612009-09-23 18:09:45 +10007654 "reshape");
Aditya Pakkie406f122019-03-04 16:48:54 -06007655 if (!mddev->sync_thread)
7656 goto abort;
NeilBrownf6705572006-03-27 01:18:11 -08007657 }
7658
Linus Torvalds1da177e2005-04-16 15:20:36 -07007659 /* Ok, everything is just fine now */
NeilBrowna64c8762010-04-14 17:15:37 +10007660 if (mddev->to_remove == &raid5_attrs_group)
7661 mddev->to_remove = NULL;
NeilBrown00bcb4a2010-06-01 19:37:23 +10007662 else if (mddev->kobj.sd &&
7663 sysfs_create_group(&mddev->kobj, &raid5_attrs_group))
NeilBrowncc6167b2016-11-02 14:16:50 +11007664 pr_warn("raid5: failed to create sysfs attributes for %s\n",
7665 mdname(mddev));
NeilBrown4a5add42010-06-01 19:37:28 +10007666 md_set_array_sectors(mddev, raid5_size(mddev, 0, 0));
7667
7668 if (mddev->queue) {
NeilBrown9f7c2222010-07-26 12:04:13 +10007669 int chunk_size;
NeilBrown4a5add42010-06-01 19:37:28 +10007670 /* read-ahead size must cover two whole stripes, which
7671 * is 2 * (datadisks) * chunksize where 'n' is the
7672 * number of raid devices
7673 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007674 int data_disks = conf->previous_raid_disks - conf->max_degraded;
7675 int stripe = data_disks *
7676 ((mddev->chunk_sectors << 9) / PAGE_SIZE);
NeilBrown4a5add42010-06-01 19:37:28 +10007677
NeilBrown9f7c2222010-07-26 12:04:13 +10007678 chunk_size = mddev->chunk_sectors << 9;
7679 blk_queue_io_min(mddev->queue, chunk_size);
Christoph Hellwig16ef5102020-09-24 08:51:33 +02007680 raid5_set_io_opt(conf);
Kent Overstreetc78afc62013-07-11 22:39:53 -07007681 mddev->queue->limits.raid_partial_stripes_expensive = 1;
Shaohua Li620125f2012-10-11 13:49:05 +11007682 /*
7683 * We can only discard a whole stripe. It doesn't make sense to
7684 * discard data disk but write parity disk
7685 */
7686 stripe = stripe * PAGE_SIZE;
NeilBrown4ac68752012-11-19 13:11:26 +11007687 /* Round up to power of 2, as discard handling
7688 * currently assumes that */
7689 while ((stripe-1) & stripe)
7690 stripe = (stripe | (stripe-1)) + 1;
Shaohua Li620125f2012-10-11 13:49:05 +11007691 mddev->queue->limits.discard_alignment = stripe;
7692 mddev->queue->limits.discard_granularity = stripe;
Konstantin Khlebnikove8d7c332016-11-27 19:32:32 +03007693
H. Peter Anvin5026d7a2013-06-12 07:37:43 -07007694 blk_queue_max_write_same_sectors(mddev->queue, 0);
Christoph Hellwig3deff1a2017-04-05 19:21:03 +02007695 blk_queue_max_write_zeroes_sectors(mddev->queue, 0);
H. Peter Anvin5026d7a2013-06-12 07:37:43 -07007696
NeilBrown05616be2012-05-21 09:27:00 +10007697 rdev_for_each(rdev, mddev) {
NeilBrown9f7c2222010-07-26 12:04:13 +10007698 disk_stack_limits(mddev->gendisk, rdev->bdev,
7699 rdev->data_offset << 9);
NeilBrown05616be2012-05-21 09:27:00 +10007700 disk_stack_limits(mddev->gendisk, rdev->bdev,
7701 rdev->new_data_offset << 9);
7702 }
Shaohua Li620125f2012-10-11 13:49:05 +11007703
Christoph Hellwig48920ff2017-04-05 19:21:23 +02007704 /*
7705 * zeroing is required, otherwise data
7706 * could be lost. Consider a scenario: discard a stripe
7707 * (the stripe could be inconsistent if
7708 * discard_zeroes_data is 0); write one disk of the
7709 * stripe (the stripe could be inconsistent again
7710 * depending on which disks are used to calculate
7711 * parity); the disk is broken; The stripe data of this
7712 * disk is lost.
7713 *
7714 * We only allow DISCARD if the sysadmin has confirmed that
7715 * only safe devices are in use by setting a module parameter.
7716 * A better idea might be to turn DISCARD into WRITE_ZEROES
7717 * requests, as that is required to be safe.
7718 */
7719 if (devices_handle_discard_safely &&
Jes Sorensene7597e62016-02-16 16:44:24 -05007720 mddev->queue->limits.max_discard_sectors >= (stripe >> 9) &&
7721 mddev->queue->limits.discard_granularity >= stripe)
Bart Van Assche8b904b52018-03-07 17:10:10 -08007722 blk_queue_flag_set(QUEUE_FLAG_DISCARD,
Shaohua Li620125f2012-10-11 13:49:05 +11007723 mddev->queue);
7724 else
Bart Van Assche8b904b52018-03-07 17:10:10 -08007725 blk_queue_flag_clear(QUEUE_FLAG_DISCARD,
Shaohua Li620125f2012-10-11 13:49:05 +11007726 mddev->queue);
Shaohua Li1dffddd2016-09-08 10:49:06 -07007727
7728 blk_queue_max_hw_sectors(mddev->queue, UINT_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007729 }
7730
Artur Paszkiewicz845b9e22017-04-04 13:13:57 +02007731 if (log_init(conf, journal_dev, raid5_has_ppl(conf)))
Artur Paszkiewiczff875732017-03-09 09:59:58 +01007732 goto abort;
Shaohua Li5c7e81c2015-08-13 14:32:04 -07007733
Linus Torvalds1da177e2005-04-16 15:20:36 -07007734 return 0;
7735abort:
NeilBrown01f96c02011-09-21 15:30:20 +10007736 md_unregister_thread(&mddev->thread);
NeilBrowne4f869d2011-10-07 14:22:49 +11007737 print_raid5_conf(conf);
7738 free_conf(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007739 mddev->private = NULL;
NeilBrowncc6167b2016-11-02 14:16:50 +11007740 pr_warn("md/raid:%s: failed to run raid set.\n", mdname(mddev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007741 return -EIO;
7742}
7743
NeilBrownafa0f552014-12-15 12:56:58 +11007744static void raid5_free(struct mddev *mddev, void *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007745{
NeilBrownafa0f552014-12-15 12:56:58 +11007746 struct r5conf *conf = priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007747
Dan Williams95fc17a2009-07-31 12:39:15 +10007748 free_conf(conf);
NeilBrowna64c8762010-04-14 17:15:37 +10007749 mddev->to_remove = &raid5_attrs_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007750}
7751
Shaohua Li849674e2016-01-20 13:52:20 -08007752static void raid5_status(struct seq_file *seq, struct mddev *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007753{
NeilBrownd1688a62011-10-11 16:49:52 +11007754 struct r5conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007755 int i;
7756
Andre Noll9d8f0362009-06-18 08:45:01 +10007757 seq_printf(seq, " level %d, %dk chunk, algorithm %d", mddev->level,
NeilBrown3cb5edf2015-07-15 17:24:17 +10007758 conf->chunk_sectors / 2, mddev->layout);
NeilBrown02c2de82006-10-03 01:15:47 -07007759 seq_printf (seq, " [%d/%d] [", conf->raid_disks, conf->raid_disks - mddev->degraded);
NeilBrown5fd13352016-06-02 16:19:52 +10007760 rcu_read_lock();
7761 for (i = 0; i < conf->raid_disks; i++) {
7762 struct md_rdev *rdev = rcu_dereference(conf->disks[i].rdev);
7763 seq_printf (seq, "%s", rdev && test_bit(In_sync, &rdev->flags) ? "U" : "_");
7764 }
7765 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007766 seq_printf (seq, "]");
Linus Torvalds1da177e2005-04-16 15:20:36 -07007767}
7768
NeilBrownd1688a62011-10-11 16:49:52 +11007769static void print_raid5_conf (struct r5conf *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007770{
7771 int i;
7772 struct disk_info *tmp;
7773
NeilBrowncc6167b2016-11-02 14:16:50 +11007774 pr_debug("RAID conf printout:\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07007775 if (!conf) {
NeilBrowncc6167b2016-11-02 14:16:50 +11007776 pr_debug("(conf==NULL)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07007777 return;
7778 }
NeilBrowncc6167b2016-11-02 14:16:50 +11007779 pr_debug(" --- level:%d rd:%d wd:%d\n", conf->level,
NeilBrown0c55e022010-05-03 14:09:02 +10007780 conf->raid_disks,
7781 conf->raid_disks - conf->mddev->degraded);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007782
7783 for (i = 0; i < conf->raid_disks; i++) {
7784 char b[BDEVNAME_SIZE];
7785 tmp = conf->disks + i;
7786 if (tmp->rdev)
NeilBrowncc6167b2016-11-02 14:16:50 +11007787 pr_debug(" disk %d, o:%d, dev:%s\n",
NeilBrown0c55e022010-05-03 14:09:02 +10007788 i, !test_bit(Faulty, &tmp->rdev->flags),
7789 bdevname(tmp->rdev->bdev, b));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007790 }
7791}
7792
NeilBrownfd01b882011-10-11 16:47:53 +11007793static int raid5_spare_active(struct mddev *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007794{
7795 int i;
NeilBrownd1688a62011-10-11 16:49:52 +11007796 struct r5conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007797 struct disk_info *tmp;
NeilBrown6b965622010-08-18 11:56:59 +10007798 int count = 0;
7799 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007800
7801 for (i = 0; i < conf->raid_disks; i++) {
7802 tmp = conf->disks + i;
NeilBrowndd054fc2011-12-23 10:17:53 +11007803 if (tmp->replacement
7804 && tmp->replacement->recovery_offset == MaxSector
7805 && !test_bit(Faulty, &tmp->replacement->flags)
7806 && !test_and_set_bit(In_sync, &tmp->replacement->flags)) {
7807 /* Replacement has just become active. */
7808 if (!tmp->rdev
7809 || !test_and_clear_bit(In_sync, &tmp->rdev->flags))
7810 count++;
7811 if (tmp->rdev) {
7812 /* Replaced device not technically faulty,
7813 * but we need to be sure it gets removed
7814 * and never re-added.
7815 */
7816 set_bit(Faulty, &tmp->rdev->flags);
7817 sysfs_notify_dirent_safe(
7818 tmp->rdev->sysfs_state);
7819 }
7820 sysfs_notify_dirent_safe(tmp->replacement->sysfs_state);
7821 } else if (tmp->rdev
NeilBrown70fffd02010-06-16 17:01:25 +10007822 && tmp->rdev->recovery_offset == MaxSector
NeilBrownb2d444d2005-11-08 21:39:31 -08007823 && !test_bit(Faulty, &tmp->rdev->flags)
NeilBrownc04be0a2006-10-03 01:15:53 -07007824 && !test_and_set_bit(In_sync, &tmp->rdev->flags)) {
NeilBrown6b965622010-08-18 11:56:59 +10007825 count++;
Jonathan Brassow43c73ca2011-01-14 09:14:33 +11007826 sysfs_notify_dirent_safe(tmp->rdev->sysfs_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007827 }
7828 }
NeilBrown6b965622010-08-18 11:56:59 +10007829 spin_lock_irqsave(&conf->device_lock, flags);
Song Liu2e38a372017-01-24 10:45:30 -08007830 mddev->degraded = raid5_calc_degraded(conf);
NeilBrown6b965622010-08-18 11:56:59 +10007831 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007832 print_raid5_conf(conf);
NeilBrown6b965622010-08-18 11:56:59 +10007833 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007834}
7835
NeilBrownb8321b62011-12-23 10:17:51 +11007836static int raid5_remove_disk(struct mddev *mddev, struct md_rdev *rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007837{
NeilBrownd1688a62011-10-11 16:49:52 +11007838 struct r5conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007839 int err = 0;
NeilBrownb8321b62011-12-23 10:17:51 +11007840 int number = rdev->raid_disk;
NeilBrown657e3e42011-12-23 10:17:52 +11007841 struct md_rdev **rdevp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007842 struct disk_info *p = conf->disks + number;
7843
7844 print_raid5_conf(conf);
Shaohua Lif6b6ec52015-12-21 10:51:02 +11007845 if (test_bit(Journal, &rdev->flags) && conf->log) {
Shaohua Lic2bb6242015-10-08 21:54:07 -07007846 /*
Shaohua Lif6b6ec52015-12-21 10:51:02 +11007847 * we can't wait pending write here, as this is called in
7848 * raid5d, wait will deadlock.
NeilBrown84dd97a2017-03-15 14:05:14 +11007849 * neilb: there is no locking about new writes here,
7850 * so this cannot be safe.
Shaohua Lic2bb6242015-10-08 21:54:07 -07007851 */
Song Liu70d466f2017-05-11 15:28:28 -07007852 if (atomic_read(&conf->active_stripes) ||
7853 atomic_read(&conf->r5c_cached_full_stripes) ||
7854 atomic_read(&conf->r5c_cached_partial_stripes)) {
Shaohua Lif6b6ec52015-12-21 10:51:02 +11007855 return -EBUSY;
NeilBrown84dd97a2017-03-15 14:05:14 +11007856 }
Artur Paszkiewiczff875732017-03-09 09:59:58 +01007857 log_exit(conf);
Shaohua Lif6b6ec52015-12-21 10:51:02 +11007858 return 0;
Shaohua Lic2bb6242015-10-08 21:54:07 -07007859 }
NeilBrown657e3e42011-12-23 10:17:52 +11007860 if (rdev == p->rdev)
7861 rdevp = &p->rdev;
7862 else if (rdev == p->replacement)
7863 rdevp = &p->replacement;
7864 else
7865 return 0;
NeilBrownec32a2b2009-03-31 15:17:38 +11007866
NeilBrown657e3e42011-12-23 10:17:52 +11007867 if (number >= conf->raid_disks &&
7868 conf->reshape_progress == MaxSector)
7869 clear_bit(In_sync, &rdev->flags);
7870
7871 if (test_bit(In_sync, &rdev->flags) ||
7872 atomic_read(&rdev->nr_pending)) {
7873 err = -EBUSY;
7874 goto abort;
7875 }
7876 /* Only remove non-faulty devices if recovery
7877 * isn't possible.
7878 */
7879 if (!test_bit(Faulty, &rdev->flags) &&
7880 mddev->recovery_disabled != conf->recovery_disabled &&
7881 !has_failed(conf) &&
NeilBrowndd054fc2011-12-23 10:17:53 +11007882 (!p->replacement || p->replacement == rdev) &&
NeilBrown657e3e42011-12-23 10:17:52 +11007883 number < conf->raid_disks) {
7884 err = -EBUSY;
7885 goto abort;
7886 }
7887 *rdevp = NULL;
NeilBrownd787be42016-06-02 16:19:53 +10007888 if (!test_bit(RemoveSynchronized, &rdev->flags)) {
7889 synchronize_rcu();
7890 if (atomic_read(&rdev->nr_pending)) {
7891 /* lost the race, try later */
7892 err = -EBUSY;
7893 *rdevp = rdev;
7894 }
7895 }
Artur Paszkiewicz6358c232017-03-09 10:00:02 +01007896 if (!err) {
7897 err = log_modify(conf, rdev, false);
7898 if (err)
7899 goto abort;
7900 }
NeilBrownd787be42016-06-02 16:19:53 +10007901 if (p->replacement) {
NeilBrowndd054fc2011-12-23 10:17:53 +11007902 /* We must have just cleared 'rdev' */
7903 p->rdev = p->replacement;
7904 clear_bit(Replacement, &p->replacement->flags);
7905 smp_mb(); /* Make sure other CPUs may see both as identical
7906 * but will never see neither - if they are careful
7907 */
7908 p->replacement = NULL;
Artur Paszkiewicz6358c232017-03-09 10:00:02 +01007909
7910 if (!err)
7911 err = log_modify(conf, p->rdev, true);
Guoqing Jiange5bc9c32017-04-24 15:58:04 +08007912 }
7913
7914 clear_bit(WantReplacement, &rdev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007915abort:
7916
7917 print_raid5_conf(conf);
7918 return err;
7919}
7920
NeilBrownfd01b882011-10-11 16:47:53 +11007921static int raid5_add_disk(struct mddev *mddev, struct md_rdev *rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007922{
NeilBrownd1688a62011-10-11 16:49:52 +11007923 struct r5conf *conf = mddev->private;
Xiao Nid9771f52019-06-14 15:41:05 -07007924 int ret, err = -EEXIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007925 int disk;
7926 struct disk_info *p;
Neil Brown6c2fce22008-06-28 08:31:31 +10007927 int first = 0;
7928 int last = conf->raid_disks - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007929
Shaohua Lif6b6ec52015-12-21 10:51:02 +11007930 if (test_bit(Journal, &rdev->flags)) {
Shaohua Lif6b6ec52015-12-21 10:51:02 +11007931 if (conf->log)
7932 return -EBUSY;
7933
7934 rdev->raid_disk = 0;
7935 /*
7936 * The array is in readonly mode if journal is missing, so no
7937 * write requests running. We should be safe
7938 */
Xiao Nid9771f52019-06-14 15:41:05 -07007939 ret = log_init(conf, rdev, false);
7940 if (ret)
7941 return ret;
7942
7943 ret = r5l_start(conf->log);
7944 if (ret)
7945 return ret;
7946
Shaohua Lif6b6ec52015-12-21 10:51:02 +11007947 return 0;
7948 }
NeilBrown7f0da592011-07-28 11:39:22 +10007949 if (mddev->recovery_disabled == conf->recovery_disabled)
7950 return -EBUSY;
7951
NeilBrowndc10c642012-03-19 12:46:37 +11007952 if (rdev->saved_raid_disk < 0 && has_failed(conf))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007953 /* no point adding a device */
Neil Brown199050e2008-06-28 08:31:33 +10007954 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007955
Neil Brown6c2fce22008-06-28 08:31:31 +10007956 if (rdev->raid_disk >= 0)
7957 first = last = rdev->raid_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007958
7959 /*
NeilBrown16a53ec2006-06-26 00:27:38 -07007960 * find the disk ... but prefer rdev->saved_raid_disk
7961 * if possible.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007962 */
NeilBrown16a53ec2006-06-26 00:27:38 -07007963 if (rdev->saved_raid_disk >= 0 &&
Neil Brown6c2fce22008-06-28 08:31:31 +10007964 rdev->saved_raid_disk >= first &&
NeilBrown16a53ec2006-06-26 00:27:38 -07007965 conf->disks[rdev->saved_raid_disk].rdev == NULL)
NeilBrown5cfb22a2012-07-03 11:46:53 +10007966 first = rdev->saved_raid_disk;
7967
7968 for (disk = first; disk <= last; disk++) {
NeilBrown7bfec5f2011-12-23 10:17:53 +11007969 p = conf->disks + disk;
7970 if (p->rdev == NULL) {
NeilBrownb2d444d2005-11-08 21:39:31 -08007971 clear_bit(In_sync, &rdev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007972 rdev->raid_disk = disk;
NeilBrown72626682005-09-09 16:23:54 -07007973 if (rdev->saved_raid_disk != disk)
7974 conf->fullsync = 1;
Suzanne Woodd6065f72005-11-08 21:39:27 -08007975 rcu_assign_pointer(p->rdev, rdev);
Artur Paszkiewicz6358c232017-03-09 10:00:02 +01007976
7977 err = log_modify(conf, rdev, true);
7978
NeilBrown5cfb22a2012-07-03 11:46:53 +10007979 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007980 }
NeilBrown5cfb22a2012-07-03 11:46:53 +10007981 }
7982 for (disk = first; disk <= last; disk++) {
7983 p = conf->disks + disk;
NeilBrown7bfec5f2011-12-23 10:17:53 +11007984 if (test_bit(WantReplacement, &p->rdev->flags) &&
7985 p->replacement == NULL) {
7986 clear_bit(In_sync, &rdev->flags);
7987 set_bit(Replacement, &rdev->flags);
7988 rdev->raid_disk = disk;
7989 err = 0;
7990 conf->fullsync = 1;
7991 rcu_assign_pointer(p->replacement, rdev);
7992 break;
7993 }
7994 }
NeilBrown5cfb22a2012-07-03 11:46:53 +10007995out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007996 print_raid5_conf(conf);
Neil Brown199050e2008-06-28 08:31:33 +10007997 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007998}
7999
NeilBrownfd01b882011-10-11 16:47:53 +11008000static int raid5_resize(struct mddev *mddev, sector_t sectors)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008001{
8002 /* no resync is happening, and there is enough space
8003 * on all devices, so we can resize.
8004 * We need to make sure resync covers any new space.
8005 * If the array is shrinking we should possibly wait until
8006 * any io in the removed space completes, but it hardly seems
8007 * worth it.
8008 */
NeilBrowna4a61252012-05-22 13:55:27 +10008009 sector_t newsize;
NeilBrown3cb5edf2015-07-15 17:24:17 +10008010 struct r5conf *conf = mddev->private;
8011
Shaohua Lie254de62018-08-29 11:05:42 -07008012 if (raid5_has_log(conf) || raid5_has_ppl(conf))
Shaohua Li713cf5a2015-08-13 14:32:03 -07008013 return -EINVAL;
NeilBrown3cb5edf2015-07-15 17:24:17 +10008014 sectors &= ~((sector_t)conf->chunk_sectors - 1);
NeilBrowna4a61252012-05-22 13:55:27 +10008015 newsize = raid5_size(mddev, sectors, mddev->raid_disks);
8016 if (mddev->external_size &&
8017 mddev->array_sectors > newsize)
Dan Williamsb522adc2009-03-31 15:00:31 +11008018 return -EINVAL;
NeilBrowna4a61252012-05-22 13:55:27 +10008019 if (mddev->bitmap) {
Andy Shevchenkoe64e40182018-08-01 15:20:50 -07008020 int ret = md_bitmap_resize(mddev->bitmap, sectors, 0, 0);
NeilBrowna4a61252012-05-22 13:55:27 +10008021 if (ret)
8022 return ret;
8023 }
8024 md_set_array_sectors(mddev, newsize);
NeilBrownb0986362011-05-11 15:52:21 +10008025 if (sectors > mddev->dev_sectors &&
8026 mddev->recovery_cp > mddev->dev_sectors) {
Andre Noll58c0fed2009-03-31 14:33:13 +11008027 mddev->recovery_cp = mddev->dev_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008028 set_bit(MD_RECOVERY_NEEDED, &mddev->recovery);
8029 }
Andre Noll58c0fed2009-03-31 14:33:13 +11008030 mddev->dev_sectors = sectors;
NeilBrown4b5c7ae2005-07-27 11:43:28 -07008031 mddev->resync_max_sectors = sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008032 return 0;
8033}
8034
NeilBrownfd01b882011-10-11 16:47:53 +11008035static int check_stripe_cache(struct mddev *mddev)
NeilBrown01ee22b2009-06-18 08:47:20 +10008036{
8037 /* Can only proceed if there are plenty of stripe_heads.
8038 * We need a minimum of one full stripe,, and for sensible progress
8039 * it is best to have about 4 times that.
8040 * If we require 4 times, then the default 256 4K stripe_heads will
8041 * allow for chunk sizes up to 256K, which is probably OK.
8042 * If the chunk size is greater, user-space should request more
8043 * stripe_heads first.
8044 */
NeilBrownd1688a62011-10-11 16:49:52 +11008045 struct r5conf *conf = mddev->private;
Yufen Yuc911c462020-07-18 05:29:07 -04008046 if (((mddev->chunk_sectors << 9) / RAID5_STRIPE_SIZE(conf)) * 4
NeilBrownedbe83a2015-02-26 12:47:56 +11008047 > conf->min_nr_stripes ||
Yufen Yuc911c462020-07-18 05:29:07 -04008048 ((mddev->new_chunk_sectors << 9) / RAID5_STRIPE_SIZE(conf)) * 4
NeilBrownedbe83a2015-02-26 12:47:56 +11008049 > conf->min_nr_stripes) {
NeilBrowncc6167b2016-11-02 14:16:50 +11008050 pr_warn("md/raid:%s: reshape: not enough stripes. Needed %lu\n",
8051 mdname(mddev),
8052 ((max(mddev->chunk_sectors, mddev->new_chunk_sectors) << 9)
Yufen Yuc911c462020-07-18 05:29:07 -04008053 / RAID5_STRIPE_SIZE(conf))*4);
NeilBrown01ee22b2009-06-18 08:47:20 +10008054 return 0;
8055 }
8056 return 1;
8057}
8058
NeilBrownfd01b882011-10-11 16:47:53 +11008059static int check_reshape(struct mddev *mddev)
NeilBrown29269552006-03-27 01:18:10 -08008060{
NeilBrownd1688a62011-10-11 16:49:52 +11008061 struct r5conf *conf = mddev->private;
NeilBrown29269552006-03-27 01:18:10 -08008062
Shaohua Lie254de62018-08-29 11:05:42 -07008063 if (raid5_has_log(conf) || raid5_has_ppl(conf))
Shaohua Li713cf5a2015-08-13 14:32:03 -07008064 return -EINVAL;
NeilBrown88ce4932009-03-31 15:24:23 +11008065 if (mddev->delta_disks == 0 &&
8066 mddev->new_layout == mddev->layout &&
Andre Noll664e7c42009-06-18 08:45:27 +10008067 mddev->new_chunk_sectors == mddev->chunk_sectors)
NeilBrown50ac1682009-06-18 08:47:55 +10008068 return 0; /* nothing to do */
NeilBrown674806d2010-06-16 17:17:53 +10008069 if (has_failed(conf))
NeilBrownec32a2b2009-03-31 15:17:38 +11008070 return -EINVAL;
NeilBrownfdcfbbb2013-07-04 16:38:16 +10008071 if (mddev->delta_disks < 0 && mddev->reshape_position == MaxSector) {
NeilBrownec32a2b2009-03-31 15:17:38 +11008072 /* We might be able to shrink, but the devices must
8073 * be made bigger first.
8074 * For raid6, 4 is the minimum size.
8075 * Otherwise 2 is the minimum
8076 */
8077 int min = 2;
8078 if (mddev->level == 6)
8079 min = 4;
8080 if (mddev->raid_disks + mddev->delta_disks < min)
8081 return -EINVAL;
8082 }
NeilBrown29269552006-03-27 01:18:10 -08008083
NeilBrown01ee22b2009-06-18 08:47:20 +10008084 if (!check_stripe_cache(mddev))
NeilBrown29269552006-03-27 01:18:10 -08008085 return -ENOSPC;
NeilBrown29269552006-03-27 01:18:10 -08008086
NeilBrown738a2732015-05-08 18:19:39 +10008087 if (mddev->new_chunk_sectors > mddev->chunk_sectors ||
8088 mddev->delta_disks > 0)
8089 if (resize_chunks(conf,
8090 conf->previous_raid_disks
8091 + max(0, mddev->delta_disks),
8092 max(mddev->new_chunk_sectors,
8093 mddev->chunk_sectors)
8094 ) < 0)
8095 return -ENOMEM;
Artur Paszkiewicz845b9e22017-04-04 13:13:57 +02008096
8097 if (conf->previous_raid_disks + mddev->delta_disks <= conf->pool_size)
8098 return 0; /* never bother to shrink */
NeilBrowne56108d62012-10-11 14:24:13 +11008099 return resize_stripes(conf, (conf->previous_raid_disks
8100 + mddev->delta_disks));
NeilBrown63c70c42006-03-27 01:18:13 -08008101}
8102
NeilBrownfd01b882011-10-11 16:47:53 +11008103static int raid5_start_reshape(struct mddev *mddev)
NeilBrown63c70c42006-03-27 01:18:13 -08008104{
NeilBrownd1688a62011-10-11 16:49:52 +11008105 struct r5conf *conf = mddev->private;
NeilBrown3cb03002011-10-11 16:45:26 +11008106 struct md_rdev *rdev;
NeilBrown63c70c42006-03-27 01:18:13 -08008107 int spares = 0;
NeilBrownc04be0a2006-10-03 01:15:53 -07008108 unsigned long flags;
NeilBrown63c70c42006-03-27 01:18:13 -08008109
NeilBrownf4168852007-02-28 20:11:53 -08008110 if (test_bit(MD_RECOVERY_RUNNING, &mddev->recovery))
NeilBrown63c70c42006-03-27 01:18:13 -08008111 return -EBUSY;
8112
NeilBrown01ee22b2009-06-18 08:47:20 +10008113 if (!check_stripe_cache(mddev))
8114 return -ENOSPC;
8115
NeilBrown30b67642012-05-22 13:55:28 +10008116 if (has_failed(conf))
8117 return -EINVAL;
8118
NeilBrownc6563a82012-05-21 09:27:00 +10008119 rdev_for_each(rdev, mddev) {
NeilBrown469518a2011-01-31 11:57:43 +11008120 if (!test_bit(In_sync, &rdev->flags)
8121 && !test_bit(Faulty, &rdev->flags))
NeilBrown29269552006-03-27 01:18:10 -08008122 spares++;
NeilBrownc6563a82012-05-21 09:27:00 +10008123 }
NeilBrown63c70c42006-03-27 01:18:13 -08008124
NeilBrownf4168852007-02-28 20:11:53 -08008125 if (spares - mddev->degraded < mddev->delta_disks - conf->max_degraded)
NeilBrown29269552006-03-27 01:18:10 -08008126 /* Not enough devices even to make a degraded array
8127 * of that size
8128 */
8129 return -EINVAL;
8130
NeilBrownec32a2b2009-03-31 15:17:38 +11008131 /* Refuse to reduce size of the array. Any reductions in
8132 * array size must be through explicit setting of array_size
8133 * attribute.
8134 */
8135 if (raid5_size(mddev, 0, conf->raid_disks + mddev->delta_disks)
8136 < mddev->array_sectors) {
NeilBrowncc6167b2016-11-02 14:16:50 +11008137 pr_warn("md/raid:%s: array size must be reduced before number of disks\n",
8138 mdname(mddev));
NeilBrownec32a2b2009-03-31 15:17:38 +11008139 return -EINVAL;
8140 }
8141
NeilBrownf6705572006-03-27 01:18:11 -08008142 atomic_set(&conf->reshape_stripes, 0);
NeilBrown29269552006-03-27 01:18:10 -08008143 spin_lock_irq(&conf->device_lock);
NeilBrownc46501b2013-08-27 15:52:13 +10008144 write_seqcount_begin(&conf->gen_lock);
NeilBrown29269552006-03-27 01:18:10 -08008145 conf->previous_raid_disks = conf->raid_disks;
NeilBrown63c70c42006-03-27 01:18:13 -08008146 conf->raid_disks += mddev->delta_disks;
Andre Noll09c9e5f2009-06-18 08:45:55 +10008147 conf->prev_chunk_sectors = conf->chunk_sectors;
8148 conf->chunk_sectors = mddev->new_chunk_sectors;
NeilBrown88ce4932009-03-31 15:24:23 +11008149 conf->prev_algo = conf->algorithm;
8150 conf->algorithm = mddev->new_layout;
NeilBrown05616be2012-05-21 09:27:00 +10008151 conf->generation++;
8152 /* Code that selects data_offset needs to see the generation update
8153 * if reshape_progress has been set - so a memory barrier needed.
8154 */
8155 smp_mb();
NeilBrown2c810cd2012-05-21 09:27:00 +10008156 if (mddev->reshape_backwards)
NeilBrownfef9c612009-03-31 15:16:46 +11008157 conf->reshape_progress = raid5_size(mddev, 0, 0);
8158 else
8159 conf->reshape_progress = 0;
8160 conf->reshape_safe = conf->reshape_progress;
NeilBrownc46501b2013-08-27 15:52:13 +10008161 write_seqcount_end(&conf->gen_lock);
NeilBrown29269552006-03-27 01:18:10 -08008162 spin_unlock_irq(&conf->device_lock);
8163
NeilBrown4d77e3b2013-08-27 15:57:47 +10008164 /* Now make sure any requests that proceeded on the assumption
8165 * the reshape wasn't running - like Discard or Read - have
8166 * completed.
8167 */
8168 mddev_suspend(mddev);
8169 mddev_resume(mddev);
8170
NeilBrown29269552006-03-27 01:18:10 -08008171 /* Add some new drives, as many as will fit.
8172 * We know there are enough to make the newly sized array work.
NeilBrown3424bf62010-06-17 17:48:26 +10008173 * Don't add devices if we are reducing the number of
8174 * devices in the array. This is because it is not possible
8175 * to correctly record the "partially reconstructed" state of
8176 * such devices during the reshape and confusion could result.
NeilBrown29269552006-03-27 01:18:10 -08008177 */
NeilBrown87a8dec2011-01-31 11:57:43 +11008178 if (mddev->delta_disks >= 0) {
NeilBrowndafb20f2012-03-19 12:46:39 +11008179 rdev_for_each(rdev, mddev)
NeilBrown87a8dec2011-01-31 11:57:43 +11008180 if (rdev->raid_disk < 0 &&
8181 !test_bit(Faulty, &rdev->flags)) {
8182 if (raid5_add_disk(mddev, rdev) == 0) {
NeilBrown87a8dec2011-01-31 11:57:43 +11008183 if (rdev->raid_disk
NeilBrown9d4c7d82012-03-13 11:21:21 +11008184 >= conf->previous_raid_disks)
NeilBrown87a8dec2011-01-31 11:57:43 +11008185 set_bit(In_sync, &rdev->flags);
NeilBrown9d4c7d82012-03-13 11:21:21 +11008186 else
NeilBrown87a8dec2011-01-31 11:57:43 +11008187 rdev->recovery_offset = 0;
Namhyung Kim36fad852011-07-27 11:00:36 +10008188
Damien Le Moal2aada5b2020-07-16 13:54:42 +09008189 /* Failure here is OK */
8190 sysfs_link_rdev(mddev, rdev);
NeilBrown50da0842011-01-31 11:57:43 +11008191 }
NeilBrown87a8dec2011-01-31 11:57:43 +11008192 } else if (rdev->raid_disk >= conf->previous_raid_disks
8193 && !test_bit(Faulty, &rdev->flags)) {
8194 /* This is a spare that was manually added */
8195 set_bit(In_sync, &rdev->flags);
NeilBrown87a8dec2011-01-31 11:57:43 +11008196 }
NeilBrown29269552006-03-27 01:18:10 -08008197
NeilBrown87a8dec2011-01-31 11:57:43 +11008198 /* When a reshape changes the number of devices,
8199 * ->degraded is measured against the larger of the
8200 * pre and post number of devices.
8201 */
NeilBrownec32a2b2009-03-31 15:17:38 +11008202 spin_lock_irqsave(&conf->device_lock, flags);
Song Liu2e38a372017-01-24 10:45:30 -08008203 mddev->degraded = raid5_calc_degraded(conf);
NeilBrownec32a2b2009-03-31 15:17:38 +11008204 spin_unlock_irqrestore(&conf->device_lock, flags);
8205 }
NeilBrown63c70c42006-03-27 01:18:13 -08008206 mddev->raid_disks = conf->raid_disks;
NeilBrowne5164022009-08-03 10:59:57 +10008207 mddev->reshape_position = conf->reshape_progress;
Shaohua Li29530792016-12-08 15:48:19 -08008208 set_bit(MD_SB_CHANGE_DEVS, &mddev->sb_flags);
NeilBrownf6705572006-03-27 01:18:11 -08008209
NeilBrown29269552006-03-27 01:18:10 -08008210 clear_bit(MD_RECOVERY_SYNC, &mddev->recovery);
8211 clear_bit(MD_RECOVERY_CHECK, &mddev->recovery);
NeilBrownea358cd2015-06-12 20:05:04 +10008212 clear_bit(MD_RECOVERY_DONE, &mddev->recovery);
NeilBrown29269552006-03-27 01:18:10 -08008213 set_bit(MD_RECOVERY_RESHAPE, &mddev->recovery);
8214 set_bit(MD_RECOVERY_RUNNING, &mddev->recovery);
8215 mddev->sync_thread = md_register_thread(md_do_sync, mddev,
NeilBrown0da3c612009-09-23 18:09:45 +10008216 "reshape");
NeilBrown29269552006-03-27 01:18:10 -08008217 if (!mddev->sync_thread) {
8218 mddev->recovery = 0;
8219 spin_lock_irq(&conf->device_lock);
NeilBrownba8805b2013-11-14 15:16:15 +11008220 write_seqcount_begin(&conf->gen_lock);
NeilBrown29269552006-03-27 01:18:10 -08008221 mddev->raid_disks = conf->raid_disks = conf->previous_raid_disks;
NeilBrownba8805b2013-11-14 15:16:15 +11008222 mddev->new_chunk_sectors =
8223 conf->chunk_sectors = conf->prev_chunk_sectors;
8224 mddev->new_layout = conf->algorithm = conf->prev_algo;
NeilBrown05616be2012-05-21 09:27:00 +10008225 rdev_for_each(rdev, mddev)
8226 rdev->new_data_offset = rdev->data_offset;
8227 smp_wmb();
NeilBrownba8805b2013-11-14 15:16:15 +11008228 conf->generation --;
NeilBrownfef9c612009-03-31 15:16:46 +11008229 conf->reshape_progress = MaxSector;
NeilBrown1e3fa9b2012-03-13 11:21:18 +11008230 mddev->reshape_position = MaxSector;
NeilBrownba8805b2013-11-14 15:16:15 +11008231 write_seqcount_end(&conf->gen_lock);
NeilBrown29269552006-03-27 01:18:10 -08008232 spin_unlock_irq(&conf->device_lock);
8233 return -EAGAIN;
8234 }
NeilBrownc8f517c2009-03-31 15:28:40 +11008235 conf->reshape_checkpoint = jiffies;
NeilBrown29269552006-03-27 01:18:10 -08008236 md_wakeup_thread(mddev->sync_thread);
8237 md_new_event(mddev);
8238 return 0;
8239}
NeilBrown29269552006-03-27 01:18:10 -08008240
NeilBrownec32a2b2009-03-31 15:17:38 +11008241/* This is called from the reshape thread and should make any
8242 * changes needed in 'conf'
8243 */
NeilBrownd1688a62011-10-11 16:49:52 +11008244static void end_reshape(struct r5conf *conf)
NeilBrown29269552006-03-27 01:18:10 -08008245{
NeilBrown29269552006-03-27 01:18:10 -08008246
NeilBrownf6705572006-03-27 01:18:11 -08008247 if (!test_bit(MD_RECOVERY_INTR, &conf->mddev->recovery)) {
NeilBrowndb0505d2017-10-17 16:18:36 +11008248 struct md_rdev *rdev;
Dan Williams80c3a6c2009-03-17 18:10:40 -07008249
NeilBrownf6705572006-03-27 01:18:11 -08008250 spin_lock_irq(&conf->device_lock);
NeilBrowncea9c222009-03-31 15:15:05 +11008251 conf->previous_raid_disks = conf->raid_disks;
Xiao Nib5d27712017-07-05 17:34:04 +08008252 md_finish_reshape(conf->mddev);
NeilBrown05616be2012-05-21 09:27:00 +10008253 smp_wmb();
NeilBrownfef9c612009-03-31 15:16:46 +11008254 conf->reshape_progress = MaxSector;
NeilBrown6cbd8142015-07-24 13:30:32 +10008255 conf->mddev->reshape_position = MaxSector;
NeilBrowndb0505d2017-10-17 16:18:36 +11008256 rdev_for_each(rdev, conf->mddev)
8257 if (rdev->raid_disk >= 0 &&
8258 !test_bit(Journal, &rdev->flags) &&
8259 !test_bit(In_sync, &rdev->flags))
8260 rdev->recovery_offset = MaxSector;
NeilBrownf6705572006-03-27 01:18:11 -08008261 spin_unlock_irq(&conf->device_lock);
NeilBrownb0f9ec02009-03-31 15:27:18 +11008262 wake_up(&conf->wait_for_overlap);
NeilBrown16a53ec2006-06-26 00:27:38 -07008263
Christoph Hellwigc2e4cd52020-09-24 08:51:34 +02008264 if (conf->mddev->queue)
Christoph Hellwig16ef5102020-09-24 08:51:33 +02008265 raid5_set_io_opt(conf);
NeilBrown29269552006-03-27 01:18:10 -08008266 }
NeilBrown29269552006-03-27 01:18:10 -08008267}
8268
NeilBrownec32a2b2009-03-31 15:17:38 +11008269/* This is called from the raid5d thread with mddev_lock held.
8270 * It makes config changes to the device.
8271 */
NeilBrownfd01b882011-10-11 16:47:53 +11008272static void raid5_finish_reshape(struct mddev *mddev)
NeilBrowncea9c222009-03-31 15:15:05 +11008273{
NeilBrownd1688a62011-10-11 16:49:52 +11008274 struct r5conf *conf = mddev->private;
NeilBrowncea9c222009-03-31 15:15:05 +11008275
8276 if (!test_bit(MD_RECOVERY_INTR, &mddev->recovery)) {
8277
BingJing Chang88763912018-02-22 13:34:46 +08008278 if (mddev->delta_disks <= 0) {
NeilBrownec32a2b2009-03-31 15:17:38 +11008279 int d;
NeilBrown908f4fb2011-12-23 10:17:50 +11008280 spin_lock_irq(&conf->device_lock);
Song Liu2e38a372017-01-24 10:45:30 -08008281 mddev->degraded = raid5_calc_degraded(conf);
NeilBrown908f4fb2011-12-23 10:17:50 +11008282 spin_unlock_irq(&conf->device_lock);
NeilBrownec32a2b2009-03-31 15:17:38 +11008283 for (d = conf->raid_disks ;
8284 d < conf->raid_disks - mddev->delta_disks;
NeilBrown1a67dde2009-08-13 10:41:49 +10008285 d++) {
NeilBrown3cb03002011-10-11 16:45:26 +11008286 struct md_rdev *rdev = conf->disks[d].rdev;
NeilBrownda7613b2012-05-22 13:55:33 +10008287 if (rdev)
8288 clear_bit(In_sync, &rdev->flags);
8289 rdev = conf->disks[d].replacement;
8290 if (rdev)
8291 clear_bit(In_sync, &rdev->flags);
NeilBrown1a67dde2009-08-13 10:41:49 +10008292 }
NeilBrowncea9c222009-03-31 15:15:05 +11008293 }
NeilBrown88ce4932009-03-31 15:24:23 +11008294 mddev->layout = conf->algorithm;
Andre Noll09c9e5f2009-06-18 08:45:55 +10008295 mddev->chunk_sectors = conf->chunk_sectors;
NeilBrownec32a2b2009-03-31 15:17:38 +11008296 mddev->reshape_position = MaxSector;
8297 mddev->delta_disks = 0;
NeilBrown2c810cd2012-05-21 09:27:00 +10008298 mddev->reshape_backwards = 0;
NeilBrowncea9c222009-03-31 15:15:05 +11008299 }
8300}
8301
NeilBrownb03e0cc2017-10-19 12:49:15 +11008302static void raid5_quiesce(struct mddev *mddev, int quiesce)
NeilBrown72626682005-09-09 16:23:54 -07008303{
NeilBrownd1688a62011-10-11 16:49:52 +11008304 struct r5conf *conf = mddev->private;
NeilBrown72626682005-09-09 16:23:54 -07008305
NeilBrownb03e0cc2017-10-19 12:49:15 +11008306 if (quiesce) {
8307 /* stop all writes */
Shaohua Li566c09c2013-11-14 15:16:17 +11008308 lock_all_device_hash_locks_irq(conf);
NeilBrown64bd6602009-08-03 10:59:58 +10008309 /* '2' tells resync/reshape to pause so that all
8310 * active stripes can drain
8311 */
Song Liua39f7af2016-11-17 15:24:40 -08008312 r5c_flush_cache(conf, INT_MAX);
NeilBrown64bd6602009-08-03 10:59:58 +10008313 conf->quiesce = 2;
Yuanhan Liub1b46482015-05-08 18:19:06 +10008314 wait_event_cmd(conf->wait_for_quiescent,
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08008315 atomic_read(&conf->active_stripes) == 0 &&
8316 atomic_read(&conf->active_aligned_reads) == 0,
Shaohua Li566c09c2013-11-14 15:16:17 +11008317 unlock_all_device_hash_locks_irq(conf),
8318 lock_all_device_hash_locks_irq(conf));
NeilBrown64bd6602009-08-03 10:59:58 +10008319 conf->quiesce = 1;
Shaohua Li566c09c2013-11-14 15:16:17 +11008320 unlock_all_device_hash_locks_irq(conf);
NeilBrown64bd6602009-08-03 10:59:58 +10008321 /* allow reshape to continue */
8322 wake_up(&conf->wait_for_overlap);
NeilBrownb03e0cc2017-10-19 12:49:15 +11008323 } else {
8324 /* re-enable writes */
Shaohua Li566c09c2013-11-14 15:16:17 +11008325 lock_all_device_hash_locks_irq(conf);
NeilBrown72626682005-09-09 16:23:54 -07008326 conf->quiesce = 0;
Yuanhan Liub1b46482015-05-08 18:19:06 +10008327 wake_up(&conf->wait_for_quiescent);
NeilBrowne464eaf2006-03-27 01:18:14 -08008328 wake_up(&conf->wait_for_overlap);
Shaohua Li566c09c2013-11-14 15:16:17 +11008329 unlock_all_device_hash_locks_irq(conf);
NeilBrown72626682005-09-09 16:23:54 -07008330 }
Tomasz Majchrzak1532d9e2017-12-27 10:31:40 +01008331 log_quiesce(conf, quiesce);
NeilBrown72626682005-09-09 16:23:54 -07008332}
NeilBrownb15c2e52006-01-06 00:20:16 -08008333
NeilBrownfd01b882011-10-11 16:47:53 +11008334static void *raid45_takeover_raid0(struct mddev *mddev, int level)
Trela Maciej54071b32010-03-08 16:02:42 +11008335{
NeilBrowne373ab12011-10-11 16:48:59 +11008336 struct r0conf *raid0_conf = mddev->private;
Randy Dunlapd76c8422011-04-21 09:07:26 -07008337 sector_t sectors;
Trela Maciej54071b32010-03-08 16:02:42 +11008338
Dan Williamsf1b29bc2010-05-01 18:09:05 -07008339 /* for raid0 takeover only one zone is supported */
NeilBrowne373ab12011-10-11 16:48:59 +11008340 if (raid0_conf->nr_strip_zones > 1) {
NeilBrowncc6167b2016-11-02 14:16:50 +11008341 pr_warn("md/raid:%s: cannot takeover raid0 with more than one zone.\n",
8342 mdname(mddev));
Dan Williamsf1b29bc2010-05-01 18:09:05 -07008343 return ERR_PTR(-EINVAL);
8344 }
8345
NeilBrowne373ab12011-10-11 16:48:59 +11008346 sectors = raid0_conf->strip_zone[0].zone_end;
8347 sector_div(sectors, raid0_conf->strip_zone[0].nb_dev);
NeilBrown3b71bd92011-04-20 15:38:18 +10008348 mddev->dev_sectors = sectors;
Dan Williamsf1b29bc2010-05-01 18:09:05 -07008349 mddev->new_level = level;
Trela Maciej54071b32010-03-08 16:02:42 +11008350 mddev->new_layout = ALGORITHM_PARITY_N;
8351 mddev->new_chunk_sectors = mddev->chunk_sectors;
8352 mddev->raid_disks += 1;
8353 mddev->delta_disks = 1;
8354 /* make sure it will be not marked as dirty */
8355 mddev->recovery_cp = MaxSector;
8356
8357 return setup_conf(mddev);
8358}
8359
NeilBrownfd01b882011-10-11 16:47:53 +11008360static void *raid5_takeover_raid1(struct mddev *mddev)
NeilBrownd562b0c2009-03-31 14:39:39 +11008361{
8362 int chunksect;
Shaohua Li6995f0b2016-12-08 15:48:17 -08008363 void *ret;
NeilBrownd562b0c2009-03-31 14:39:39 +11008364
8365 if (mddev->raid_disks != 2 ||
8366 mddev->degraded > 1)
8367 return ERR_PTR(-EINVAL);
8368
8369 /* Should check if there are write-behind devices? */
8370
8371 chunksect = 64*2; /* 64K by default */
8372
8373 /* The array must be an exact multiple of chunksize */
8374 while (chunksect && (mddev->array_sectors & (chunksect-1)))
8375 chunksect >>= 1;
8376
Yufen Yuc911c462020-07-18 05:29:07 -04008377 if ((chunksect<<9) < RAID5_STRIPE_SIZE((struct r5conf *)mddev->private))
NeilBrownd562b0c2009-03-31 14:39:39 +11008378 /* array size does not allow a suitable chunk size */
8379 return ERR_PTR(-EINVAL);
8380
8381 mddev->new_level = 5;
8382 mddev->new_layout = ALGORITHM_LEFT_SYMMETRIC;
Andre Noll664e7c42009-06-18 08:45:27 +10008383 mddev->new_chunk_sectors = chunksect;
NeilBrownd562b0c2009-03-31 14:39:39 +11008384
Shaohua Li6995f0b2016-12-08 15:48:17 -08008385 ret = setup_conf(mddev);
Jes Sorensen32cd7cb2017-01-06 19:31:35 -05008386 if (!IS_ERR(ret))
Shaohua Li394ed8e2017-01-04 16:10:19 -08008387 mddev_clear_unsupported_flags(mddev,
8388 UNSUPPORTED_MDDEV_FLAGS);
Shaohua Li6995f0b2016-12-08 15:48:17 -08008389 return ret;
NeilBrownd562b0c2009-03-31 14:39:39 +11008390}
8391
NeilBrownfd01b882011-10-11 16:47:53 +11008392static void *raid5_takeover_raid6(struct mddev *mddev)
NeilBrownfc9739c2009-03-31 14:57:20 +11008393{
8394 int new_layout;
8395
8396 switch (mddev->layout) {
8397 case ALGORITHM_LEFT_ASYMMETRIC_6:
8398 new_layout = ALGORITHM_LEFT_ASYMMETRIC;
8399 break;
8400 case ALGORITHM_RIGHT_ASYMMETRIC_6:
8401 new_layout = ALGORITHM_RIGHT_ASYMMETRIC;
8402 break;
8403 case ALGORITHM_LEFT_SYMMETRIC_6:
8404 new_layout = ALGORITHM_LEFT_SYMMETRIC;
8405 break;
8406 case ALGORITHM_RIGHT_SYMMETRIC_6:
8407 new_layout = ALGORITHM_RIGHT_SYMMETRIC;
8408 break;
8409 case ALGORITHM_PARITY_0_6:
8410 new_layout = ALGORITHM_PARITY_0;
8411 break;
8412 case ALGORITHM_PARITY_N:
8413 new_layout = ALGORITHM_PARITY_N;
8414 break;
8415 default:
8416 return ERR_PTR(-EINVAL);
8417 }
8418 mddev->new_level = 5;
8419 mddev->new_layout = new_layout;
8420 mddev->delta_disks = -1;
8421 mddev->raid_disks -= 1;
8422 return setup_conf(mddev);
8423}
8424
NeilBrownfd01b882011-10-11 16:47:53 +11008425static int raid5_check_reshape(struct mddev *mddev)
NeilBrownb3546032009-03-31 14:56:41 +11008426{
NeilBrown88ce4932009-03-31 15:24:23 +11008427 /* For a 2-drive array, the layout and chunk size can be changed
8428 * immediately as not restriping is needed.
8429 * For larger arrays we record the new value - after validation
8430 * to be used by a reshape pass.
NeilBrownb3546032009-03-31 14:56:41 +11008431 */
NeilBrownd1688a62011-10-11 16:49:52 +11008432 struct r5conf *conf = mddev->private;
NeilBrown597a7112009-06-18 08:47:42 +10008433 int new_chunk = mddev->new_chunk_sectors;
NeilBrownb3546032009-03-31 14:56:41 +11008434
NeilBrown597a7112009-06-18 08:47:42 +10008435 if (mddev->new_layout >= 0 && !algorithm_valid_raid5(mddev->new_layout))
NeilBrownb3546032009-03-31 14:56:41 +11008436 return -EINVAL;
8437 if (new_chunk > 0) {
Andre Noll0ba459d2009-06-18 08:46:10 +10008438 if (!is_power_of_2(new_chunk))
NeilBrownb3546032009-03-31 14:56:41 +11008439 return -EINVAL;
NeilBrown597a7112009-06-18 08:47:42 +10008440 if (new_chunk < (PAGE_SIZE>>9))
NeilBrownb3546032009-03-31 14:56:41 +11008441 return -EINVAL;
NeilBrown597a7112009-06-18 08:47:42 +10008442 if (mddev->array_sectors & (new_chunk-1))
NeilBrownb3546032009-03-31 14:56:41 +11008443 /* not factor of array size */
8444 return -EINVAL;
8445 }
8446
8447 /* They look valid */
8448
NeilBrown88ce4932009-03-31 15:24:23 +11008449 if (mddev->raid_disks == 2) {
NeilBrown597a7112009-06-18 08:47:42 +10008450 /* can make the change immediately */
8451 if (mddev->new_layout >= 0) {
8452 conf->algorithm = mddev->new_layout;
8453 mddev->layout = mddev->new_layout;
NeilBrown88ce4932009-03-31 15:24:23 +11008454 }
8455 if (new_chunk > 0) {
NeilBrown597a7112009-06-18 08:47:42 +10008456 conf->chunk_sectors = new_chunk ;
8457 mddev->chunk_sectors = new_chunk;
NeilBrown88ce4932009-03-31 15:24:23 +11008458 }
Shaohua Li29530792016-12-08 15:48:19 -08008459 set_bit(MD_SB_CHANGE_DEVS, &mddev->sb_flags);
NeilBrown88ce4932009-03-31 15:24:23 +11008460 md_wakeup_thread(mddev->thread);
NeilBrownb3546032009-03-31 14:56:41 +11008461 }
NeilBrown50ac1682009-06-18 08:47:55 +10008462 return check_reshape(mddev);
NeilBrown88ce4932009-03-31 15:24:23 +11008463}
8464
NeilBrownfd01b882011-10-11 16:47:53 +11008465static int raid6_check_reshape(struct mddev *mddev)
NeilBrown88ce4932009-03-31 15:24:23 +11008466{
NeilBrown597a7112009-06-18 08:47:42 +10008467 int new_chunk = mddev->new_chunk_sectors;
NeilBrown50ac1682009-06-18 08:47:55 +10008468
NeilBrown597a7112009-06-18 08:47:42 +10008469 if (mddev->new_layout >= 0 && !algorithm_valid_raid6(mddev->new_layout))
NeilBrown88ce4932009-03-31 15:24:23 +11008470 return -EINVAL;
NeilBrownb3546032009-03-31 14:56:41 +11008471 if (new_chunk > 0) {
Andre Noll0ba459d2009-06-18 08:46:10 +10008472 if (!is_power_of_2(new_chunk))
NeilBrown88ce4932009-03-31 15:24:23 +11008473 return -EINVAL;
NeilBrown597a7112009-06-18 08:47:42 +10008474 if (new_chunk < (PAGE_SIZE >> 9))
NeilBrown88ce4932009-03-31 15:24:23 +11008475 return -EINVAL;
NeilBrown597a7112009-06-18 08:47:42 +10008476 if (mddev->array_sectors & (new_chunk-1))
NeilBrown88ce4932009-03-31 15:24:23 +11008477 /* not factor of array size */
8478 return -EINVAL;
NeilBrownb3546032009-03-31 14:56:41 +11008479 }
NeilBrown88ce4932009-03-31 15:24:23 +11008480
8481 /* They look valid */
NeilBrown50ac1682009-06-18 08:47:55 +10008482 return check_reshape(mddev);
NeilBrownb3546032009-03-31 14:56:41 +11008483}
8484
NeilBrownfd01b882011-10-11 16:47:53 +11008485static void *raid5_takeover(struct mddev *mddev)
NeilBrownd562b0c2009-03-31 14:39:39 +11008486{
8487 /* raid5 can take over:
Dan Williamsf1b29bc2010-05-01 18:09:05 -07008488 * raid0 - if there is only one strip zone - make it a raid4 layout
NeilBrownd562b0c2009-03-31 14:39:39 +11008489 * raid1 - if there are two drives. We need to know the chunk size
8490 * raid4 - trivial - just use a raid4 layout.
8491 * raid6 - Providing it is a *_6 layout
NeilBrownd562b0c2009-03-31 14:39:39 +11008492 */
Dan Williamsf1b29bc2010-05-01 18:09:05 -07008493 if (mddev->level == 0)
8494 return raid45_takeover_raid0(mddev, 5);
NeilBrownd562b0c2009-03-31 14:39:39 +11008495 if (mddev->level == 1)
8496 return raid5_takeover_raid1(mddev);
NeilBrowne9d47582009-03-31 14:57:09 +11008497 if (mddev->level == 4) {
8498 mddev->new_layout = ALGORITHM_PARITY_N;
8499 mddev->new_level = 5;
8500 return setup_conf(mddev);
8501 }
NeilBrownfc9739c2009-03-31 14:57:20 +11008502 if (mddev->level == 6)
8503 return raid5_takeover_raid6(mddev);
NeilBrownd562b0c2009-03-31 14:39:39 +11008504
8505 return ERR_PTR(-EINVAL);
8506}
8507
NeilBrownfd01b882011-10-11 16:47:53 +11008508static void *raid4_takeover(struct mddev *mddev)
NeilBrowna78d38a2010-03-22 16:53:49 +11008509{
Dan Williamsf1b29bc2010-05-01 18:09:05 -07008510 /* raid4 can take over:
8511 * raid0 - if there is only one strip zone
8512 * raid5 - if layout is right
NeilBrowna78d38a2010-03-22 16:53:49 +11008513 */
Dan Williamsf1b29bc2010-05-01 18:09:05 -07008514 if (mddev->level == 0)
8515 return raid45_takeover_raid0(mddev, 4);
NeilBrowna78d38a2010-03-22 16:53:49 +11008516 if (mddev->level == 5 &&
8517 mddev->layout == ALGORITHM_PARITY_N) {
8518 mddev->new_layout = 0;
8519 mddev->new_level = 4;
8520 return setup_conf(mddev);
8521 }
8522 return ERR_PTR(-EINVAL);
8523}
NeilBrownd562b0c2009-03-31 14:39:39 +11008524
NeilBrown84fc4b52011-10-11 16:49:58 +11008525static struct md_personality raid5_personality;
NeilBrown245f46c2009-03-31 14:39:39 +11008526
NeilBrownfd01b882011-10-11 16:47:53 +11008527static void *raid6_takeover(struct mddev *mddev)
NeilBrown245f46c2009-03-31 14:39:39 +11008528{
8529 /* Currently can only take over a raid5. We map the
8530 * personality to an equivalent raid6 personality
8531 * with the Q block at the end.
8532 */
8533 int new_layout;
8534
8535 if (mddev->pers != &raid5_personality)
8536 return ERR_PTR(-EINVAL);
8537 if (mddev->degraded > 1)
8538 return ERR_PTR(-EINVAL);
8539 if (mddev->raid_disks > 253)
8540 return ERR_PTR(-EINVAL);
8541 if (mddev->raid_disks < 3)
8542 return ERR_PTR(-EINVAL);
8543
8544 switch (mddev->layout) {
8545 case ALGORITHM_LEFT_ASYMMETRIC:
8546 new_layout = ALGORITHM_LEFT_ASYMMETRIC_6;
8547 break;
8548 case ALGORITHM_RIGHT_ASYMMETRIC:
8549 new_layout = ALGORITHM_RIGHT_ASYMMETRIC_6;
8550 break;
8551 case ALGORITHM_LEFT_SYMMETRIC:
8552 new_layout = ALGORITHM_LEFT_SYMMETRIC_6;
8553 break;
8554 case ALGORITHM_RIGHT_SYMMETRIC:
8555 new_layout = ALGORITHM_RIGHT_SYMMETRIC_6;
8556 break;
8557 case ALGORITHM_PARITY_0:
8558 new_layout = ALGORITHM_PARITY_0_6;
8559 break;
8560 case ALGORITHM_PARITY_N:
8561 new_layout = ALGORITHM_PARITY_N;
8562 break;
8563 default:
8564 return ERR_PTR(-EINVAL);
8565 }
8566 mddev->new_level = 6;
8567 mddev->new_layout = new_layout;
8568 mddev->delta_disks = 1;
8569 mddev->raid_disks += 1;
8570 return setup_conf(mddev);
8571}
8572
Artur Paszkiewiczba903a32017-03-09 10:00:03 +01008573static int raid5_change_consistency_policy(struct mddev *mddev, const char *buf)
8574{
8575 struct r5conf *conf;
8576 int err;
8577
8578 err = mddev_lock(mddev);
8579 if (err)
8580 return err;
8581 conf = mddev->private;
8582 if (!conf) {
8583 mddev_unlock(mddev);
8584 return -ENODEV;
8585 }
8586
Artur Paszkiewicz845b9e22017-04-04 13:13:57 +02008587 if (strncmp(buf, "ppl", 3) == 0) {
Song Liu0bb0c102017-03-27 10:51:33 -07008588 /* ppl only works with RAID 5 */
Artur Paszkiewicz845b9e22017-04-04 13:13:57 +02008589 if (!raid5_has_ppl(conf) && conf->level == 5) {
8590 err = log_init(conf, NULL, true);
8591 if (!err) {
8592 err = resize_stripes(conf, conf->pool_size);
8593 if (err)
8594 log_exit(conf);
8595 }
Song Liu0bb0c102017-03-27 10:51:33 -07008596 } else
8597 err = -EINVAL;
8598 } else if (strncmp(buf, "resync", 6) == 0) {
8599 if (raid5_has_ppl(conf)) {
8600 mddev_suspend(mddev);
8601 log_exit(conf);
Song Liu0bb0c102017-03-27 10:51:33 -07008602 mddev_resume(mddev);
Artur Paszkiewicz845b9e22017-04-04 13:13:57 +02008603 err = resize_stripes(conf, conf->pool_size);
Song Liu0bb0c102017-03-27 10:51:33 -07008604 } else if (test_bit(MD_HAS_JOURNAL, &conf->mddev->flags) &&
8605 r5l_log_disk_error(conf)) {
8606 bool journal_dev_exists = false;
8607 struct md_rdev *rdev;
8608
8609 rdev_for_each(rdev, mddev)
8610 if (test_bit(Journal, &rdev->flags)) {
8611 journal_dev_exists = true;
8612 break;
8613 }
8614
8615 if (!journal_dev_exists) {
8616 mddev_suspend(mddev);
8617 clear_bit(MD_HAS_JOURNAL, &mddev->flags);
8618 mddev_resume(mddev);
8619 } else /* need remove journal device first */
8620 err = -EBUSY;
8621 } else
8622 err = -EINVAL;
Artur Paszkiewiczba903a32017-03-09 10:00:03 +01008623 } else {
8624 err = -EINVAL;
8625 }
8626
8627 if (!err)
8628 md_update_sb(mddev, 1);
8629
8630 mddev_unlock(mddev);
8631
8632 return err;
8633}
8634
Song Liud5d885f2017-11-19 22:17:01 -08008635static int raid5_start(struct mddev *mddev)
8636{
8637 struct r5conf *conf = mddev->private;
8638
8639 return r5l_start(conf->log);
8640}
8641
NeilBrown84fc4b52011-10-11 16:49:58 +11008642static struct md_personality raid6_personality =
NeilBrown16a53ec2006-06-26 00:27:38 -07008643{
8644 .name = "raid6",
8645 .level = 6,
8646 .owner = THIS_MODULE,
Shaohua Li849674e2016-01-20 13:52:20 -08008647 .make_request = raid5_make_request,
8648 .run = raid5_run,
Song Liud5d885f2017-11-19 22:17:01 -08008649 .start = raid5_start,
NeilBrownafa0f552014-12-15 12:56:58 +11008650 .free = raid5_free,
Shaohua Li849674e2016-01-20 13:52:20 -08008651 .status = raid5_status,
8652 .error_handler = raid5_error,
NeilBrown16a53ec2006-06-26 00:27:38 -07008653 .hot_add_disk = raid5_add_disk,
8654 .hot_remove_disk= raid5_remove_disk,
8655 .spare_active = raid5_spare_active,
Shaohua Li849674e2016-01-20 13:52:20 -08008656 .sync_request = raid5_sync_request,
NeilBrown16a53ec2006-06-26 00:27:38 -07008657 .resize = raid5_resize,
Dan Williams80c3a6c2009-03-17 18:10:40 -07008658 .size = raid5_size,
NeilBrown50ac1682009-06-18 08:47:55 +10008659 .check_reshape = raid6_check_reshape,
NeilBrownf4168852007-02-28 20:11:53 -08008660 .start_reshape = raid5_start_reshape,
NeilBrowncea9c222009-03-31 15:15:05 +11008661 .finish_reshape = raid5_finish_reshape,
NeilBrown16a53ec2006-06-26 00:27:38 -07008662 .quiesce = raid5_quiesce,
NeilBrown245f46c2009-03-31 14:39:39 +11008663 .takeover = raid6_takeover,
Song Liu0bb0c102017-03-27 10:51:33 -07008664 .change_consistency_policy = raid5_change_consistency_policy,
NeilBrown16a53ec2006-06-26 00:27:38 -07008665};
NeilBrown84fc4b52011-10-11 16:49:58 +11008666static struct md_personality raid5_personality =
Linus Torvalds1da177e2005-04-16 15:20:36 -07008667{
8668 .name = "raid5",
NeilBrown2604b702006-01-06 00:20:36 -08008669 .level = 5,
Linus Torvalds1da177e2005-04-16 15:20:36 -07008670 .owner = THIS_MODULE,
Shaohua Li849674e2016-01-20 13:52:20 -08008671 .make_request = raid5_make_request,
8672 .run = raid5_run,
Song Liud5d885f2017-11-19 22:17:01 -08008673 .start = raid5_start,
NeilBrownafa0f552014-12-15 12:56:58 +11008674 .free = raid5_free,
Shaohua Li849674e2016-01-20 13:52:20 -08008675 .status = raid5_status,
8676 .error_handler = raid5_error,
Linus Torvalds1da177e2005-04-16 15:20:36 -07008677 .hot_add_disk = raid5_add_disk,
8678 .hot_remove_disk= raid5_remove_disk,
8679 .spare_active = raid5_spare_active,
Shaohua Li849674e2016-01-20 13:52:20 -08008680 .sync_request = raid5_sync_request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07008681 .resize = raid5_resize,
Dan Williams80c3a6c2009-03-17 18:10:40 -07008682 .size = raid5_size,
NeilBrown63c70c42006-03-27 01:18:13 -08008683 .check_reshape = raid5_check_reshape,
8684 .start_reshape = raid5_start_reshape,
NeilBrowncea9c222009-03-31 15:15:05 +11008685 .finish_reshape = raid5_finish_reshape,
NeilBrown72626682005-09-09 16:23:54 -07008686 .quiesce = raid5_quiesce,
NeilBrownd562b0c2009-03-31 14:39:39 +11008687 .takeover = raid5_takeover,
Artur Paszkiewiczba903a32017-03-09 10:00:03 +01008688 .change_consistency_policy = raid5_change_consistency_policy,
Linus Torvalds1da177e2005-04-16 15:20:36 -07008689};
8690
NeilBrown84fc4b52011-10-11 16:49:58 +11008691static struct md_personality raid4_personality =
Linus Torvalds1da177e2005-04-16 15:20:36 -07008692{
NeilBrown2604b702006-01-06 00:20:36 -08008693 .name = "raid4",
8694 .level = 4,
8695 .owner = THIS_MODULE,
Shaohua Li849674e2016-01-20 13:52:20 -08008696 .make_request = raid5_make_request,
8697 .run = raid5_run,
Song Liud5d885f2017-11-19 22:17:01 -08008698 .start = raid5_start,
NeilBrownafa0f552014-12-15 12:56:58 +11008699 .free = raid5_free,
Shaohua Li849674e2016-01-20 13:52:20 -08008700 .status = raid5_status,
8701 .error_handler = raid5_error,
NeilBrown2604b702006-01-06 00:20:36 -08008702 .hot_add_disk = raid5_add_disk,
8703 .hot_remove_disk= raid5_remove_disk,
8704 .spare_active = raid5_spare_active,
Shaohua Li849674e2016-01-20 13:52:20 -08008705 .sync_request = raid5_sync_request,
NeilBrown2604b702006-01-06 00:20:36 -08008706 .resize = raid5_resize,
Dan Williams80c3a6c2009-03-17 18:10:40 -07008707 .size = raid5_size,
NeilBrown3d378902007-03-26 21:32:13 -08008708 .check_reshape = raid5_check_reshape,
8709 .start_reshape = raid5_start_reshape,
NeilBrowncea9c222009-03-31 15:15:05 +11008710 .finish_reshape = raid5_finish_reshape,
NeilBrown2604b702006-01-06 00:20:36 -08008711 .quiesce = raid5_quiesce,
NeilBrowna78d38a2010-03-22 16:53:49 +11008712 .takeover = raid4_takeover,
Song Liu0bb0c102017-03-27 10:51:33 -07008713 .change_consistency_policy = raid5_change_consistency_policy,
NeilBrown2604b702006-01-06 00:20:36 -08008714};
8715
8716static int __init raid5_init(void)
8717{
Sebastian Andrzej Siewior29c6d1b2016-08-18 14:57:24 +02008718 int ret;
8719
Shaohua Li851c30c2013-08-28 14:30:16 +08008720 raid5_wq = alloc_workqueue("raid5wq",
8721 WQ_UNBOUND|WQ_MEM_RECLAIM|WQ_CPU_INTENSIVE|WQ_SYSFS, 0);
8722 if (!raid5_wq)
8723 return -ENOMEM;
Sebastian Andrzej Siewior29c6d1b2016-08-18 14:57:24 +02008724
8725 ret = cpuhp_setup_state_multi(CPUHP_MD_RAID5_PREPARE,
8726 "md/raid5:prepare",
8727 raid456_cpu_up_prepare,
8728 raid456_cpu_dead);
8729 if (ret) {
8730 destroy_workqueue(raid5_wq);
8731 return ret;
8732 }
NeilBrown16a53ec2006-06-26 00:27:38 -07008733 register_md_personality(&raid6_personality);
NeilBrown2604b702006-01-06 00:20:36 -08008734 register_md_personality(&raid5_personality);
8735 register_md_personality(&raid4_personality);
8736 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008737}
8738
NeilBrown2604b702006-01-06 00:20:36 -08008739static void raid5_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008740{
NeilBrown16a53ec2006-06-26 00:27:38 -07008741 unregister_md_personality(&raid6_personality);
NeilBrown2604b702006-01-06 00:20:36 -08008742 unregister_md_personality(&raid5_personality);
8743 unregister_md_personality(&raid4_personality);
Sebastian Andrzej Siewior29c6d1b2016-08-18 14:57:24 +02008744 cpuhp_remove_multi_state(CPUHP_MD_RAID5_PREPARE);
Shaohua Li851c30c2013-08-28 14:30:16 +08008745 destroy_workqueue(raid5_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008746}
8747
8748module_init(raid5_init);
8749module_exit(raid5_exit);
8750MODULE_LICENSE("GPL");
NeilBrown0efb9e62009-12-14 12:49:58 +11008751MODULE_DESCRIPTION("RAID4/5/6 (striping with parity) personality for MD");
Linus Torvalds1da177e2005-04-16 15:20:36 -07008752MODULE_ALIAS("md-personality-4"); /* RAID5 */
NeilBrownd9d166c2006-01-06 00:20:51 -08008753MODULE_ALIAS("md-raid5");
8754MODULE_ALIAS("md-raid4");
NeilBrown2604b702006-01-06 00:20:36 -08008755MODULE_ALIAS("md-level-5");
8756MODULE_ALIAS("md-level-4");
NeilBrown16a53ec2006-06-26 00:27:38 -07008757MODULE_ALIAS("md-personality-8"); /* RAID6 */
8758MODULE_ALIAS("md-raid6");
8759MODULE_ALIAS("md-level-6");
8760
8761/* This used to be two separate modules, they were: */
8762MODULE_ALIAS("raid5");
8763MODULE_ALIAS("raid6");