raid0.c 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729
  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. RAID-0 management functions.
  8. This program is free software; you can redistribute it and/or modify
  9. it under the terms of the GNU General Public License as published by
  10. the Free Software Foundation; either version 2, or (at your option)
  11. any later version.
  12. You should have received a copy of the GNU General Public License
  13. (for example /usr/src/linux/COPYING); if not, write to the Free
  14. Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  15. */
  16. #include <linux/blkdev.h>
  17. #include <linux/seq_file.h>
  18. #include <linux/slab.h>
  19. #include "md.h"
  20. #include "raid0.h"
  21. #include "raid5.h"
  22. static int raid0_congested(void *data, int bits)
  23. {
  24. mddev_t *mddev = data;
  25. raid0_conf_t *conf = mddev->private;
  26. mdk_rdev_t **devlist = conf->devlist;
  27. int raid_disks = conf->strip_zone[0].nb_dev;
  28. int i, ret = 0;
  29. if (mddev_congested(mddev, bits))
  30. return 1;
  31. for (i = 0; i < raid_disks && !ret ; i++) {
  32. struct request_queue *q = bdev_get_queue(devlist[i]->bdev);
  33. ret |= bdi_congested(&q->backing_dev_info, bits);
  34. }
  35. return ret;
  36. }
  37. /*
  38. * inform the user of the raid configuration
  39. */
  40. static void dump_zones(mddev_t *mddev)
  41. {
  42. int j, k, h;
  43. sector_t zone_size = 0;
  44. sector_t zone_start = 0;
  45. char b[BDEVNAME_SIZE];
  46. raid0_conf_t *conf = mddev->private;
  47. int raid_disks = conf->strip_zone[0].nb_dev;
  48. printk(KERN_INFO "******* %s configuration *********\n",
  49. mdname(mddev));
  50. h = 0;
  51. for (j = 0; j < conf->nr_strip_zones; j++) {
  52. printk(KERN_INFO "zone%d=[", j);
  53. for (k = 0; k < conf->strip_zone[j].nb_dev; k++)
  54. printk(KERN_CONT "%s/",
  55. bdevname(conf->devlist[j*raid_disks
  56. + k]->bdev, b));
  57. printk(KERN_CONT "]\n");
  58. zone_size = conf->strip_zone[j].zone_end - zone_start;
  59. printk(KERN_INFO " zone offset=%llukb "
  60. "device offset=%llukb size=%llukb\n",
  61. (unsigned long long)zone_start>>1,
  62. (unsigned long long)conf->strip_zone[j].dev_start>>1,
  63. (unsigned long long)zone_size>>1);
  64. zone_start = conf->strip_zone[j].zone_end;
  65. }
  66. printk(KERN_INFO "**********************************\n\n");
  67. }
  68. static int create_strip_zones(mddev_t *mddev, raid0_conf_t **private_conf)
  69. {
  70. int i, c, err;
  71. sector_t curr_zone_end, sectors;
  72. mdk_rdev_t *smallest, *rdev1, *rdev2, *rdev, **dev;
  73. struct strip_zone *zone;
  74. int cnt;
  75. char b[BDEVNAME_SIZE];
  76. raid0_conf_t *conf = kzalloc(sizeof(*conf), GFP_KERNEL);
  77. if (!conf)
  78. return -ENOMEM;
  79. list_for_each_entry(rdev1, &mddev->disks, same_set) {
  80. printk(KERN_INFO "md/raid0:%s: looking at %s\n",
  81. mdname(mddev),
  82. bdevname(rdev1->bdev, b));
  83. c = 0;
  84. /* round size to chunk_size */
  85. sectors = rdev1->sectors;
  86. sector_div(sectors, mddev->chunk_sectors);
  87. rdev1->sectors = sectors * mddev->chunk_sectors;
  88. list_for_each_entry(rdev2, &mddev->disks, same_set) {
  89. printk(KERN_INFO "md/raid0:%s: comparing %s(%llu)",
  90. mdname(mddev),
  91. bdevname(rdev1->bdev,b),
  92. (unsigned long long)rdev1->sectors);
  93. printk(KERN_CONT " with %s(%llu)\n",
  94. bdevname(rdev2->bdev,b),
  95. (unsigned long long)rdev2->sectors);
  96. if (rdev2 == rdev1) {
  97. printk(KERN_INFO "md/raid0:%s: END\n",
  98. mdname(mddev));
  99. break;
  100. }
  101. if (rdev2->sectors == rdev1->sectors) {
  102. /*
  103. * Not unique, don't count it as a new
  104. * group
  105. */
  106. printk(KERN_INFO "md/raid0:%s: EQUAL\n",
  107. mdname(mddev));
  108. c = 1;
  109. break;
  110. }
  111. printk(KERN_INFO "md/raid0:%s: NOT EQUAL\n",
  112. mdname(mddev));
  113. }
  114. if (!c) {
  115. printk(KERN_INFO "md/raid0:%s: ==> UNIQUE\n",
  116. mdname(mddev));
  117. conf->nr_strip_zones++;
  118. printk(KERN_INFO "md/raid0:%s: %d zones\n",
  119. mdname(mddev), conf->nr_strip_zones);
  120. }
  121. }
  122. printk(KERN_INFO "md/raid0:%s: FINAL %d zones\n",
  123. mdname(mddev), conf->nr_strip_zones);
  124. err = -ENOMEM;
  125. conf->strip_zone = kzalloc(sizeof(struct strip_zone)*
  126. conf->nr_strip_zones, GFP_KERNEL);
  127. if (!conf->strip_zone)
  128. goto abort;
  129. conf->devlist = kzalloc(sizeof(mdk_rdev_t*)*
  130. conf->nr_strip_zones*mddev->raid_disks,
  131. GFP_KERNEL);
  132. if (!conf->devlist)
  133. goto abort;
  134. /* The first zone must contain all devices, so here we check that
  135. * there is a proper alignment of slots to devices and find them all
  136. */
  137. zone = &conf->strip_zone[0];
  138. cnt = 0;
  139. smallest = NULL;
  140. dev = conf->devlist;
  141. err = -EINVAL;
  142. list_for_each_entry(rdev1, &mddev->disks, same_set) {
  143. int j = rdev1->raid_disk;
  144. if (mddev->level == 10) {
  145. /* taking over a raid10-n2 array */
  146. j /= 2;
  147. rdev1->new_raid_disk = j;
  148. }
  149. if (mddev->level == 1) {
  150. /* taiking over a raid1 array-
  151. * we have only one active disk
  152. */
  153. j = 0;
  154. rdev1->new_raid_disk = j;
  155. }
  156. if (j < 0 || j >= mddev->raid_disks) {
  157. printk(KERN_ERR "md/raid0:%s: bad disk number %d - "
  158. "aborting!\n", mdname(mddev), j);
  159. goto abort;
  160. }
  161. if (dev[j]) {
  162. printk(KERN_ERR "md/raid0:%s: multiple devices for %d - "
  163. "aborting!\n", mdname(mddev), j);
  164. goto abort;
  165. }
  166. dev[j] = rdev1;
  167. disk_stack_limits(mddev->gendisk, rdev1->bdev,
  168. rdev1->data_offset << 9);
  169. /* as we don't honour merge_bvec_fn, we must never risk
  170. * violating it, so limit ->max_segments to 1, lying within
  171. * a single page.
  172. */
  173. if (rdev1->bdev->bd_disk->queue->merge_bvec_fn) {
  174. blk_queue_max_segments(mddev->queue, 1);
  175. blk_queue_segment_boundary(mddev->queue,
  176. PAGE_CACHE_SIZE - 1);
  177. }
  178. if (!smallest || (rdev1->sectors < smallest->sectors))
  179. smallest = rdev1;
  180. cnt++;
  181. }
  182. if (cnt != mddev->raid_disks) {
  183. printk(KERN_ERR "md/raid0:%s: too few disks (%d of %d) - "
  184. "aborting!\n", mdname(mddev), cnt, mddev->raid_disks);
  185. goto abort;
  186. }
  187. zone->nb_dev = cnt;
  188. zone->zone_end = smallest->sectors * cnt;
  189. curr_zone_end = zone->zone_end;
  190. /* now do the other zones */
  191. for (i = 1; i < conf->nr_strip_zones; i++)
  192. {
  193. int j;
  194. zone = conf->strip_zone + i;
  195. dev = conf->devlist + i * mddev->raid_disks;
  196. printk(KERN_INFO "md/raid0:%s: zone %d\n",
  197. mdname(mddev), i);
  198. zone->dev_start = smallest->sectors;
  199. smallest = NULL;
  200. c = 0;
  201. for (j=0; j<cnt; j++) {
  202. rdev = conf->devlist[j];
  203. printk(KERN_INFO "md/raid0:%s: checking %s ...",
  204. mdname(mddev),
  205. bdevname(rdev->bdev, b));
  206. if (rdev->sectors <= zone->dev_start) {
  207. printk(KERN_CONT " nope.\n");
  208. continue;
  209. }
  210. printk(KERN_CONT " contained as device %d\n", c);
  211. dev[c] = rdev;
  212. c++;
  213. if (!smallest || rdev->sectors < smallest->sectors) {
  214. smallest = rdev;
  215. printk(KERN_INFO "md/raid0:%s: (%llu) is smallest!.\n",
  216. mdname(mddev),
  217. (unsigned long long)rdev->sectors);
  218. }
  219. }
  220. zone->nb_dev = c;
  221. sectors = (smallest->sectors - zone->dev_start) * c;
  222. printk(KERN_INFO "md/raid0:%s: zone->nb_dev: %d, sectors: %llu\n",
  223. mdname(mddev),
  224. zone->nb_dev, (unsigned long long)sectors);
  225. curr_zone_end += sectors;
  226. zone->zone_end = curr_zone_end;
  227. printk(KERN_INFO "md/raid0:%s: current zone start: %llu\n",
  228. mdname(mddev),
  229. (unsigned long long)smallest->sectors);
  230. }
  231. mddev->queue->backing_dev_info.congested_fn = raid0_congested;
  232. mddev->queue->backing_dev_info.congested_data = mddev;
  233. /*
  234. * now since we have the hard sector sizes, we can make sure
  235. * chunk size is a multiple of that sector size
  236. */
  237. if ((mddev->chunk_sectors << 9) % queue_logical_block_size(mddev->queue)) {
  238. printk(KERN_ERR "md/raid0:%s: chunk_size of %d not valid\n",
  239. mdname(mddev),
  240. mddev->chunk_sectors << 9);
  241. goto abort;
  242. }
  243. blk_queue_io_min(mddev->queue, mddev->chunk_sectors << 9);
  244. blk_queue_io_opt(mddev->queue,
  245. (mddev->chunk_sectors << 9) * mddev->raid_disks);
  246. printk(KERN_INFO "md/raid0:%s: done.\n", mdname(mddev));
  247. *private_conf = conf;
  248. return 0;
  249. abort:
  250. kfree(conf->strip_zone);
  251. kfree(conf->devlist);
  252. kfree(conf);
  253. *private_conf = NULL;
  254. return err;
  255. }
  256. /**
  257. * raid0_mergeable_bvec -- tell bio layer if a two requests can be merged
  258. * @q: request queue
  259. * @bvm: properties of new bio
  260. * @biovec: the request that could be merged to it.
  261. *
  262. * Return amount of bytes we can accept at this offset
  263. */
  264. static int raid0_mergeable_bvec(struct request_queue *q,
  265. struct bvec_merge_data *bvm,
  266. struct bio_vec *biovec)
  267. {
  268. mddev_t *mddev = q->queuedata;
  269. sector_t sector = bvm->bi_sector + get_start_sect(bvm->bi_bdev);
  270. int max;
  271. unsigned int chunk_sectors = mddev->chunk_sectors;
  272. unsigned int bio_sectors = bvm->bi_size >> 9;
  273. if (is_power_of_2(chunk_sectors))
  274. max = (chunk_sectors - ((sector & (chunk_sectors-1))
  275. + bio_sectors)) << 9;
  276. else
  277. max = (chunk_sectors - (sector_div(sector, chunk_sectors)
  278. + bio_sectors)) << 9;
  279. if (max < 0) max = 0; /* bio_add cannot handle a negative return */
  280. if (max <= biovec->bv_len && bio_sectors == 0)
  281. return biovec->bv_len;
  282. else
  283. return max;
  284. }
  285. static sector_t raid0_size(mddev_t *mddev, sector_t sectors, int raid_disks)
  286. {
  287. sector_t array_sectors = 0;
  288. mdk_rdev_t *rdev;
  289. WARN_ONCE(sectors || raid_disks,
  290. "%s does not support generic reshape\n", __func__);
  291. list_for_each_entry(rdev, &mddev->disks, same_set)
  292. array_sectors += rdev->sectors;
  293. return array_sectors;
  294. }
  295. static int raid0_run(mddev_t *mddev)
  296. {
  297. raid0_conf_t *conf;
  298. int ret;
  299. if (mddev->chunk_sectors == 0) {
  300. printk(KERN_ERR "md/raid0:%s: chunk size must be set.\n",
  301. mdname(mddev));
  302. return -EINVAL;
  303. }
  304. if (md_check_no_bitmap(mddev))
  305. return -EINVAL;
  306. blk_queue_max_hw_sectors(mddev->queue, mddev->chunk_sectors);
  307. mddev->queue->queue_lock = &mddev->queue->__queue_lock;
  308. /* if private is not null, we are here after takeover */
  309. if (mddev->private == NULL) {
  310. ret = create_strip_zones(mddev, &conf);
  311. if (ret < 0)
  312. return ret;
  313. mddev->private = conf;
  314. }
  315. conf = mddev->private;
  316. /* calculate array device size */
  317. md_set_array_sectors(mddev, raid0_size(mddev, 0, 0));
  318. printk(KERN_INFO "md/raid0:%s: md_size is %llu sectors.\n",
  319. mdname(mddev),
  320. (unsigned long long)mddev->array_sectors);
  321. /* calculate the max read-ahead size.
  322. * For read-ahead of large files to be effective, we need to
  323. * readahead at least twice a whole stripe. i.e. number of devices
  324. * multiplied by chunk size times 2.
  325. * If an individual device has an ra_pages greater than the
  326. * chunk size, then we will not drive that device as hard as it
  327. * wants. We consider this a configuration error: a larger
  328. * chunksize should be used in that case.
  329. */
  330. {
  331. int stripe = mddev->raid_disks *
  332. (mddev->chunk_sectors << 9) / PAGE_SIZE;
  333. if (mddev->queue->backing_dev_info.ra_pages < 2* stripe)
  334. mddev->queue->backing_dev_info.ra_pages = 2* stripe;
  335. }
  336. blk_queue_merge_bvec(mddev->queue, raid0_mergeable_bvec);
  337. dump_zones(mddev);
  338. md_integrity_register(mddev);
  339. return 0;
  340. }
  341. static int raid0_stop(mddev_t *mddev)
  342. {
  343. raid0_conf_t *conf = mddev->private;
  344. blk_sync_queue(mddev->queue); /* the unplug fn references 'conf'*/
  345. kfree(conf->strip_zone);
  346. kfree(conf->devlist);
  347. kfree(conf);
  348. mddev->private = NULL;
  349. return 0;
  350. }
  351. /* Find the zone which holds a particular offset
  352. * Update *sectorp to be an offset in that zone
  353. */
  354. static struct strip_zone *find_zone(struct raid0_private_data *conf,
  355. sector_t *sectorp)
  356. {
  357. int i;
  358. struct strip_zone *z = conf->strip_zone;
  359. sector_t sector = *sectorp;
  360. for (i = 0; i < conf->nr_strip_zones; i++)
  361. if (sector < z[i].zone_end) {
  362. if (i)
  363. *sectorp = sector - z[i-1].zone_end;
  364. return z + i;
  365. }
  366. BUG();
  367. }
  368. /*
  369. * remaps the bio to the target device. we separate two flows.
  370. * power 2 flow and a general flow for the sake of perfromance
  371. */
  372. static mdk_rdev_t *map_sector(mddev_t *mddev, struct strip_zone *zone,
  373. sector_t sector, sector_t *sector_offset)
  374. {
  375. unsigned int sect_in_chunk;
  376. sector_t chunk;
  377. raid0_conf_t *conf = mddev->private;
  378. int raid_disks = conf->strip_zone[0].nb_dev;
  379. unsigned int chunk_sects = mddev->chunk_sectors;
  380. if (is_power_of_2(chunk_sects)) {
  381. int chunksect_bits = ffz(~chunk_sects);
  382. /* find the sector offset inside the chunk */
  383. sect_in_chunk = sector & (chunk_sects - 1);
  384. sector >>= chunksect_bits;
  385. /* chunk in zone */
  386. chunk = *sector_offset;
  387. /* quotient is the chunk in real device*/
  388. sector_div(chunk, zone->nb_dev << chunksect_bits);
  389. } else{
  390. sect_in_chunk = sector_div(sector, chunk_sects);
  391. chunk = *sector_offset;
  392. sector_div(chunk, chunk_sects * zone->nb_dev);
  393. }
  394. /*
  395. * position the bio over the real device
  396. * real sector = chunk in device + starting of zone
  397. * + the position in the chunk
  398. */
  399. *sector_offset = (chunk * chunk_sects) + sect_in_chunk;
  400. return conf->devlist[(zone - conf->strip_zone)*raid_disks
  401. + sector_div(sector, zone->nb_dev)];
  402. }
  403. /*
  404. * Is io distribute over 1 or more chunks ?
  405. */
  406. static inline int is_io_in_chunk_boundary(mddev_t *mddev,
  407. unsigned int chunk_sects, struct bio *bio)
  408. {
  409. if (likely(is_power_of_2(chunk_sects))) {
  410. return chunk_sects >= ((bio->bi_sector & (chunk_sects-1))
  411. + (bio->bi_size >> 9));
  412. } else{
  413. sector_t sector = bio->bi_sector;
  414. return chunk_sects >= (sector_div(sector, chunk_sects)
  415. + (bio->bi_size >> 9));
  416. }
  417. }
  418. static int raid0_make_request(mddev_t *mddev, struct bio *bio)
  419. {
  420. unsigned int chunk_sects;
  421. sector_t sector_offset;
  422. struct strip_zone *zone;
  423. mdk_rdev_t *tmp_dev;
  424. if (unlikely(bio->bi_rw & REQ_FLUSH)) {
  425. md_flush_request(mddev, bio);
  426. return 0;
  427. }
  428. chunk_sects = mddev->chunk_sectors;
  429. if (unlikely(!is_io_in_chunk_boundary(mddev, chunk_sects, bio))) {
  430. sector_t sector = bio->bi_sector;
  431. struct bio_pair *bp;
  432. /* Sanity check -- queue functions should prevent this happening */
  433. if (bio->bi_vcnt != 1 ||
  434. bio->bi_idx != 0)
  435. goto bad_map;
  436. /* This is a one page bio that upper layers
  437. * refuse to split for us, so we need to split it.
  438. */
  439. if (likely(is_power_of_2(chunk_sects)))
  440. bp = bio_split(bio, chunk_sects - (sector &
  441. (chunk_sects-1)));
  442. else
  443. bp = bio_split(bio, chunk_sects -
  444. sector_div(sector, chunk_sects));
  445. if (raid0_make_request(mddev, &bp->bio1))
  446. generic_make_request(&bp->bio1);
  447. if (raid0_make_request(mddev, &bp->bio2))
  448. generic_make_request(&bp->bio2);
  449. bio_pair_release(bp);
  450. return 0;
  451. }
  452. sector_offset = bio->bi_sector;
  453. zone = find_zone(mddev->private, &sector_offset);
  454. tmp_dev = map_sector(mddev, zone, bio->bi_sector,
  455. &sector_offset);
  456. bio->bi_bdev = tmp_dev->bdev;
  457. bio->bi_sector = sector_offset + zone->dev_start +
  458. tmp_dev->data_offset;
  459. /*
  460. * Let the main block layer submit the IO and resolve recursion:
  461. */
  462. return 1;
  463. bad_map:
  464. printk("md/raid0:%s: make_request bug: can't convert block across chunks"
  465. " or bigger than %dk %llu %d\n",
  466. mdname(mddev), chunk_sects / 2,
  467. (unsigned long long)bio->bi_sector, bio->bi_size >> 10);
  468. bio_io_error(bio);
  469. return 0;
  470. }
  471. static void raid0_status(struct seq_file *seq, mddev_t *mddev)
  472. {
  473. #undef MD_DEBUG
  474. #ifdef MD_DEBUG
  475. int j, k, h;
  476. char b[BDEVNAME_SIZE];
  477. raid0_conf_t *conf = mddev->private;
  478. int raid_disks = conf->strip_zone[0].nb_dev;
  479. sector_t zone_size;
  480. sector_t zone_start = 0;
  481. h = 0;
  482. for (j = 0; j < conf->nr_strip_zones; j++) {
  483. seq_printf(seq, " z%d", j);
  484. seq_printf(seq, "=[");
  485. for (k = 0; k < conf->strip_zone[j].nb_dev; k++)
  486. seq_printf(seq, "%s/", bdevname(
  487. conf->devlist[j*raid_disks + k]
  488. ->bdev, b));
  489. zone_size = conf->strip_zone[j].zone_end - zone_start;
  490. seq_printf(seq, "] ze=%lld ds=%lld s=%lld\n",
  491. (unsigned long long)zone_start>>1,
  492. (unsigned long long)conf->strip_zone[j].dev_start>>1,
  493. (unsigned long long)zone_size>>1);
  494. zone_start = conf->strip_zone[j].zone_end;
  495. }
  496. #endif
  497. seq_printf(seq, " %dk chunks", mddev->chunk_sectors / 2);
  498. return;
  499. }
  500. static void *raid0_takeover_raid45(mddev_t *mddev)
  501. {
  502. mdk_rdev_t *rdev;
  503. raid0_conf_t *priv_conf;
  504. if (mddev->degraded != 1) {
  505. printk(KERN_ERR "md/raid0:%s: raid5 must be degraded! Degraded disks: %d\n",
  506. mdname(mddev),
  507. mddev->degraded);
  508. return ERR_PTR(-EINVAL);
  509. }
  510. list_for_each_entry(rdev, &mddev->disks, same_set) {
  511. /* check slot number for a disk */
  512. if (rdev->raid_disk == mddev->raid_disks-1) {
  513. printk(KERN_ERR "md/raid0:%s: raid5 must have missing parity disk!\n",
  514. mdname(mddev));
  515. return ERR_PTR(-EINVAL);
  516. }
  517. }
  518. /* Set new parameters */
  519. mddev->new_level = 0;
  520. mddev->new_layout = 0;
  521. mddev->new_chunk_sectors = mddev->chunk_sectors;
  522. mddev->raid_disks--;
  523. mddev->delta_disks = -1;
  524. /* make sure it will be not marked as dirty */
  525. mddev->recovery_cp = MaxSector;
  526. create_strip_zones(mddev, &priv_conf);
  527. return priv_conf;
  528. }
  529. static void *raid0_takeover_raid10(mddev_t *mddev)
  530. {
  531. raid0_conf_t *priv_conf;
  532. /* Check layout:
  533. * - far_copies must be 1
  534. * - near_copies must be 2
  535. * - disks number must be even
  536. * - all mirrors must be already degraded
  537. */
  538. if (mddev->layout != ((1 << 8) + 2)) {
  539. printk(KERN_ERR "md/raid0:%s:: Raid0 cannot takover layout: 0x%x\n",
  540. mdname(mddev),
  541. mddev->layout);
  542. return ERR_PTR(-EINVAL);
  543. }
  544. if (mddev->raid_disks & 1) {
  545. printk(KERN_ERR "md/raid0:%s: Raid0 cannot takover Raid10 with odd disk number.\n",
  546. mdname(mddev));
  547. return ERR_PTR(-EINVAL);
  548. }
  549. if (mddev->degraded != (mddev->raid_disks>>1)) {
  550. printk(KERN_ERR "md/raid0:%s: All mirrors must be already degraded!\n",
  551. mdname(mddev));
  552. return ERR_PTR(-EINVAL);
  553. }
  554. /* Set new parameters */
  555. mddev->new_level = 0;
  556. mddev->new_layout = 0;
  557. mddev->new_chunk_sectors = mddev->chunk_sectors;
  558. mddev->delta_disks = - mddev->raid_disks / 2;
  559. mddev->raid_disks += mddev->delta_disks;
  560. mddev->degraded = 0;
  561. /* make sure it will be not marked as dirty */
  562. mddev->recovery_cp = MaxSector;
  563. create_strip_zones(mddev, &priv_conf);
  564. return priv_conf;
  565. }
  566. static void *raid0_takeover_raid1(mddev_t *mddev)
  567. {
  568. raid0_conf_t *priv_conf;
  569. /* Check layout:
  570. * - (N - 1) mirror drives must be already faulty
  571. */
  572. if ((mddev->raid_disks - 1) != mddev->degraded) {
  573. printk(KERN_ERR "md/raid0:%s: (N - 1) mirrors drives must be already faulty!\n",
  574. mdname(mddev));
  575. return ERR_PTR(-EINVAL);
  576. }
  577. /* Set new parameters */
  578. mddev->new_level = 0;
  579. mddev->new_layout = 0;
  580. mddev->new_chunk_sectors = 128; /* by default set chunk size to 64k */
  581. mddev->delta_disks = 1 - mddev->raid_disks;
  582. /* make sure it will be not marked as dirty */
  583. mddev->recovery_cp = MaxSector;
  584. create_strip_zones(mddev, &priv_conf);
  585. return priv_conf;
  586. }
  587. static void *raid0_takeover(mddev_t *mddev)
  588. {
  589. /* raid0 can take over:
  590. * raid4 - if all data disks are active.
  591. * raid5 - providing it is Raid4 layout and one disk is faulty
  592. * raid10 - assuming we have all necessary active disks
  593. * raid1 - with (N -1) mirror drives faulty
  594. */
  595. if (mddev->level == 4)
  596. return raid0_takeover_raid45(mddev);
  597. if (mddev->level == 5) {
  598. if (mddev->layout == ALGORITHM_PARITY_N)
  599. return raid0_takeover_raid45(mddev);
  600. printk(KERN_ERR "md/raid0:%s: Raid can only takeover Raid5 with layout: %d\n",
  601. mdname(mddev), ALGORITHM_PARITY_N);
  602. }
  603. if (mddev->level == 10)
  604. return raid0_takeover_raid10(mddev);
  605. if (mddev->level == 1)
  606. return raid0_takeover_raid1(mddev);
  607. printk(KERN_ERR "Takeover from raid%i to raid0 not supported\n",
  608. mddev->level);
  609. return ERR_PTR(-EINVAL);
  610. }
  611. static void raid0_quiesce(mddev_t *mddev, int state)
  612. {
  613. }
  614. static struct mdk_personality raid0_personality=
  615. {
  616. .name = "raid0",
  617. .level = 0,
  618. .owner = THIS_MODULE,
  619. .make_request = raid0_make_request,
  620. .run = raid0_run,
  621. .stop = raid0_stop,
  622. .status = raid0_status,
  623. .size = raid0_size,
  624. .takeover = raid0_takeover,
  625. .quiesce = raid0_quiesce,
  626. };
  627. static int __init raid0_init (void)
  628. {
  629. return register_md_personality (&raid0_personality);
  630. }
  631. static void raid0_exit (void)
  632. {
  633. unregister_md_personality (&raid0_personality);
  634. }
  635. module_init(raid0_init);
  636. module_exit(raid0_exit);
  637. MODULE_LICENSE("GPL");
  638. MODULE_DESCRIPTION("RAID0 (striping) personality for MD");
  639. MODULE_ALIAS("md-personality-2"); /* RAID0 */
  640. MODULE_ALIAS("md-raid0");
  641. MODULE_ALIAS("md-level-0");