2 raid0.c : Multiple Devices driver for Linux
3 Copyright (C) 1994-96 Marc ZYNGIER
4 <zyngier@ufr-info-p7.ibp.fr> or
6 Copyright (C) 1999, 2000 Ingo Molnar, Red Hat
8 RAID-0 management functions.
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2, or (at your option)
15 You should have received a copy of the GNU General Public License
16 (for example /usr/src/linux/COPYING); if not, write to the Free
17 Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 #include <linux/blkdev.h>
21 #include <linux/seq_file.h>
22 #include <linux/module.h>
23 #include <linux/slab.h>
24 #include <trace/events/block.h>
29 static int default_layout
= 0;
30 module_param(default_layout
, int, 0644);
32 #define UNSUPPORTED_MDDEV_FLAGS \
33 ((1L << MD_HAS_JOURNAL) | \
34 (1L << MD_JOURNAL_CLEAN) | \
35 (1L << MD_FAILFAST_SUPPORTED) |\
36 (1L << MD_HAS_PPL) | \
37 (1L << MD_HAS_MULTIPLE_PPLS))
39 static int raid0_congested(struct mddev
*mddev
, int bits
)
41 struct r0conf
*conf
= mddev
->private;
42 struct md_rdev
**devlist
= conf
->devlist
;
43 int raid_disks
= conf
->strip_zone
[0].nb_dev
;
46 for (i
= 0; i
< raid_disks
&& !ret
; i
++) {
47 struct request_queue
*q
= bdev_get_queue(devlist
[i
]->bdev
);
49 ret
|= bdi_congested(q
->backing_dev_info
, bits
);
55 * inform the user of the raid configuration
57 static void dump_zones(struct mddev
*mddev
)
60 sector_t zone_size
= 0;
61 sector_t zone_start
= 0;
62 char b
[BDEVNAME_SIZE
];
63 struct r0conf
*conf
= mddev
->private;
64 int raid_disks
= conf
->strip_zone
[0].nb_dev
;
65 pr_debug("md: RAID0 configuration for %s - %d zone%s\n",
67 conf
->nr_strip_zones
, conf
->nr_strip_zones
==1?"":"s");
68 for (j
= 0; j
< conf
->nr_strip_zones
; j
++) {
72 for (k
= 0; k
< conf
->strip_zone
[j
].nb_dev
; k
++)
73 len
+= snprintf(line
+len
, 200-len
, "%s%s", k
?"/":"",
74 bdevname(conf
->devlist
[j
*raid_disks
76 pr_debug("md: zone%d=[%s]\n", j
, line
);
78 zone_size
= conf
->strip_zone
[j
].zone_end
- zone_start
;
79 pr_debug(" zone-offset=%10lluKB, device-offset=%10lluKB, size=%10lluKB\n",
80 (unsigned long long)zone_start
>>1,
81 (unsigned long long)conf
->strip_zone
[j
].dev_start
>>1,
82 (unsigned long long)zone_size
>>1);
83 zone_start
= conf
->strip_zone
[j
].zone_end
;
87 static int create_strip_zones(struct mddev
*mddev
, struct r0conf
**private_conf
)
90 sector_t curr_zone_end
, sectors
;
91 struct md_rdev
*smallest
, *rdev1
, *rdev2
, *rdev
, **dev
;
92 struct strip_zone
*zone
;
94 char b
[BDEVNAME_SIZE
];
95 char b2
[BDEVNAME_SIZE
];
96 struct r0conf
*conf
= kzalloc(sizeof(*conf
), GFP_KERNEL
);
97 unsigned blksize
= 512;
99 *private_conf
= ERR_PTR(-ENOMEM
);
102 rdev_for_each(rdev1
, mddev
) {
103 pr_debug("md/raid0:%s: looking at %s\n",
105 bdevname(rdev1
->bdev
, b
));
108 /* round size to chunk_size */
109 sectors
= rdev1
->sectors
;
110 sector_div(sectors
, mddev
->chunk_sectors
);
111 rdev1
->sectors
= sectors
* mddev
->chunk_sectors
;
113 blksize
= max(blksize
, queue_logical_block_size(
114 rdev1
->bdev
->bd_disk
->queue
));
116 rdev_for_each(rdev2
, mddev
) {
117 pr_debug("md/raid0:%s: comparing %s(%llu)"
120 bdevname(rdev1
->bdev
,b
),
121 (unsigned long long)rdev1
->sectors
,
122 bdevname(rdev2
->bdev
,b2
),
123 (unsigned long long)rdev2
->sectors
);
124 if (rdev2
== rdev1
) {
125 pr_debug("md/raid0:%s: END\n",
129 if (rdev2
->sectors
== rdev1
->sectors
) {
131 * Not unique, don't count it as a new
134 pr_debug("md/raid0:%s: EQUAL\n",
139 pr_debug("md/raid0:%s: NOT EQUAL\n",
143 pr_debug("md/raid0:%s: ==> UNIQUE\n",
145 conf
->nr_strip_zones
++;
146 pr_debug("md/raid0:%s: %d zones\n",
147 mdname(mddev
), conf
->nr_strip_zones
);
150 pr_debug("md/raid0:%s: FINAL %d zones\n",
151 mdname(mddev
), conf
->nr_strip_zones
);
153 if (conf
->nr_strip_zones
== 1) {
154 conf
->layout
= RAID0_ORIG_LAYOUT
;
155 } else if (mddev
->layout
== RAID0_ORIG_LAYOUT
||
156 mddev
->layout
== RAID0_ALT_MULTIZONE_LAYOUT
) {
157 conf
->layout
= mddev
->layout
;
158 } else if (default_layout
== RAID0_ORIG_LAYOUT
||
159 default_layout
== RAID0_ALT_MULTIZONE_LAYOUT
) {
160 conf
->layout
= default_layout
;
162 pr_err("md/raid0:%s: cannot assemble multi-zone RAID0 with default_layout setting\n",
164 pr_err("md/raid0: please set raid0.default_layout to 1 or 2\n");
169 * now since we have the hard sector sizes, we can make sure
170 * chunk size is a multiple of that sector size
172 if ((mddev
->chunk_sectors
<< 9) % blksize
) {
173 pr_warn("md/raid0:%s: chunk_size of %d not multiple of block size %d\n",
175 mddev
->chunk_sectors
<< 9, blksize
);
181 conf
->strip_zone
= kcalloc(conf
->nr_strip_zones
,
182 sizeof(struct strip_zone
),
184 if (!conf
->strip_zone
)
186 conf
->devlist
= kzalloc(array3_size(sizeof(struct md_rdev
*),
187 conf
->nr_strip_zones
,
193 /* The first zone must contain all devices, so here we check that
194 * there is a proper alignment of slots to devices and find them all
196 zone
= &conf
->strip_zone
[0];
201 rdev_for_each(rdev1
, mddev
) {
202 int j
= rdev1
->raid_disk
;
204 if (mddev
->level
== 10) {
205 /* taking over a raid10-n2 array */
207 rdev1
->new_raid_disk
= j
;
210 if (mddev
->level
== 1) {
211 /* taiking over a raid1 array-
212 * we have only one active disk
215 rdev1
->new_raid_disk
= j
;
219 pr_warn("md/raid0:%s: remove inactive devices before converting to RAID0\n",
223 if (j
>= mddev
->raid_disks
) {
224 pr_warn("md/raid0:%s: bad disk number %d - aborting!\n",
229 pr_warn("md/raid0:%s: multiple devices for %d - aborting!\n",
235 if (!smallest
|| (rdev1
->sectors
< smallest
->sectors
))
239 if (cnt
!= mddev
->raid_disks
) {
240 pr_warn("md/raid0:%s: too few disks (%d of %d) - aborting!\n",
241 mdname(mddev
), cnt
, mddev
->raid_disks
);
245 zone
->zone_end
= smallest
->sectors
* cnt
;
247 curr_zone_end
= zone
->zone_end
;
249 /* now do the other zones */
250 for (i
= 1; i
< conf
->nr_strip_zones
; i
++)
254 zone
= conf
->strip_zone
+ i
;
255 dev
= conf
->devlist
+ i
* mddev
->raid_disks
;
257 pr_debug("md/raid0:%s: zone %d\n", mdname(mddev
), i
);
258 zone
->dev_start
= smallest
->sectors
;
262 for (j
=0; j
<cnt
; j
++) {
263 rdev
= conf
->devlist
[j
];
264 if (rdev
->sectors
<= zone
->dev_start
) {
265 pr_debug("md/raid0:%s: checking %s ... nope\n",
267 bdevname(rdev
->bdev
, b
));
270 pr_debug("md/raid0:%s: checking %s ..."
271 " contained as device %d\n",
273 bdevname(rdev
->bdev
, b
), c
);
276 if (!smallest
|| rdev
->sectors
< smallest
->sectors
) {
278 pr_debug("md/raid0:%s: (%llu) is smallest!.\n",
280 (unsigned long long)rdev
->sectors
);
285 sectors
= (smallest
->sectors
- zone
->dev_start
) * c
;
286 pr_debug("md/raid0:%s: zone->nb_dev: %d, sectors: %llu\n",
288 zone
->nb_dev
, (unsigned long long)sectors
);
290 curr_zone_end
+= sectors
;
291 zone
->zone_end
= curr_zone_end
;
293 pr_debug("md/raid0:%s: current zone start: %llu\n",
295 (unsigned long long)smallest
->sectors
);
298 pr_debug("md/raid0:%s: done.\n", mdname(mddev
));
299 *private_conf
= conf
;
303 kfree(conf
->strip_zone
);
304 kfree(conf
->devlist
);
306 *private_conf
= ERR_PTR(err
);
310 /* Find the zone which holds a particular offset
311 * Update *sectorp to be an offset in that zone
313 static struct strip_zone
*find_zone(struct r0conf
*conf
,
317 struct strip_zone
*z
= conf
->strip_zone
;
318 sector_t sector
= *sectorp
;
320 for (i
= 0; i
< conf
->nr_strip_zones
; i
++)
321 if (sector
< z
[i
].zone_end
) {
323 *sectorp
= sector
- z
[i
-1].zone_end
;
330 * remaps the bio to the target device. we separate two flows.
331 * power 2 flow and a general flow for the sake of performance
333 static struct md_rdev
*map_sector(struct mddev
*mddev
, struct strip_zone
*zone
,
334 sector_t sector
, sector_t
*sector_offset
)
336 unsigned int sect_in_chunk
;
338 struct r0conf
*conf
= mddev
->private;
339 int raid_disks
= conf
->strip_zone
[0].nb_dev
;
340 unsigned int chunk_sects
= mddev
->chunk_sectors
;
342 if (is_power_of_2(chunk_sects
)) {
343 int chunksect_bits
= ffz(~chunk_sects
);
344 /* find the sector offset inside the chunk */
345 sect_in_chunk
= sector
& (chunk_sects
- 1);
346 sector
>>= chunksect_bits
;
348 chunk
= *sector_offset
;
349 /* quotient is the chunk in real device*/
350 sector_div(chunk
, zone
->nb_dev
<< chunksect_bits
);
352 sect_in_chunk
= sector_div(sector
, chunk_sects
);
353 chunk
= *sector_offset
;
354 sector_div(chunk
, chunk_sects
* zone
->nb_dev
);
357 * position the bio over the real device
358 * real sector = chunk in device + starting of zone
359 * + the position in the chunk
361 *sector_offset
= (chunk
* chunk_sects
) + sect_in_chunk
;
362 return conf
->devlist
[(zone
- conf
->strip_zone
)*raid_disks
363 + sector_div(sector
, zone
->nb_dev
)];
366 static sector_t
raid0_size(struct mddev
*mddev
, sector_t sectors
, int raid_disks
)
368 sector_t array_sectors
= 0;
369 struct md_rdev
*rdev
;
371 WARN_ONCE(sectors
|| raid_disks
,
372 "%s does not support generic reshape\n", __func__
);
374 rdev_for_each(rdev
, mddev
)
375 array_sectors
+= (rdev
->sectors
&
376 ~(sector_t
)(mddev
->chunk_sectors
-1));
378 return array_sectors
;
381 static void raid0_free(struct mddev
*mddev
, void *priv
);
383 static int raid0_run(struct mddev
*mddev
)
388 if (mddev
->chunk_sectors
== 0) {
389 pr_warn("md/raid0:%s: chunk size must be set.\n", mdname(mddev
));
392 if (md_check_no_bitmap(mddev
))
395 /* if private is not null, we are here after takeover */
396 if (mddev
->private == NULL
) {
397 ret
= create_strip_zones(mddev
, &conf
);
400 mddev
->private = conf
;
402 conf
= mddev
->private;
404 struct md_rdev
*rdev
;
405 bool discard_supported
= false;
407 blk_queue_max_hw_sectors(mddev
->queue
, mddev
->chunk_sectors
);
408 blk_queue_max_write_same_sectors(mddev
->queue
, mddev
->chunk_sectors
);
409 blk_queue_max_write_zeroes_sectors(mddev
->queue
, mddev
->chunk_sectors
);
410 blk_queue_max_discard_sectors(mddev
->queue
, UINT_MAX
);
412 blk_queue_io_min(mddev
->queue
, mddev
->chunk_sectors
<< 9);
413 blk_queue_io_opt(mddev
->queue
,
414 (mddev
->chunk_sectors
<< 9) * mddev
->raid_disks
);
416 rdev_for_each(rdev
, mddev
) {
417 disk_stack_limits(mddev
->gendisk
, rdev
->bdev
,
418 rdev
->data_offset
<< 9);
419 if (blk_queue_discard(bdev_get_queue(rdev
->bdev
)))
420 discard_supported
= true;
422 if (!discard_supported
)
423 blk_queue_flag_clear(QUEUE_FLAG_DISCARD
, mddev
->queue
);
425 blk_queue_flag_set(QUEUE_FLAG_DISCARD
, mddev
->queue
);
428 /* calculate array device size */
429 md_set_array_sectors(mddev
, raid0_size(mddev
, 0, 0));
431 pr_debug("md/raid0:%s: md_size is %llu sectors.\n",
433 (unsigned long long)mddev
->array_sectors
);
436 /* calculate the max read-ahead size.
437 * For read-ahead of large files to be effective, we need to
438 * readahead at least twice a whole stripe. i.e. number of devices
439 * multiplied by chunk size times 2.
440 * If an individual device has an ra_pages greater than the
441 * chunk size, then we will not drive that device as hard as it
442 * wants. We consider this a configuration error: a larger
443 * chunksize should be used in that case.
445 int stripe
= mddev
->raid_disks
*
446 (mddev
->chunk_sectors
<< 9) / PAGE_SIZE
;
447 if (mddev
->queue
->backing_dev_info
->ra_pages
< 2* stripe
)
448 mddev
->queue
->backing_dev_info
->ra_pages
= 2* stripe
;
453 ret
= md_integrity_register(mddev
);
458 static void raid0_free(struct mddev
*mddev
, void *priv
)
460 struct r0conf
*conf
= priv
;
462 kfree(conf
->strip_zone
);
463 kfree(conf
->devlist
);
468 * Is io distribute over 1 or more chunks ?
470 static inline int is_io_in_chunk_boundary(struct mddev
*mddev
,
471 unsigned int chunk_sects
, struct bio
*bio
)
473 if (likely(is_power_of_2(chunk_sects
))) {
474 return chunk_sects
>=
475 ((bio
->bi_iter
.bi_sector
& (chunk_sects
-1))
478 sector_t sector
= bio
->bi_iter
.bi_sector
;
479 return chunk_sects
>= (sector_div(sector
, chunk_sects
)
484 static void raid0_handle_discard(struct mddev
*mddev
, struct bio
*bio
)
486 struct r0conf
*conf
= mddev
->private;
487 struct strip_zone
*zone
;
488 sector_t start
= bio
->bi_iter
.bi_sector
;
490 unsigned int stripe_size
;
491 sector_t first_stripe_index
, last_stripe_index
;
492 sector_t start_disk_offset
;
493 unsigned int start_disk_index
;
494 sector_t end_disk_offset
;
495 unsigned int end_disk_index
;
498 zone
= find_zone(conf
, &start
);
500 if (bio_end_sector(bio
) > zone
->zone_end
) {
501 struct bio
*split
= bio_split(bio
,
502 zone
->zone_end
- bio
->bi_iter
.bi_sector
, GFP_NOIO
,
504 bio_chain(split
, bio
);
505 generic_make_request(bio
);
507 end
= zone
->zone_end
;
509 end
= bio_end_sector(bio
);
511 if (zone
!= conf
->strip_zone
)
512 end
= end
- zone
[-1].zone_end
;
514 /* Now start and end is the offset in zone */
515 stripe_size
= zone
->nb_dev
* mddev
->chunk_sectors
;
517 first_stripe_index
= start
;
518 sector_div(first_stripe_index
, stripe_size
);
519 last_stripe_index
= end
;
520 sector_div(last_stripe_index
, stripe_size
);
522 start_disk_index
= (int)(start
- first_stripe_index
* stripe_size
) /
523 mddev
->chunk_sectors
;
524 start_disk_offset
= ((int)(start
- first_stripe_index
* stripe_size
) %
525 mddev
->chunk_sectors
) +
526 first_stripe_index
* mddev
->chunk_sectors
;
527 end_disk_index
= (int)(end
- last_stripe_index
* stripe_size
) /
528 mddev
->chunk_sectors
;
529 end_disk_offset
= ((int)(end
- last_stripe_index
* stripe_size
) %
530 mddev
->chunk_sectors
) +
531 last_stripe_index
* mddev
->chunk_sectors
;
533 for (disk
= 0; disk
< zone
->nb_dev
; disk
++) {
534 sector_t dev_start
, dev_end
;
535 struct bio
*discard_bio
= NULL
;
536 struct md_rdev
*rdev
;
538 if (disk
< start_disk_index
)
539 dev_start
= (first_stripe_index
+ 1) *
540 mddev
->chunk_sectors
;
541 else if (disk
> start_disk_index
)
542 dev_start
= first_stripe_index
* mddev
->chunk_sectors
;
544 dev_start
= start_disk_offset
;
546 if (disk
< end_disk_index
)
547 dev_end
= (last_stripe_index
+ 1) * mddev
->chunk_sectors
;
548 else if (disk
> end_disk_index
)
549 dev_end
= last_stripe_index
* mddev
->chunk_sectors
;
551 dev_end
= end_disk_offset
;
553 if (dev_end
<= dev_start
)
556 rdev
= conf
->devlist
[(zone
- conf
->strip_zone
) *
557 conf
->strip_zone
[0].nb_dev
+ disk
];
558 if (__blkdev_issue_discard(rdev
->bdev
,
559 dev_start
+ zone
->dev_start
+ rdev
->data_offset
,
560 dev_end
- dev_start
, GFP_NOIO
, 0, &discard_bio
) ||
563 bio_chain(discard_bio
, bio
);
564 bio_clone_blkcg_association(discard_bio
, bio
);
566 trace_block_bio_remap(bdev_get_queue(rdev
->bdev
),
567 discard_bio
, disk_devt(mddev
->gendisk
),
568 bio
->bi_iter
.bi_sector
);
569 bio_clear_flag(bio
, BIO_QUEUE_ENTERED
);
570 generic_make_request(discard_bio
);
575 static bool raid0_make_request(struct mddev
*mddev
, struct bio
*bio
)
577 struct r0conf
*conf
= mddev
->private;
578 struct strip_zone
*zone
;
579 struct md_rdev
*tmp_dev
;
582 sector_t orig_sector
;
583 unsigned chunk_sects
;
586 if (unlikely(bio
->bi_opf
& REQ_PREFLUSH
)
587 && md_flush_request(mddev
, bio
))
590 if (unlikely((bio_op(bio
) == REQ_OP_DISCARD
))) {
591 raid0_handle_discard(mddev
, bio
);
595 bio_sector
= bio
->bi_iter
.bi_sector
;
597 chunk_sects
= mddev
->chunk_sectors
;
599 sectors
= chunk_sects
-
600 (likely(is_power_of_2(chunk_sects
))
601 ? (sector
& (chunk_sects
-1))
602 : sector_div(sector
, chunk_sects
));
604 /* Restore due to sector_div */
607 if (sectors
< bio_sectors(bio
)) {
608 struct bio
*split
= bio_split(bio
, sectors
, GFP_NOIO
,
610 bio_chain(split
, bio
);
611 generic_make_request(bio
);
615 orig_sector
= sector
;
616 zone
= find_zone(mddev
->private, §or
);
617 switch (conf
->layout
) {
618 case RAID0_ORIG_LAYOUT
:
619 tmp_dev
= map_sector(mddev
, zone
, orig_sector
, §or
);
621 case RAID0_ALT_MULTIZONE_LAYOUT
:
622 tmp_dev
= map_sector(mddev
, zone
, sector
, §or
);
625 WARN(1, "md/raid0:%s: Invalid layout\n", mdname(mddev
));
630 bio_set_dev(bio
, tmp_dev
->bdev
);
631 bio
->bi_iter
.bi_sector
= sector
+ zone
->dev_start
+
632 tmp_dev
->data_offset
;
635 trace_block_bio_remap(bio
->bi_disk
->queue
, bio
,
636 disk_devt(mddev
->gendisk
), bio_sector
);
637 mddev_check_writesame(mddev
, bio
);
638 mddev_check_write_zeroes(mddev
, bio
);
639 bio_clear_flag(bio
, BIO_QUEUE_ENTERED
);
640 generic_make_request(bio
);
644 static void raid0_status(struct seq_file
*seq
, struct mddev
*mddev
)
646 seq_printf(seq
, " %dk chunks", mddev
->chunk_sectors
/ 2);
650 static void *raid0_takeover_raid45(struct mddev
*mddev
)
652 struct md_rdev
*rdev
;
653 struct r0conf
*priv_conf
;
655 if (mddev
->degraded
!= 1) {
656 pr_warn("md/raid0:%s: raid5 must be degraded! Degraded disks: %d\n",
659 return ERR_PTR(-EINVAL
);
662 rdev_for_each(rdev
, mddev
) {
663 /* check slot number for a disk */
664 if (rdev
->raid_disk
== mddev
->raid_disks
-1) {
665 pr_warn("md/raid0:%s: raid5 must have missing parity disk!\n",
667 return ERR_PTR(-EINVAL
);
669 rdev
->sectors
= mddev
->dev_sectors
;
672 /* Set new parameters */
673 mddev
->new_level
= 0;
674 mddev
->new_layout
= 0;
675 mddev
->new_chunk_sectors
= mddev
->chunk_sectors
;
677 mddev
->delta_disks
= -1;
678 /* make sure it will be not marked as dirty */
679 mddev
->recovery_cp
= MaxSector
;
680 mddev_clear_unsupported_flags(mddev
, UNSUPPORTED_MDDEV_FLAGS
);
682 create_strip_zones(mddev
, &priv_conf
);
687 static void *raid0_takeover_raid10(struct mddev
*mddev
)
689 struct r0conf
*priv_conf
;
692 * - far_copies must be 1
693 * - near_copies must be 2
694 * - disks number must be even
695 * - all mirrors must be already degraded
697 if (mddev
->layout
!= ((1 << 8) + 2)) {
698 pr_warn("md/raid0:%s:: Raid0 cannot takeover layout: 0x%x\n",
701 return ERR_PTR(-EINVAL
);
703 if (mddev
->raid_disks
& 1) {
704 pr_warn("md/raid0:%s: Raid0 cannot takeover Raid10 with odd disk number.\n",
706 return ERR_PTR(-EINVAL
);
708 if (mddev
->degraded
!= (mddev
->raid_disks
>>1)) {
709 pr_warn("md/raid0:%s: All mirrors must be already degraded!\n",
711 return ERR_PTR(-EINVAL
);
714 /* Set new parameters */
715 mddev
->new_level
= 0;
716 mddev
->new_layout
= 0;
717 mddev
->new_chunk_sectors
= mddev
->chunk_sectors
;
718 mddev
->delta_disks
= - mddev
->raid_disks
/ 2;
719 mddev
->raid_disks
+= mddev
->delta_disks
;
721 /* make sure it will be not marked as dirty */
722 mddev
->recovery_cp
= MaxSector
;
723 mddev_clear_unsupported_flags(mddev
, UNSUPPORTED_MDDEV_FLAGS
);
725 create_strip_zones(mddev
, &priv_conf
);
729 static void *raid0_takeover_raid1(struct mddev
*mddev
)
731 struct r0conf
*priv_conf
;
735 * - (N - 1) mirror drives must be already faulty
737 if ((mddev
->raid_disks
- 1) != mddev
->degraded
) {
738 pr_err("md/raid0:%s: (N - 1) mirrors drives must be already faulty!\n",
740 return ERR_PTR(-EINVAL
);
744 * a raid1 doesn't have the notion of chunk size, so
745 * figure out the largest suitable size we can use.
747 chunksect
= 64 * 2; /* 64K by default */
749 /* The array must be an exact multiple of chunksize */
750 while (chunksect
&& (mddev
->array_sectors
& (chunksect
- 1)))
753 if ((chunksect
<< 9) < PAGE_SIZE
)
754 /* array size does not allow a suitable chunk size */
755 return ERR_PTR(-EINVAL
);
757 /* Set new parameters */
758 mddev
->new_level
= 0;
759 mddev
->new_layout
= 0;
760 mddev
->new_chunk_sectors
= chunksect
;
761 mddev
->chunk_sectors
= chunksect
;
762 mddev
->delta_disks
= 1 - mddev
->raid_disks
;
763 mddev
->raid_disks
= 1;
764 /* make sure it will be not marked as dirty */
765 mddev
->recovery_cp
= MaxSector
;
766 mddev_clear_unsupported_flags(mddev
, UNSUPPORTED_MDDEV_FLAGS
);
768 create_strip_zones(mddev
, &priv_conf
);
772 static void *raid0_takeover(struct mddev
*mddev
)
774 /* raid0 can take over:
775 * raid4 - if all data disks are active.
776 * raid5 - providing it is Raid4 layout and one disk is faulty
777 * raid10 - assuming we have all necessary active disks
778 * raid1 - with (N -1) mirror drives faulty
782 pr_warn("md/raid0: %s: cannot takeover array with bitmap\n",
784 return ERR_PTR(-EBUSY
);
786 if (mddev
->level
== 4)
787 return raid0_takeover_raid45(mddev
);
789 if (mddev
->level
== 5) {
790 if (mddev
->layout
== ALGORITHM_PARITY_N
)
791 return raid0_takeover_raid45(mddev
);
793 pr_warn("md/raid0:%s: Raid can only takeover Raid5 with layout: %d\n",
794 mdname(mddev
), ALGORITHM_PARITY_N
);
797 if (mddev
->level
== 10)
798 return raid0_takeover_raid10(mddev
);
800 if (mddev
->level
== 1)
801 return raid0_takeover_raid1(mddev
);
803 pr_warn("Takeover from raid%i to raid0 not supported\n",
806 return ERR_PTR(-EINVAL
);
809 static void raid0_quiesce(struct mddev
*mddev
, int quiesce
)
813 static struct md_personality raid0_personality
=
817 .owner
= THIS_MODULE
,
818 .make_request
= raid0_make_request
,
821 .status
= raid0_status
,
823 .takeover
= raid0_takeover
,
824 .quiesce
= raid0_quiesce
,
825 .congested
= raid0_congested
,
828 static int __init
raid0_init (void)
830 return register_md_personality (&raid0_personality
);
833 static void raid0_exit (void)
835 unregister_md_personality (&raid0_personality
);
838 module_init(raid0_init
);
839 module_exit(raid0_exit
);
840 MODULE_LICENSE("GPL");
841 MODULE_DESCRIPTION("RAID0 (striping) personality for MD");
842 MODULE_ALIAS("md-personality-2"); /* RAID0 */
843 MODULE_ALIAS("md-raid0");
844 MODULE_ALIAS("md-level-0");