1 /* 2 raid0.c : Multiple Devices driver for Linux 3 Copyright (C) 1994-96 Marc ZYNGIER 4 <zyngier@ufr-info-p7.ibp.fr> or 5 <maz@gloups.fdn.fr> 6 Copyright (C) 1999, 2000 Ingo Molnar, Red Hat 7 8 RAID-0 management functions. 9 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) 13 any later version. 14 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. 18 */ 19 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> 25 #include "md.h" 26 #include "raid0.h" 27 #include "raid5.h" 28 29 #define UNSUPPORTED_MDDEV_FLAGS \ 30 ((1L << MD_HAS_JOURNAL) | \ 31 (1L << MD_JOURNAL_CLEAN) | \ 32 (1L << MD_FAILFAST_SUPPORTED)) 33 34 static int raid0_congested(struct mddev *mddev, int bits) 35 { 36 struct r0conf *conf = mddev->private; 37 struct md_rdev **devlist = conf->devlist; 38 int raid_disks = conf->strip_zone[0].nb_dev; 39 int i, ret = 0; 40 41 for (i = 0; i < raid_disks && !ret ; i++) { 42 struct request_queue *q = bdev_get_queue(devlist[i]->bdev); 43 44 ret |= bdi_congested(q->backing_dev_info, bits); 45 } 46 return ret; 47 } 48 49 /* 50 * inform the user of the raid configuration 51 */ 52 static void dump_zones(struct mddev *mddev) 53 { 54 int j, k; 55 sector_t zone_size = 0; 56 sector_t zone_start = 0; 57 char b[BDEVNAME_SIZE]; 58 struct r0conf *conf = mddev->private; 59 int raid_disks = conf->strip_zone[0].nb_dev; 60 pr_debug("md: RAID0 configuration for %s - %d zone%s\n", 61 mdname(mddev), 62 conf->nr_strip_zones, conf->nr_strip_zones==1?"":"s"); 63 for (j = 0; j < conf->nr_strip_zones; j++) { 64 char line[200]; 65 int len = 0; 66 67 for (k = 0; k < conf->strip_zone[j].nb_dev; k++) 68 len += snprintf(line+len, 200-len, "%s%s", k?"/":"", 69 bdevname(conf->devlist[j*raid_disks 70 + k]->bdev, b)); 71 pr_debug("md: zone%d=[%s]\n", j, line); 72 73 zone_size = conf->strip_zone[j].zone_end - zone_start; 74 pr_debug(" zone-offset=%10lluKB, device-offset=%10lluKB, size=%10lluKB\n", 75 (unsigned long long)zone_start>>1, 76 (unsigned long long)conf->strip_zone[j].dev_start>>1, 77 (unsigned long long)zone_size>>1); 78 zone_start = conf->strip_zone[j].zone_end; 79 } 80 } 81 82 static int create_strip_zones(struct mddev *mddev, struct r0conf **private_conf) 83 { 84 int i, c, err; 85 sector_t curr_zone_end, sectors; 86 struct md_rdev *smallest, *rdev1, *rdev2, *rdev, **dev; 87 struct strip_zone *zone; 88 int cnt; 89 char b[BDEVNAME_SIZE]; 90 char b2[BDEVNAME_SIZE]; 91 struct r0conf *conf = kzalloc(sizeof(*conf), GFP_KERNEL); 92 unsigned short blksize = 512; 93 94 *private_conf = ERR_PTR(-ENOMEM); 95 if (!conf) 96 return -ENOMEM; 97 rdev_for_each(rdev1, mddev) { 98 pr_debug("md/raid0:%s: looking at %s\n", 99 mdname(mddev), 100 bdevname(rdev1->bdev, b)); 101 c = 0; 102 103 /* round size to chunk_size */ 104 sectors = rdev1->sectors; 105 sector_div(sectors, mddev->chunk_sectors); 106 rdev1->sectors = sectors * mddev->chunk_sectors; 107 108 blksize = max(blksize, queue_logical_block_size( 109 rdev1->bdev->bd_disk->queue)); 110 111 rdev_for_each(rdev2, mddev) { 112 pr_debug("md/raid0:%s: comparing %s(%llu)" 113 " with %s(%llu)\n", 114 mdname(mddev), 115 bdevname(rdev1->bdev,b), 116 (unsigned long long)rdev1->sectors, 117 bdevname(rdev2->bdev,b2), 118 (unsigned long long)rdev2->sectors); 119 if (rdev2 == rdev1) { 120 pr_debug("md/raid0:%s: END\n", 121 mdname(mddev)); 122 break; 123 } 124 if (rdev2->sectors == rdev1->sectors) { 125 /* 126 * Not unique, don't count it as a new 127 * group 128 */ 129 pr_debug("md/raid0:%s: EQUAL\n", 130 mdname(mddev)); 131 c = 1; 132 break; 133 } 134 pr_debug("md/raid0:%s: NOT EQUAL\n", 135 mdname(mddev)); 136 } 137 if (!c) { 138 pr_debug("md/raid0:%s: ==> UNIQUE\n", 139 mdname(mddev)); 140 conf->nr_strip_zones++; 141 pr_debug("md/raid0:%s: %d zones\n", 142 mdname(mddev), conf->nr_strip_zones); 143 } 144 } 145 pr_debug("md/raid0:%s: FINAL %d zones\n", 146 mdname(mddev), conf->nr_strip_zones); 147 /* 148 * now since we have the hard sector sizes, we can make sure 149 * chunk size is a multiple of that sector size 150 */ 151 if ((mddev->chunk_sectors << 9) % blksize) { 152 pr_warn("md/raid0:%s: chunk_size of %d not multiple of block size %d\n", 153 mdname(mddev), 154 mddev->chunk_sectors << 9, blksize); 155 err = -EINVAL; 156 goto abort; 157 } 158 159 err = -ENOMEM; 160 conf->strip_zone = kzalloc(sizeof(struct strip_zone)* 161 conf->nr_strip_zones, GFP_KERNEL); 162 if (!conf->strip_zone) 163 goto abort; 164 conf->devlist = kzalloc(sizeof(struct md_rdev*)* 165 conf->nr_strip_zones*mddev->raid_disks, 166 GFP_KERNEL); 167 if (!conf->devlist) 168 goto abort; 169 170 /* The first zone must contain all devices, so here we check that 171 * there is a proper alignment of slots to devices and find them all 172 */ 173 zone = &conf->strip_zone[0]; 174 cnt = 0; 175 smallest = NULL; 176 dev = conf->devlist; 177 err = -EINVAL; 178 rdev_for_each(rdev1, mddev) { 179 int j = rdev1->raid_disk; 180 181 if (mddev->level == 10) { 182 /* taking over a raid10-n2 array */ 183 j /= 2; 184 rdev1->new_raid_disk = j; 185 } 186 187 if (mddev->level == 1) { 188 /* taiking over a raid1 array- 189 * we have only one active disk 190 */ 191 j = 0; 192 rdev1->new_raid_disk = j; 193 } 194 195 if (j < 0) { 196 pr_warn("md/raid0:%s: remove inactive devices before converting to RAID0\n", 197 mdname(mddev)); 198 goto abort; 199 } 200 if (j >= mddev->raid_disks) { 201 pr_warn("md/raid0:%s: bad disk number %d - aborting!\n", 202 mdname(mddev), j); 203 goto abort; 204 } 205 if (dev[j]) { 206 pr_warn("md/raid0:%s: multiple devices for %d - aborting!\n", 207 mdname(mddev), j); 208 goto abort; 209 } 210 dev[j] = rdev1; 211 212 if (!smallest || (rdev1->sectors < smallest->sectors)) 213 smallest = rdev1; 214 cnt++; 215 } 216 if (cnt != mddev->raid_disks) { 217 pr_warn("md/raid0:%s: too few disks (%d of %d) - aborting!\n", 218 mdname(mddev), cnt, mddev->raid_disks); 219 goto abort; 220 } 221 zone->nb_dev = cnt; 222 zone->zone_end = smallest->sectors * cnt; 223 224 curr_zone_end = zone->zone_end; 225 226 /* now do the other zones */ 227 for (i = 1; i < conf->nr_strip_zones; i++) 228 { 229 int j; 230 231 zone = conf->strip_zone + i; 232 dev = conf->devlist + i * mddev->raid_disks; 233 234 pr_debug("md/raid0:%s: zone %d\n", mdname(mddev), i); 235 zone->dev_start = smallest->sectors; 236 smallest = NULL; 237 c = 0; 238 239 for (j=0; j<cnt; j++) { 240 rdev = conf->devlist[j]; 241 if (rdev->sectors <= zone->dev_start) { 242 pr_debug("md/raid0:%s: checking %s ... nope\n", 243 mdname(mddev), 244 bdevname(rdev->bdev, b)); 245 continue; 246 } 247 pr_debug("md/raid0:%s: checking %s ..." 248 " contained as device %d\n", 249 mdname(mddev), 250 bdevname(rdev->bdev, b), c); 251 dev[c] = rdev; 252 c++; 253 if (!smallest || rdev->sectors < smallest->sectors) { 254 smallest = rdev; 255 pr_debug("md/raid0:%s: (%llu) is smallest!.\n", 256 mdname(mddev), 257 (unsigned long long)rdev->sectors); 258 } 259 } 260 261 zone->nb_dev = c; 262 sectors = (smallest->sectors - zone->dev_start) * c; 263 pr_debug("md/raid0:%s: zone->nb_dev: %d, sectors: %llu\n", 264 mdname(mddev), 265 zone->nb_dev, (unsigned long long)sectors); 266 267 curr_zone_end += sectors; 268 zone->zone_end = curr_zone_end; 269 270 pr_debug("md/raid0:%s: current zone start: %llu\n", 271 mdname(mddev), 272 (unsigned long long)smallest->sectors); 273 } 274 275 pr_debug("md/raid0:%s: done.\n", mdname(mddev)); 276 *private_conf = conf; 277 278 return 0; 279 abort: 280 kfree(conf->strip_zone); 281 kfree(conf->devlist); 282 kfree(conf); 283 *private_conf = ERR_PTR(err); 284 return err; 285 } 286 287 /* Find the zone which holds a particular offset 288 * Update *sectorp to be an offset in that zone 289 */ 290 static struct strip_zone *find_zone(struct r0conf *conf, 291 sector_t *sectorp) 292 { 293 int i; 294 struct strip_zone *z = conf->strip_zone; 295 sector_t sector = *sectorp; 296 297 for (i = 0; i < conf->nr_strip_zones; i++) 298 if (sector < z[i].zone_end) { 299 if (i) 300 *sectorp = sector - z[i-1].zone_end; 301 return z + i; 302 } 303 BUG(); 304 } 305 306 /* 307 * remaps the bio to the target device. we separate two flows. 308 * power 2 flow and a general flow for the sake of performance 309 */ 310 static struct md_rdev *map_sector(struct mddev *mddev, struct strip_zone *zone, 311 sector_t sector, sector_t *sector_offset) 312 { 313 unsigned int sect_in_chunk; 314 sector_t chunk; 315 struct r0conf *conf = mddev->private; 316 int raid_disks = conf->strip_zone[0].nb_dev; 317 unsigned int chunk_sects = mddev->chunk_sectors; 318 319 if (is_power_of_2(chunk_sects)) { 320 int chunksect_bits = ffz(~chunk_sects); 321 /* find the sector offset inside the chunk */ 322 sect_in_chunk = sector & (chunk_sects - 1); 323 sector >>= chunksect_bits; 324 /* chunk in zone */ 325 chunk = *sector_offset; 326 /* quotient is the chunk in real device*/ 327 sector_div(chunk, zone->nb_dev << chunksect_bits); 328 } else{ 329 sect_in_chunk = sector_div(sector, chunk_sects); 330 chunk = *sector_offset; 331 sector_div(chunk, chunk_sects * zone->nb_dev); 332 } 333 /* 334 * position the bio over the real device 335 * real sector = chunk in device + starting of zone 336 * + the position in the chunk 337 */ 338 *sector_offset = (chunk * chunk_sects) + sect_in_chunk; 339 return conf->devlist[(zone - conf->strip_zone)*raid_disks 340 + sector_div(sector, zone->nb_dev)]; 341 } 342 343 static sector_t raid0_size(struct mddev *mddev, sector_t sectors, int raid_disks) 344 { 345 sector_t array_sectors = 0; 346 struct md_rdev *rdev; 347 348 WARN_ONCE(sectors || raid_disks, 349 "%s does not support generic reshape\n", __func__); 350 351 rdev_for_each(rdev, mddev) 352 array_sectors += (rdev->sectors & 353 ~(sector_t)(mddev->chunk_sectors-1)); 354 355 return array_sectors; 356 } 357 358 static void raid0_free(struct mddev *mddev, void *priv); 359 360 static int raid0_run(struct mddev *mddev) 361 { 362 struct r0conf *conf; 363 int ret; 364 365 if (mddev->chunk_sectors == 0) { 366 pr_warn("md/raid0:%s: chunk size must be set.\n", mdname(mddev)); 367 return -EINVAL; 368 } 369 if (md_check_no_bitmap(mddev)) 370 return -EINVAL; 371 372 /* if private is not null, we are here after takeover */ 373 if (mddev->private == NULL) { 374 ret = create_strip_zones(mddev, &conf); 375 if (ret < 0) 376 return ret; 377 mddev->private = conf; 378 } 379 conf = mddev->private; 380 if (mddev->queue) { 381 struct md_rdev *rdev; 382 bool discard_supported = false; 383 384 blk_queue_max_hw_sectors(mddev->queue, mddev->chunk_sectors); 385 blk_queue_max_write_same_sectors(mddev->queue, mddev->chunk_sectors); 386 blk_queue_max_write_zeroes_sectors(mddev->queue, mddev->chunk_sectors); 387 blk_queue_max_discard_sectors(mddev->queue, mddev->chunk_sectors); 388 389 blk_queue_io_min(mddev->queue, mddev->chunk_sectors << 9); 390 blk_queue_io_opt(mddev->queue, 391 (mddev->chunk_sectors << 9) * mddev->raid_disks); 392 393 rdev_for_each(rdev, mddev) { 394 disk_stack_limits(mddev->gendisk, rdev->bdev, 395 rdev->data_offset << 9); 396 if (blk_queue_discard(bdev_get_queue(rdev->bdev))) 397 discard_supported = true; 398 } 399 if (!discard_supported) 400 queue_flag_clear_unlocked(QUEUE_FLAG_DISCARD, mddev->queue); 401 else 402 queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, mddev->queue); 403 } 404 405 /* calculate array device size */ 406 md_set_array_sectors(mddev, raid0_size(mddev, 0, 0)); 407 408 pr_debug("md/raid0:%s: md_size is %llu sectors.\n", 409 mdname(mddev), 410 (unsigned long long)mddev->array_sectors); 411 412 if (mddev->queue) { 413 /* calculate the max read-ahead size. 414 * For read-ahead of large files to be effective, we need to 415 * readahead at least twice a whole stripe. i.e. number of devices 416 * multiplied by chunk size times 2. 417 * If an individual device has an ra_pages greater than the 418 * chunk size, then we will not drive that device as hard as it 419 * wants. We consider this a configuration error: a larger 420 * chunksize should be used in that case. 421 */ 422 int stripe = mddev->raid_disks * 423 (mddev->chunk_sectors << 9) / PAGE_SIZE; 424 if (mddev->queue->backing_dev_info->ra_pages < 2* stripe) 425 mddev->queue->backing_dev_info->ra_pages = 2* stripe; 426 } 427 428 dump_zones(mddev); 429 430 ret = md_integrity_register(mddev); 431 432 return ret; 433 } 434 435 static void raid0_free(struct mddev *mddev, void *priv) 436 { 437 struct r0conf *conf = priv; 438 439 kfree(conf->strip_zone); 440 kfree(conf->devlist); 441 kfree(conf); 442 } 443 444 /* 445 * Is io distribute over 1 or more chunks ? 446 */ 447 static inline int is_io_in_chunk_boundary(struct mddev *mddev, 448 unsigned int chunk_sects, struct bio *bio) 449 { 450 if (likely(is_power_of_2(chunk_sects))) { 451 return chunk_sects >= 452 ((bio->bi_iter.bi_sector & (chunk_sects-1)) 453 + bio_sectors(bio)); 454 } else{ 455 sector_t sector = bio->bi_iter.bi_sector; 456 return chunk_sects >= (sector_div(sector, chunk_sects) 457 + bio_sectors(bio)); 458 } 459 } 460 461 static void raid0_make_request(struct mddev *mddev, struct bio *bio) 462 { 463 struct strip_zone *zone; 464 struct md_rdev *tmp_dev; 465 struct bio *split; 466 467 if (unlikely(bio->bi_opf & REQ_PREFLUSH)) { 468 md_flush_request(mddev, bio); 469 return; 470 } 471 472 do { 473 sector_t bio_sector = bio->bi_iter.bi_sector; 474 sector_t sector = bio_sector; 475 unsigned chunk_sects = mddev->chunk_sectors; 476 477 unsigned sectors = chunk_sects - 478 (likely(is_power_of_2(chunk_sects)) 479 ? (sector & (chunk_sects-1)) 480 : sector_div(sector, chunk_sects)); 481 482 /* Restore due to sector_div */ 483 sector = bio_sector; 484 485 if (sectors < bio_sectors(bio)) { 486 split = bio_split(bio, sectors, GFP_NOIO, fs_bio_set); 487 bio_chain(split, bio); 488 } else { 489 split = bio; 490 } 491 492 zone = find_zone(mddev->private, §or); 493 tmp_dev = map_sector(mddev, zone, sector, §or); 494 split->bi_bdev = tmp_dev->bdev; 495 split->bi_iter.bi_sector = sector + zone->dev_start + 496 tmp_dev->data_offset; 497 498 if (unlikely((bio_op(split) == REQ_OP_DISCARD) && 499 !blk_queue_discard(bdev_get_queue(split->bi_bdev)))) { 500 /* Just ignore it */ 501 bio_endio(split); 502 } else { 503 if (mddev->gendisk) 504 trace_block_bio_remap(bdev_get_queue(split->bi_bdev), 505 split, disk_devt(mddev->gendisk), 506 bio_sector); 507 mddev_check_writesame(mddev, split); 508 mddev_check_write_zeroes(mddev, split); 509 generic_make_request(split); 510 } 511 } while (split != bio); 512 } 513 514 static void raid0_status(struct seq_file *seq, struct mddev *mddev) 515 { 516 seq_printf(seq, " %dk chunks", mddev->chunk_sectors / 2); 517 return; 518 } 519 520 static void *raid0_takeover_raid45(struct mddev *mddev) 521 { 522 struct md_rdev *rdev; 523 struct r0conf *priv_conf; 524 525 if (mddev->degraded != 1) { 526 pr_warn("md/raid0:%s: raid5 must be degraded! Degraded disks: %d\n", 527 mdname(mddev), 528 mddev->degraded); 529 return ERR_PTR(-EINVAL); 530 } 531 532 rdev_for_each(rdev, mddev) { 533 /* check slot number for a disk */ 534 if (rdev->raid_disk == mddev->raid_disks-1) { 535 pr_warn("md/raid0:%s: raid5 must have missing parity disk!\n", 536 mdname(mddev)); 537 return ERR_PTR(-EINVAL); 538 } 539 rdev->sectors = mddev->dev_sectors; 540 } 541 542 /* Set new parameters */ 543 mddev->new_level = 0; 544 mddev->new_layout = 0; 545 mddev->new_chunk_sectors = mddev->chunk_sectors; 546 mddev->raid_disks--; 547 mddev->delta_disks = -1; 548 /* make sure it will be not marked as dirty */ 549 mddev->recovery_cp = MaxSector; 550 mddev_clear_unsupported_flags(mddev, UNSUPPORTED_MDDEV_FLAGS); 551 552 create_strip_zones(mddev, &priv_conf); 553 554 return priv_conf; 555 } 556 557 static void *raid0_takeover_raid10(struct mddev *mddev) 558 { 559 struct r0conf *priv_conf; 560 561 /* Check layout: 562 * - far_copies must be 1 563 * - near_copies must be 2 564 * - disks number must be even 565 * - all mirrors must be already degraded 566 */ 567 if (mddev->layout != ((1 << 8) + 2)) { 568 pr_warn("md/raid0:%s:: Raid0 cannot takeover layout: 0x%x\n", 569 mdname(mddev), 570 mddev->layout); 571 return ERR_PTR(-EINVAL); 572 } 573 if (mddev->raid_disks & 1) { 574 pr_warn("md/raid0:%s: Raid0 cannot takeover Raid10 with odd disk number.\n", 575 mdname(mddev)); 576 return ERR_PTR(-EINVAL); 577 } 578 if (mddev->degraded != (mddev->raid_disks>>1)) { 579 pr_warn("md/raid0:%s: All mirrors must be already degraded!\n", 580 mdname(mddev)); 581 return ERR_PTR(-EINVAL); 582 } 583 584 /* Set new parameters */ 585 mddev->new_level = 0; 586 mddev->new_layout = 0; 587 mddev->new_chunk_sectors = mddev->chunk_sectors; 588 mddev->delta_disks = - mddev->raid_disks / 2; 589 mddev->raid_disks += mddev->delta_disks; 590 mddev->degraded = 0; 591 /* make sure it will be not marked as dirty */ 592 mddev->recovery_cp = MaxSector; 593 mddev_clear_unsupported_flags(mddev, UNSUPPORTED_MDDEV_FLAGS); 594 595 create_strip_zones(mddev, &priv_conf); 596 return priv_conf; 597 } 598 599 static void *raid0_takeover_raid1(struct mddev *mddev) 600 { 601 struct r0conf *priv_conf; 602 int chunksect; 603 604 /* Check layout: 605 * - (N - 1) mirror drives must be already faulty 606 */ 607 if ((mddev->raid_disks - 1) != mddev->degraded) { 608 pr_err("md/raid0:%s: (N - 1) mirrors drives must be already faulty!\n", 609 mdname(mddev)); 610 return ERR_PTR(-EINVAL); 611 } 612 613 /* 614 * a raid1 doesn't have the notion of chunk size, so 615 * figure out the largest suitable size we can use. 616 */ 617 chunksect = 64 * 2; /* 64K by default */ 618 619 /* The array must be an exact multiple of chunksize */ 620 while (chunksect && (mddev->array_sectors & (chunksect - 1))) 621 chunksect >>= 1; 622 623 if ((chunksect << 9) < PAGE_SIZE) 624 /* array size does not allow a suitable chunk size */ 625 return ERR_PTR(-EINVAL); 626 627 /* Set new parameters */ 628 mddev->new_level = 0; 629 mddev->new_layout = 0; 630 mddev->new_chunk_sectors = chunksect; 631 mddev->chunk_sectors = chunksect; 632 mddev->delta_disks = 1 - mddev->raid_disks; 633 mddev->raid_disks = 1; 634 /* make sure it will be not marked as dirty */ 635 mddev->recovery_cp = MaxSector; 636 mddev_clear_unsupported_flags(mddev, UNSUPPORTED_MDDEV_FLAGS); 637 638 create_strip_zones(mddev, &priv_conf); 639 return priv_conf; 640 } 641 642 static void *raid0_takeover(struct mddev *mddev) 643 { 644 /* raid0 can take over: 645 * raid4 - if all data disks are active. 646 * raid5 - providing it is Raid4 layout and one disk is faulty 647 * raid10 - assuming we have all necessary active disks 648 * raid1 - with (N -1) mirror drives faulty 649 */ 650 651 if (mddev->bitmap) { 652 pr_warn("md/raid0: %s: cannot takeover array with bitmap\n", 653 mdname(mddev)); 654 return ERR_PTR(-EBUSY); 655 } 656 if (mddev->level == 4) 657 return raid0_takeover_raid45(mddev); 658 659 if (mddev->level == 5) { 660 if (mddev->layout == ALGORITHM_PARITY_N) 661 return raid0_takeover_raid45(mddev); 662 663 pr_warn("md/raid0:%s: Raid can only takeover Raid5 with layout: %d\n", 664 mdname(mddev), ALGORITHM_PARITY_N); 665 } 666 667 if (mddev->level == 10) 668 return raid0_takeover_raid10(mddev); 669 670 if (mddev->level == 1) 671 return raid0_takeover_raid1(mddev); 672 673 pr_warn("Takeover from raid%i to raid0 not supported\n", 674 mddev->level); 675 676 return ERR_PTR(-EINVAL); 677 } 678 679 static void raid0_quiesce(struct mddev *mddev, int state) 680 { 681 } 682 683 static struct md_personality raid0_personality= 684 { 685 .name = "raid0", 686 .level = 0, 687 .owner = THIS_MODULE, 688 .make_request = raid0_make_request, 689 .run = raid0_run, 690 .free = raid0_free, 691 .status = raid0_status, 692 .size = raid0_size, 693 .takeover = raid0_takeover, 694 .quiesce = raid0_quiesce, 695 .congested = raid0_congested, 696 }; 697 698 static int __init raid0_init (void) 699 { 700 return register_md_personality (&raid0_personality); 701 } 702 703 static void raid0_exit (void) 704 { 705 unregister_md_personality (&raid0_personality); 706 } 707 708 module_init(raid0_init); 709 module_exit(raid0_exit); 710 MODULE_LICENSE("GPL"); 711 MODULE_DESCRIPTION("RAID0 (striping) personality for MD"); 712 MODULE_ALIAS("md-personality-2"); /* RAID0 */ 713 MODULE_ALIAS("md-raid0"); 714 MODULE_ALIAS("md-level-0"); 715