raid0.c 19 KB

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