md: deprecate bitmap file support
[linux-block.git] / drivers / md / raid0.c
CommitLineData
af1a8899 1// SPDX-License-Identifier: GPL-2.0-or-later
1da177e4
LT
2/*
3 raid0.c : Multiple Devices driver for Linux
f72ffdd6 4 Copyright (C) 1994-96 Marc ZYNGIER
1da177e4
LT
5 <zyngier@ufr-info-p7.ibp.fr> or
6 <maz@gloups.fdn.fr>
f72ffdd6 7 Copyright (C) 1999, 2000 Ingo Molnar, Red Hat
1da177e4
LT
8
9 RAID-0 management functions.
10
1da177e4
LT
11*/
12
bff61975 13#include <linux/blkdev.h>
bff61975 14#include <linux/seq_file.h>
056075c7 15#include <linux/module.h>
5a0e3ad6 16#include <linux/slab.h>
109e3765 17#include <trace/events/block.h>
43b2e5d8 18#include "md.h"
ef740c37 19#include "raid0.h"
9af204cf 20#include "raid5.h"
1da177e4 21
c84a1372
N
22static int default_layout = 0;
23module_param(default_layout, int, 0644);
24
394ed8e4
SL
25#define UNSUPPORTED_MDDEV_FLAGS \
26 ((1L << MD_HAS_JOURNAL) | \
27 (1L << MD_JOURNAL_CLEAN) | \
ea0213e0 28 (1L << MD_FAILFAST_SUPPORTED) |\
ddc08823
PB
29 (1L << MD_HAS_PPL) | \
30 (1L << MD_HAS_MULTIPLE_PPLS))
394ed8e4 31
46994191 32/*
33 * inform the user of the raid configuration
34*/
fd01b88c 35static void dump_zones(struct mddev *mddev)
46994191 36{
50de8df4 37 int j, k;
46994191 38 sector_t zone_size = 0;
39 sector_t zone_start = 0;
e373ab10 40 struct r0conf *conf = mddev->private;
84707f38 41 int raid_disks = conf->strip_zone[0].nb_dev;
76603884
N
42 pr_debug("md: RAID0 configuration for %s - %d zone%s\n",
43 mdname(mddev),
44 conf->nr_strip_zones, conf->nr_strip_zones==1?"":"s");
46994191 45 for (j = 0; j < conf->nr_strip_zones; j++) {
76603884
N
46 char line[200];
47 int len = 0;
48
46994191 49 for (k = 0; k < conf->strip_zone[j].nb_dev; k++)
1727fd50 50 len += scnprintf(line+len, 200-len, "%s%pg", k?"/":"",
913cce5a 51 conf->devlist[j * raid_disks + k]->bdev);
76603884 52 pr_debug("md: zone%d=[%s]\n", j, line);
46994191 53
54 zone_size = conf->strip_zone[j].zone_end - zone_start;
76603884 55 pr_debug(" zone-offset=%10lluKB, device-offset=%10lluKB, size=%10lluKB\n",
46994191 56 (unsigned long long)zone_start>>1,
57 (unsigned long long)conf->strip_zone[j].dev_start>>1,
58 (unsigned long long)zone_size>>1);
59 zone_start = conf->strip_zone[j].zone_end;
60 }
46994191 61}
62
e373ab10 63static int create_strip_zones(struct mddev *mddev, struct r0conf **private_conf)
1da177e4 64{
a9f326eb 65 int i, c, err;
49f357a2 66 sector_t curr_zone_end, sectors;
3cb03002 67 struct md_rdev *smallest, *rdev1, *rdev2, *rdev, **dev;
1da177e4
LT
68 struct strip_zone *zone;
69 int cnt;
e373ab10 70 struct r0conf *conf = kzalloc(sizeof(*conf), GFP_KERNEL);
ad6bf88a 71 unsigned blksize = 512;
ed7b0038 72
7dedd15d 73 *private_conf = ERR_PTR(-ENOMEM);
ed7b0038
AN
74 if (!conf)
75 return -ENOMEM;
dafb20fa 76 rdev_for_each(rdev1, mddev) {
913cce5a 77 pr_debug("md/raid0:%s: looking at %pg\n",
50de8df4 78 mdname(mddev),
913cce5a 79 rdev1->bdev);
1da177e4 80 c = 0;
13f2682b
N
81
82 /* round size to chunk_size */
83 sectors = rdev1->sectors;
84 sector_div(sectors, mddev->chunk_sectors);
85 rdev1->sectors = sectors * mddev->chunk_sectors;
86
199dc6ed
N
87 blksize = max(blksize, queue_logical_block_size(
88 rdev1->bdev->bd_disk->queue));
89
dafb20fa 90 rdev_for_each(rdev2, mddev) {
913cce5a
CH
91 pr_debug("md/raid0:%s: comparing %pg(%llu)"
92 " with %pg(%llu)\n",
50de8df4 93 mdname(mddev),
913cce5a 94 rdev1->bdev,
50de8df4 95 (unsigned long long)rdev1->sectors,
913cce5a 96 rdev2->bdev,
50de8df4 97 (unsigned long long)rdev2->sectors);
1da177e4 98 if (rdev2 == rdev1) {
50de8df4
N
99 pr_debug("md/raid0:%s: END\n",
100 mdname(mddev));
1da177e4
LT
101 break;
102 }
dd8ac336 103 if (rdev2->sectors == rdev1->sectors) {
1da177e4
LT
104 /*
105 * Not unique, don't count it as a new
106 * group
107 */
50de8df4
N
108 pr_debug("md/raid0:%s: EQUAL\n",
109 mdname(mddev));
1da177e4
LT
110 c = 1;
111 break;
112 }
50de8df4
N
113 pr_debug("md/raid0:%s: NOT EQUAL\n",
114 mdname(mddev));
1da177e4
LT
115 }
116 if (!c) {
50de8df4
N
117 pr_debug("md/raid0:%s: ==> UNIQUE\n",
118 mdname(mddev));
1da177e4 119 conf->nr_strip_zones++;
50de8df4
N
120 pr_debug("md/raid0:%s: %d zones\n",
121 mdname(mddev), conf->nr_strip_zones);
1da177e4
LT
122 }
123 }
50de8df4
N
124 pr_debug("md/raid0:%s: FINAL %d zones\n",
125 mdname(mddev), conf->nr_strip_zones);
c84a1372 126
199dc6ed
N
127 /*
128 * now since we have the hard sector sizes, we can make sure
129 * chunk size is a multiple of that sector size
130 */
131 if ((mddev->chunk_sectors << 9) % blksize) {
76603884
N
132 pr_warn("md/raid0:%s: chunk_size of %d not multiple of block size %d\n",
133 mdname(mddev),
134 mddev->chunk_sectors << 9, blksize);
199dc6ed
N
135 err = -EINVAL;
136 goto abort;
137 }
138
ed7b0038 139 err = -ENOMEM;
6396bb22
KC
140 conf->strip_zone = kcalloc(conf->nr_strip_zones,
141 sizeof(struct strip_zone),
142 GFP_KERNEL);
1da177e4 143 if (!conf->strip_zone)
ed7b0038 144 goto abort;
6396bb22
KC
145 conf->devlist = kzalloc(array3_size(sizeof(struct md_rdev *),
146 conf->nr_strip_zones,
147 mddev->raid_disks),
1da177e4
LT
148 GFP_KERNEL);
149 if (!conf->devlist)
ed7b0038 150 goto abort;
1da177e4 151
1da177e4
LT
152 /* The first zone must contain all devices, so here we check that
153 * there is a proper alignment of slots to devices and find them all
154 */
155 zone = &conf->strip_zone[0];
156 cnt = 0;
157 smallest = NULL;
b414579f 158 dev = conf->devlist;
ed7b0038 159 err = -EINVAL;
dafb20fa 160 rdev_for_each(rdev1, mddev) {
1da177e4
LT
161 int j = rdev1->raid_disk;
162
e93f68a1 163 if (mddev->level == 10) {
9af204cf
TM
164 /* taking over a raid10-n2 array */
165 j /= 2;
e93f68a1
N
166 rdev1->new_raid_disk = j;
167 }
9af204cf 168
fc3a08b8
KW
169 if (mddev->level == 1) {
170 /* taiking over a raid1 array-
171 * we have only one active disk
172 */
173 j = 0;
174 rdev1->new_raid_disk = j;
175 }
176
f96c9f30 177 if (j < 0) {
76603884
N
178 pr_warn("md/raid0:%s: remove inactive devices before converting to RAID0\n",
179 mdname(mddev));
f96c9f30
N
180 goto abort;
181 }
182 if (j >= mddev->raid_disks) {
76603884
N
183 pr_warn("md/raid0:%s: bad disk number %d - aborting!\n",
184 mdname(mddev), j);
1da177e4
LT
185 goto abort;
186 }
b414579f 187 if (dev[j]) {
76603884
N
188 pr_warn("md/raid0:%s: multiple devices for %d - aborting!\n",
189 mdname(mddev), j);
1da177e4
LT
190 goto abort;
191 }
b414579f 192 dev[j] = rdev1;
1da177e4 193
dd8ac336 194 if (!smallest || (rdev1->sectors < smallest->sectors))
1da177e4
LT
195 smallest = rdev1;
196 cnt++;
197 }
198 if (cnt != mddev->raid_disks) {
76603884
N
199 pr_warn("md/raid0:%s: too few disks (%d of %d) - aborting!\n",
200 mdname(mddev), cnt, mddev->raid_disks);
1da177e4
LT
201 goto abort;
202 }
203 zone->nb_dev = cnt;
49f357a2 204 zone->zone_end = smallest->sectors * cnt;
1da177e4 205
49f357a2 206 curr_zone_end = zone->zone_end;
1da177e4
LT
207
208 /* now do the other zones */
209 for (i = 1; i < conf->nr_strip_zones; i++)
210 {
a9f326eb
N
211 int j;
212
1da177e4 213 zone = conf->strip_zone + i;
b414579f 214 dev = conf->devlist + i * mddev->raid_disks;
1da177e4 215
50de8df4 216 pr_debug("md/raid0:%s: zone %d\n", mdname(mddev), i);
d27a43ab 217 zone->dev_start = smallest->sectors;
1da177e4
LT
218 smallest = NULL;
219 c = 0;
220
221 for (j=0; j<cnt; j++) {
b414579f 222 rdev = conf->devlist[j];
d27a43ab 223 if (rdev->sectors <= zone->dev_start) {
913cce5a 224 pr_debug("md/raid0:%s: checking %pg ... nope\n",
50de8df4 225 mdname(mddev),
913cce5a 226 rdev->bdev);
dd8ac336
AN
227 continue;
228 }
913cce5a 229 pr_debug("md/raid0:%s: checking %pg ..."
50de8df4
N
230 " contained as device %d\n",
231 mdname(mddev),
913cce5a 232 rdev->bdev, c);
b414579f 233 dev[c] = rdev;
dd8ac336
AN
234 c++;
235 if (!smallest || rdev->sectors < smallest->sectors) {
236 smallest = rdev;
50de8df4
N
237 pr_debug("md/raid0:%s: (%llu) is smallest!.\n",
238 mdname(mddev),
239 (unsigned long long)rdev->sectors);
dd8ac336 240 }
1da177e4
LT
241 }
242
243 zone->nb_dev = c;
49f357a2 244 sectors = (smallest->sectors - zone->dev_start) * c;
50de8df4
N
245 pr_debug("md/raid0:%s: zone->nb_dev: %d, sectors: %llu\n",
246 mdname(mddev),
247 zone->nb_dev, (unsigned long long)sectors);
1da177e4 248
49f357a2 249 curr_zone_end += sectors;
d27a43ab 250 zone->zone_end = curr_zone_end;
1da177e4 251
50de8df4
N
252 pr_debug("md/raid0:%s: current zone start: %llu\n",
253 mdname(mddev),
254 (unsigned long long)smallest->sectors);
1da177e4 255 }
1da177e4 256
ea23994e
PH
257 if (conf->nr_strip_zones == 1 || conf->strip_zone[1].nb_dev == 1) {
258 conf->layout = RAID0_ORIG_LAYOUT;
259 } else if (mddev->layout == RAID0_ORIG_LAYOUT ||
260 mddev->layout == RAID0_ALT_MULTIZONE_LAYOUT) {
261 conf->layout = mddev->layout;
262 } else if (default_layout == RAID0_ORIG_LAYOUT ||
263 default_layout == RAID0_ALT_MULTIZONE_LAYOUT) {
264 conf->layout = default_layout;
265 } else {
266 pr_err("md/raid0:%s: cannot assemble multi-zone RAID0 with default_layout setting\n",
267 mdname(mddev));
268 pr_err("md/raid0: please set raid0.default_layout to 1 or 2\n");
269 err = -EOPNOTSUPP;
270 goto abort;
271 }
272
e8360070
JB
273 if (conf->layout == RAID0_ORIG_LAYOUT) {
274 for (i = 1; i < conf->nr_strip_zones; i++) {
275 sector_t first_sector = conf->strip_zone[i-1].zone_end;
276
277 sector_div(first_sector, mddev->chunk_sectors);
278 zone = conf->strip_zone + i;
279 /* disk_shift is first disk index used in the zone */
280 zone->disk_shift = sector_div(first_sector,
281 zone->nb_dev);
282 }
283 }
284
50de8df4 285 pr_debug("md/raid0:%s: done.\n", mdname(mddev));
9af204cf
TM
286 *private_conf = conf;
287
1da177e4 288 return 0;
5568a603 289abort:
ed7b0038
AN
290 kfree(conf->strip_zone);
291 kfree(conf->devlist);
292 kfree(conf);
58ebb34c 293 *private_conf = ERR_PTR(err);
ed7b0038 294 return err;
1da177e4
LT
295}
296
ba13da47
N
297/* Find the zone which holds a particular offset
298 * Update *sectorp to be an offset in that zone
299 */
300static struct strip_zone *find_zone(struct r0conf *conf,
301 sector_t *sectorp)
302{
303 int i;
304 struct strip_zone *z = conf->strip_zone;
305 sector_t sector = *sectorp;
306
307 for (i = 0; i < conf->nr_strip_zones; i++)
308 if (sector < z[i].zone_end) {
309 if (i)
310 *sectorp = sector - z[i-1].zone_end;
311 return z + i;
312 }
313 BUG();
314}
315
316/*
317 * remaps the bio to the target device. we separate two flows.
47d68979 318 * power 2 flow and a general flow for the sake of performance
ba13da47
N
319*/
320static struct md_rdev *map_sector(struct mddev *mddev, struct strip_zone *zone,
321 sector_t sector, sector_t *sector_offset)
322{
323 unsigned int sect_in_chunk;
324 sector_t chunk;
325 struct r0conf *conf = mddev->private;
326 int raid_disks = conf->strip_zone[0].nb_dev;
327 unsigned int chunk_sects = mddev->chunk_sectors;
328
329 if (is_power_of_2(chunk_sects)) {
330 int chunksect_bits = ffz(~chunk_sects);
331 /* find the sector offset inside the chunk */
332 sect_in_chunk = sector & (chunk_sects - 1);
333 sector >>= chunksect_bits;
334 /* chunk in zone */
335 chunk = *sector_offset;
336 /* quotient is the chunk in real device*/
337 sector_div(chunk, zone->nb_dev << chunksect_bits);
338 } else{
339 sect_in_chunk = sector_div(sector, chunk_sects);
340 chunk = *sector_offset;
341 sector_div(chunk, chunk_sects * zone->nb_dev);
342 }
343 /*
344 * position the bio over the real device
345 * real sector = chunk in device + starting of zone
346 * + the position in the chunk
347 */
348 *sector_offset = (chunk * chunk_sects) + sect_in_chunk;
349 return conf->devlist[(zone - conf->strip_zone)*raid_disks
350 + sector_div(sector, zone->nb_dev)];
351}
352
fd01b88c 353static sector_t raid0_size(struct mddev *mddev, sector_t sectors, int raid_disks)
80c3a6ce
DW
354{
355 sector_t array_sectors = 0;
3cb03002 356 struct md_rdev *rdev;
80c3a6ce
DW
357
358 WARN_ONCE(sectors || raid_disks,
359 "%s does not support generic reshape\n", __func__);
360
dafb20fa 361 rdev_for_each(rdev, mddev)
a6468539
N
362 array_sectors += (rdev->sectors &
363 ~(sector_t)(mddev->chunk_sectors-1));
80c3a6ce
DW
364
365 return array_sectors;
366}
367
0c031fd3
XN
368static void free_conf(struct mddev *mddev, struct r0conf *conf)
369{
370 kfree(conf->strip_zone);
371 kfree(conf->devlist);
372 kfree(conf);
0c031fd3
XN
373}
374
375static void raid0_free(struct mddev *mddev, void *priv)
376{
377 struct r0conf *conf = priv;
378
379 free_conf(mddev, conf);
380 acct_bioset_exit(mddev);
381}
0366ef84 382
fd01b88c 383static int raid0_run(struct mddev *mddev)
1da177e4 384{
e373ab10 385 struct r0conf *conf;
5568a603 386 int ret;
1da177e4 387
9d8f0363 388 if (mddev->chunk_sectors == 0) {
76603884 389 pr_warn("md/raid0:%s: chunk size must be set.\n", mdname(mddev));
2604b703
N
390 return -EINVAL;
391 }
0894cc30
AN
392 if (md_check_no_bitmap(mddev))
393 return -EINVAL;
753f2856 394
0c031fd3
XN
395 if (acct_bioset_init(mddev)) {
396 pr_err("md/raid0:%s: alloc acct bioset failed.\n", mdname(mddev));
397 return -ENOMEM;
398 }
399
9af204cf
TM
400 /* if private is not null, we are here after takeover */
401 if (mddev->private == NULL) {
402 ret = create_strip_zones(mddev, &conf);
403 if (ret < 0)
0c031fd3 404 goto exit_acct_set;
9af204cf
TM
405 mddev->private = conf;
406 }
407 conf = mddev->private;
199dc6ed
N
408 if (mddev->queue) {
409 struct md_rdev *rdev;
199dc6ed 410
199dc6ed 411 blk_queue_max_hw_sectors(mddev->queue, mddev->chunk_sectors);
3deff1a7 412 blk_queue_max_write_zeroes_sectors(mddev->queue, mddev->chunk_sectors);
199dc6ed
N
413
414 blk_queue_io_min(mddev->queue, mddev->chunk_sectors << 9);
415 blk_queue_io_opt(mddev->queue,
416 (mddev->chunk_sectors << 9) * mddev->raid_disks);
417
66eefe5d
N
418 rdev_for_each(rdev, mddev) {
419 disk_stack_limits(mddev->gendisk, rdev->bdev,
420 rdev->data_offset << 9);
66eefe5d 421 }
199dc6ed 422 }
1da177e4
LT
423
424 /* calculate array device size */
1f403624 425 md_set_array_sectors(mddev, raid0_size(mddev, 0, 0));
1da177e4 426
76603884
N
427 pr_debug("md/raid0:%s: md_size is %llu sectors.\n",
428 mdname(mddev),
429 (unsigned long long)mddev->array_sectors);
753f2856 430
46994191 431 dump_zones(mddev);
0366ef84 432
433 ret = md_integrity_register(mddev);
0c031fd3
XN
434 if (ret)
435 goto free;
0366ef84 436
437 return ret;
1da177e4 438
0c031fd3
XN
439free:
440 free_conf(mddev, conf);
441exit_acct_set:
442 acct_bioset_exit(mddev);
443 return ret;
1da177e4
LT
444}
445
e8360070
JB
446/*
447 * Convert disk_index to the disk order in which it is read/written.
448 * For example, if we have 4 disks, they are numbered 0,1,2,3. If we
449 * write the disks starting at disk 3, then the read/write order would
450 * be disk 3, then 0, then 1, and then disk 2 and we want map_disk_shift()
451 * to map the disks as follows 0,1,2,3 => 1,2,3,0. So disk 0 would map
452 * to 1, 1 to 2, 2 to 3, and 3 to 0. That way we can compare disks in
453 * that 'output' space to understand the read/write disk ordering.
454 */
455static int map_disk_shift(int disk_index, int num_disks, int disk_shift)
456{
457 return ((disk_index + num_disks - disk_shift) % num_disks);
458}
459
29efc390
SL
460static void raid0_handle_discard(struct mddev *mddev, struct bio *bio)
461{
462 struct r0conf *conf = mddev->private;
463 struct strip_zone *zone;
464 sector_t start = bio->bi_iter.bi_sector;
465 sector_t end;
466 unsigned int stripe_size;
467 sector_t first_stripe_index, last_stripe_index;
468 sector_t start_disk_offset;
469 unsigned int start_disk_index;
470 sector_t end_disk_offset;
471 unsigned int end_disk_index;
472 unsigned int disk;
e8360070 473 sector_t orig_start, orig_end;
29efc390 474
e8360070 475 orig_start = start;
29efc390
SL
476 zone = find_zone(conf, &start);
477
478 if (bio_end_sector(bio) > zone->zone_end) {
479 struct bio *split = bio_split(bio,
480 zone->zone_end - bio->bi_iter.bi_sector, GFP_NOIO,
afeee514 481 &mddev->bio_set);
29efc390 482 bio_chain(split, bio);
ed00aabd 483 submit_bio_noacct(bio);
29efc390
SL
484 bio = split;
485 end = zone->zone_end;
486 } else
487 end = bio_end_sector(bio);
488
e8360070 489 orig_end = end;
29efc390
SL
490 if (zone != conf->strip_zone)
491 end = end - zone[-1].zone_end;
492
493 /* Now start and end is the offset in zone */
494 stripe_size = zone->nb_dev * mddev->chunk_sectors;
495
496 first_stripe_index = start;
497 sector_div(first_stripe_index, stripe_size);
498 last_stripe_index = end;
499 sector_div(last_stripe_index, stripe_size);
500
e8360070
JB
501 /* In the first zone the original and alternate layouts are the same */
502 if ((conf->layout == RAID0_ORIG_LAYOUT) && (zone != conf->strip_zone)) {
503 sector_div(orig_start, mddev->chunk_sectors);
504 start_disk_index = sector_div(orig_start, zone->nb_dev);
505 start_disk_index = map_disk_shift(start_disk_index,
506 zone->nb_dev,
507 zone->disk_shift);
508 sector_div(orig_end, mddev->chunk_sectors);
509 end_disk_index = sector_div(orig_end, zone->nb_dev);
510 end_disk_index = map_disk_shift(end_disk_index,
511 zone->nb_dev, zone->disk_shift);
512 } else {
513 start_disk_index = (int)(start - first_stripe_index * stripe_size) /
514 mddev->chunk_sectors;
515 end_disk_index = (int)(end - last_stripe_index * stripe_size) /
516 mddev->chunk_sectors;
517 }
29efc390
SL
518 start_disk_offset = ((int)(start - first_stripe_index * stripe_size) %
519 mddev->chunk_sectors) +
520 first_stripe_index * mddev->chunk_sectors;
29efc390
SL
521 end_disk_offset = ((int)(end - last_stripe_index * stripe_size) %
522 mddev->chunk_sectors) +
523 last_stripe_index * mddev->chunk_sectors;
524
525 for (disk = 0; disk < zone->nb_dev; disk++) {
526 sector_t dev_start, dev_end;
29efc390 527 struct md_rdev *rdev;
e8360070
JB
528 int compare_disk;
529
530 compare_disk = map_disk_shift(disk, zone->nb_dev,
531 zone->disk_shift);
29efc390 532
e8360070 533 if (compare_disk < start_disk_index)
29efc390
SL
534 dev_start = (first_stripe_index + 1) *
535 mddev->chunk_sectors;
e8360070 536 else if (compare_disk > start_disk_index)
29efc390
SL
537 dev_start = first_stripe_index * mddev->chunk_sectors;
538 else
539 dev_start = start_disk_offset;
540
e8360070 541 if (compare_disk < end_disk_index)
29efc390 542 dev_end = (last_stripe_index + 1) * mddev->chunk_sectors;
e8360070 543 else if (compare_disk > end_disk_index)
29efc390
SL
544 dev_end = last_stripe_index * mddev->chunk_sectors;
545 else
546 dev_end = end_disk_offset;
547
548 if (dev_end <= dev_start)
549 continue;
550
551 rdev = conf->devlist[(zone - conf->strip_zone) *
552 conf->strip_zone[0].nb_dev + disk];
cf78408f 553 md_submit_discard_bio(mddev, rdev, bio,
29efc390 554 dev_start + zone->dev_start + rdev->data_offset,
cf78408f 555 dev_end - dev_start);
29efc390
SL
556 }
557 bio_endio(bio);
558}
559
cc27b0c7 560static bool raid0_make_request(struct mddev *mddev, struct bio *bio)
fbb704ef 561{
c84a1372 562 struct r0conf *conf = mddev->private;
1da177e4 563 struct strip_zone *zone;
3cb03002 564 struct md_rdev *tmp_dev;
f00d7c85
N
565 sector_t bio_sector;
566 sector_t sector;
c84a1372 567 sector_t orig_sector;
f00d7c85
N
568 unsigned chunk_sects;
569 unsigned sectors;
1da177e4 570
775d7831
DJ
571 if (unlikely(bio->bi_opf & REQ_PREFLUSH)
572 && md_flush_request(mddev, bio))
cc27b0c7 573 return true;
e5dcdd80 574
29efc390
SL
575 if (unlikely((bio_op(bio) == REQ_OP_DISCARD))) {
576 raid0_handle_discard(mddev, bio);
cc27b0c7 577 return true;
29efc390
SL
578 }
579
f00d7c85
N
580 bio_sector = bio->bi_iter.bi_sector;
581 sector = bio_sector;
582 chunk_sects = mddev->chunk_sectors;
20d0189b 583
f00d7c85
N
584 sectors = chunk_sects -
585 (likely(is_power_of_2(chunk_sects))
586 ? (sector & (chunk_sects-1))
587 : sector_div(sector, chunk_sects));
20d0189b 588
f00d7c85
N
589 /* Restore due to sector_div */
590 sector = bio_sector;
a8115776 591
f00d7c85 592 if (sectors < bio_sectors(bio)) {
afeee514
KO
593 struct bio *split = bio_split(bio, sectors, GFP_NOIO,
594 &mddev->bio_set);
f00d7c85 595 bio_chain(split, bio);
ed00aabd 596 submit_bio_noacct(bio);
f00d7c85
N
597 bio = split;
598 }
1da177e4 599
10764815
GJ
600 if (bio->bi_pool != &mddev->bio_set)
601 md_account_bio(mddev, &bio);
602
c84a1372 603 orig_sector = sector;
f00d7c85 604 zone = find_zone(mddev->private, &sector);
c84a1372
N
605 switch (conf->layout) {
606 case RAID0_ORIG_LAYOUT:
607 tmp_dev = map_sector(mddev, zone, orig_sector, &sector);
608 break;
609 case RAID0_ALT_MULTIZONE_LAYOUT:
610 tmp_dev = map_sector(mddev, zone, sector, &sector);
611 break;
612 default:
e3fc3f3d 613 WARN(1, "md/raid0:%s: Invalid layout\n", mdname(mddev));
c84a1372
N
614 bio_io_error(bio);
615 return true;
616 }
62f7b198 617
c31fea2f 618 if (unlikely(is_rdev_broken(tmp_dev))) {
62f7b198 619 bio_io_error(bio);
c31fea2f 620 md_error(mddev, tmp_dev);
62f7b198
GP
621 return true;
622 }
623
74d46992 624 bio_set_dev(bio, tmp_dev->bdev);
f00d7c85
N
625 bio->bi_iter.bi_sector = sector + zone->dev_start +
626 tmp_dev->data_offset;
627
29efc390 628 if (mddev->gendisk)
1c02fca6
CH
629 trace_block_bio_remap(bio, disk_devt(mddev->gendisk),
630 bio_sector);
29efc390 631 mddev_check_write_zeroes(mddev, bio);
ed00aabd 632 submit_bio_noacct(bio);
cc27b0c7 633 return true;
1da177e4 634}
8299d7f7 635
fd01b88c 636static void raid0_status(struct seq_file *seq, struct mddev *mddev)
1da177e4 637{
9d8f0363 638 seq_printf(seq, " %dk chunks", mddev->chunk_sectors / 2);
1da177e4
LT
639 return;
640}
641
c31fea2f
MT
642static void raid0_error(struct mddev *mddev, struct md_rdev *rdev)
643{
644 if (!test_and_set_bit(MD_BROKEN, &mddev->flags)) {
645 char *md_name = mdname(mddev);
646
647 pr_crit("md/raid0%s: Disk failure on %pg detected, failing array.\n",
648 md_name, rdev->bdev);
649 }
650}
651
fd01b88c 652static void *raid0_takeover_raid45(struct mddev *mddev)
9af204cf 653{
3cb03002 654 struct md_rdev *rdev;
e373ab10 655 struct r0conf *priv_conf;
9af204cf
TM
656
657 if (mddev->degraded != 1) {
76603884
N
658 pr_warn("md/raid0:%s: raid5 must be degraded! Degraded disks: %d\n",
659 mdname(mddev),
660 mddev->degraded);
9af204cf
TM
661 return ERR_PTR(-EINVAL);
662 }
663
dafb20fa 664 rdev_for_each(rdev, mddev) {
9af204cf
TM
665 /* check slot number for a disk */
666 if (rdev->raid_disk == mddev->raid_disks-1) {
76603884
N
667 pr_warn("md/raid0:%s: raid5 must have missing parity disk!\n",
668 mdname(mddev));
9af204cf
TM
669 return ERR_PTR(-EINVAL);
670 }
eea136d6 671 rdev->sectors = mddev->dev_sectors;
9af204cf
TM
672 }
673
674 /* Set new parameters */
675 mddev->new_level = 0;
001048a3 676 mddev->new_layout = 0;
9af204cf
TM
677 mddev->new_chunk_sectors = mddev->chunk_sectors;
678 mddev->raid_disks--;
679 mddev->delta_disks = -1;
680 /* make sure it will be not marked as dirty */
681 mddev->recovery_cp = MaxSector;
394ed8e4 682 mddev_clear_unsupported_flags(mddev, UNSUPPORTED_MDDEV_FLAGS);
9af204cf
TM
683
684 create_strip_zones(mddev, &priv_conf);
6995f0b2 685
9af204cf
TM
686 return priv_conf;
687}
688
fd01b88c 689static void *raid0_takeover_raid10(struct mddev *mddev)
9af204cf 690{
e373ab10 691 struct r0conf *priv_conf;
9af204cf
TM
692
693 /* Check layout:
694 * - far_copies must be 1
695 * - near_copies must be 2
696 * - disks number must be even
697 * - all mirrors must be already degraded
698 */
699 if (mddev->layout != ((1 << 8) + 2)) {
76603884
N
700 pr_warn("md/raid0:%s:: Raid0 cannot takeover layout: 0x%x\n",
701 mdname(mddev),
702 mddev->layout);
9af204cf
TM
703 return ERR_PTR(-EINVAL);
704 }
705 if (mddev->raid_disks & 1) {
76603884
N
706 pr_warn("md/raid0:%s: Raid0 cannot takeover Raid10 with odd disk number.\n",
707 mdname(mddev));
9af204cf
TM
708 return ERR_PTR(-EINVAL);
709 }
710 if (mddev->degraded != (mddev->raid_disks>>1)) {
76603884
N
711 pr_warn("md/raid0:%s: All mirrors must be already degraded!\n",
712 mdname(mddev));
9af204cf
TM
713 return ERR_PTR(-EINVAL);
714 }
715
716 /* Set new parameters */
717 mddev->new_level = 0;
001048a3 718 mddev->new_layout = 0;
9af204cf
TM
719 mddev->new_chunk_sectors = mddev->chunk_sectors;
720 mddev->delta_disks = - mddev->raid_disks / 2;
721 mddev->raid_disks += mddev->delta_disks;
722 mddev->degraded = 0;
723 /* make sure it will be not marked as dirty */
724 mddev->recovery_cp = MaxSector;
394ed8e4 725 mddev_clear_unsupported_flags(mddev, UNSUPPORTED_MDDEV_FLAGS);
9af204cf
TM
726
727 create_strip_zones(mddev, &priv_conf);
9af204cf
TM
728 return priv_conf;
729}
730
fd01b88c 731static void *raid0_takeover_raid1(struct mddev *mddev)
fc3a08b8 732{
e373ab10 733 struct r0conf *priv_conf;
24b961f8 734 int chunksect;
fc3a08b8
KW
735
736 /* Check layout:
737 * - (N - 1) mirror drives must be already faulty
738 */
739 if ((mddev->raid_disks - 1) != mddev->degraded) {
76603884 740 pr_err("md/raid0:%s: (N - 1) mirrors drives must be already faulty!\n",
fc3a08b8
KW
741 mdname(mddev));
742 return ERR_PTR(-EINVAL);
743 }
744
24b961f8
JS
745 /*
746 * a raid1 doesn't have the notion of chunk size, so
747 * figure out the largest suitable size we can use.
748 */
749 chunksect = 64 * 2; /* 64K by default */
750
751 /* The array must be an exact multiple of chunksize */
752 while (chunksect && (mddev->array_sectors & (chunksect - 1)))
753 chunksect >>= 1;
754
755 if ((chunksect << 9) < PAGE_SIZE)
756 /* array size does not allow a suitable chunk size */
757 return ERR_PTR(-EINVAL);
758
fc3a08b8
KW
759 /* Set new parameters */
760 mddev->new_level = 0;
761 mddev->new_layout = 0;
24b961f8
JS
762 mddev->new_chunk_sectors = chunksect;
763 mddev->chunk_sectors = chunksect;
fc3a08b8 764 mddev->delta_disks = 1 - mddev->raid_disks;
f7bee809 765 mddev->raid_disks = 1;
fc3a08b8
KW
766 /* make sure it will be not marked as dirty */
767 mddev->recovery_cp = MaxSector;
394ed8e4 768 mddev_clear_unsupported_flags(mddev, UNSUPPORTED_MDDEV_FLAGS);
fc3a08b8
KW
769
770 create_strip_zones(mddev, &priv_conf);
771 return priv_conf;
772}
773
fd01b88c 774static void *raid0_takeover(struct mddev *mddev)
9af204cf
TM
775{
776 /* raid0 can take over:
049d6c1e 777 * raid4 - if all data disks are active.
9af204cf
TM
778 * raid5 - providing it is Raid4 layout and one disk is faulty
779 * raid10 - assuming we have all necessary active disks
fc3a08b8 780 * raid1 - with (N -1) mirror drives faulty
9af204cf 781 */
a8461a61
N
782
783 if (mddev->bitmap) {
76603884
N
784 pr_warn("md/raid0: %s: cannot takeover array with bitmap\n",
785 mdname(mddev));
a8461a61
N
786 return ERR_PTR(-EBUSY);
787 }
049d6c1e
MT
788 if (mddev->level == 4)
789 return raid0_takeover_raid45(mddev);
790
9af204cf
TM
791 if (mddev->level == 5) {
792 if (mddev->layout == ALGORITHM_PARITY_N)
049d6c1e 793 return raid0_takeover_raid45(mddev);
9af204cf 794
76603884
N
795 pr_warn("md/raid0:%s: Raid can only takeover Raid5 with layout: %d\n",
796 mdname(mddev), ALGORITHM_PARITY_N);
9af204cf
TM
797 }
798
799 if (mddev->level == 10)
800 return raid0_takeover_raid10(mddev);
801
fc3a08b8
KW
802 if (mddev->level == 1)
803 return raid0_takeover_raid1(mddev);
804
76603884 805 pr_warn("Takeover from raid%i to raid0 not supported\n",
fc3a08b8
KW
806 mddev->level);
807
9af204cf
TM
808 return ERR_PTR(-EINVAL);
809}
810
b03e0ccb 811static void raid0_quiesce(struct mddev *mddev, int quiesce)
9af204cf
TM
812{
813}
814
84fc4b56 815static struct md_personality raid0_personality=
1da177e4
LT
816{
817 .name = "raid0",
2604b703 818 .level = 0,
1da177e4
LT
819 .owner = THIS_MODULE,
820 .make_request = raid0_make_request,
821 .run = raid0_run,
afa0f557 822 .free = raid0_free,
1da177e4 823 .status = raid0_status,
80c3a6ce 824 .size = raid0_size,
9af204cf
TM
825 .takeover = raid0_takeover,
826 .quiesce = raid0_quiesce,
c31fea2f 827 .error_handler = raid0_error,
1da177e4
LT
828};
829
830static int __init raid0_init (void)
831{
2604b703 832 return register_md_personality (&raid0_personality);
1da177e4
LT
833}
834
835static void raid0_exit (void)
836{
2604b703 837 unregister_md_personality (&raid0_personality);
1da177e4
LT
838}
839
840module_init(raid0_init);
841module_exit(raid0_exit);
842MODULE_LICENSE("GPL");
0efb9e61 843MODULE_DESCRIPTION("RAID0 (striping) personality for MD");
1da177e4 844MODULE_ALIAS("md-personality-2"); /* RAID0 */
d9d166c2 845MODULE_ALIAS("md-raid0");
2604b703 846MODULE_ALIAS("md-level-0");