blob: 377cf2a3c3331e5276c19563b7883e7c4797c425 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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
9 RAID-0 management functions.
10
11 This program is free software; you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 2, or (at your option)
14 any later version.
15
16 You should have received a copy of the GNU General Public License
17 (for example /usr/src/linux/COPYING); if not, write to the Free
18 Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19*/
20
NeilBrownbff61972009-03-31 14:33:13 +110021#include <linux/blkdev.h>
NeilBrownbff61972009-03-31 14:33:13 +110022#include <linux/seq_file.h>
NeilBrown43b2e5d2009-03-31 14:33:13 +110023#include "md.h"
Christoph Hellwigef740c32009-03-31 14:27:03 +110024#include "raid0.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Jens Axboe165125e2007-07-24 09:28:11 +020026static void raid0_unplug(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -070027{
28 mddev_t *mddev = q->queuedata;
NeilBrown070ec552009-06-16 16:54:21 +100029 raid0_conf_t *conf = mddev->private;
NeilBrownb4145792009-06-16 16:50:52 +100030 mdk_rdev_t **devlist = conf->devlist;
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 int i;
32
33 for (i=0; i<mddev->raid_disks; i++) {
Jens Axboe165125e2007-07-24 09:28:11 +020034 struct request_queue *r_queue = bdev_get_queue(devlist[i]->bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -050036 blk_unplug(r_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 }
38}
39
NeilBrown26be34d2006-10-03 01:15:53 -070040static int raid0_congested(void *data, int bits)
41{
42 mddev_t *mddev = data;
NeilBrown070ec552009-06-16 16:54:21 +100043 raid0_conf_t *conf = mddev->private;
NeilBrownb4145792009-06-16 16:50:52 +100044 mdk_rdev_t **devlist = conf->devlist;
NeilBrown26be34d2006-10-03 01:15:53 -070045 int i, ret = 0;
46
NeilBrown3fa841d2009-09-23 18:10:29 +100047 if (mddev_congested(mddev, bits))
48 return 1;
49
NeilBrown26be34d2006-10-03 01:15:53 -070050 for (i = 0; i < mddev->raid_disks && !ret ; i++) {
Jens Axboe165125e2007-07-24 09:28:11 +020051 struct request_queue *q = bdev_get_queue(devlist[i]->bdev);
NeilBrown26be34d2006-10-03 01:15:53 -070052
53 ret |= bdi_congested(&q->backing_dev_info, bits);
54 }
55 return ret;
56}
57
raz ben yehuda46994192009-06-16 17:00:54 +100058/*
59 * inform the user of the raid configuration
60*/
61static void dump_zones(mddev_t *mddev)
62{
63 int j, k, h;
64 sector_t zone_size = 0;
65 sector_t zone_start = 0;
66 char b[BDEVNAME_SIZE];
67 raid0_conf_t *conf = mddev->private;
68 printk(KERN_INFO "******* %s configuration *********\n",
69 mdname(mddev));
70 h = 0;
71 for (j = 0; j < conf->nr_strip_zones; j++) {
72 printk(KERN_INFO "zone%d=[", j);
73 for (k = 0; k < conf->strip_zone[j].nb_dev; k++)
74 printk("%s/",
75 bdevname(conf->devlist[j*mddev->raid_disks
76 + k]->bdev, b));
77 printk("]\n");
78
79 zone_size = conf->strip_zone[j].zone_end - zone_start;
80 printk(KERN_INFO " zone offset=%llukb "
81 "device offset=%llukb size=%llukb\n",
82 (unsigned long long)zone_start>>1,
83 (unsigned long long)conf->strip_zone[j].dev_start>>1,
84 (unsigned long long)zone_size>>1);
85 zone_start = conf->strip_zone[j].zone_end;
86 }
87 printk(KERN_INFO "**********************************\n\n");
88}
89
Andre Nolled7b0032009-06-16 16:47:36 +100090static int create_strip_zones(mddev_t *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070091{
NeilBrowna9f326e2009-09-23 18:06:41 +100092 int i, c, err;
NeilBrown49f357a22009-06-16 16:50:35 +100093 sector_t curr_zone_end, sectors;
NeilBrownb4145792009-06-16 16:50:52 +100094 mdk_rdev_t *smallest, *rdev1, *rdev2, *rdev, **dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 struct strip_zone *zone;
96 int cnt;
97 char b[BDEVNAME_SIZE];
Andre Nolled7b0032009-06-16 16:47:36 +100098 raid0_conf_t *conf = kzalloc(sizeof(*conf), GFP_KERNEL);
99
100 if (!conf)
101 return -ENOMEM;
Cheng Renquan159ec1f2009-01-09 08:31:08 +1100102 list_for_each_entry(rdev1, &mddev->disks, same_set) {
Andre Noll0825b87a2009-01-09 08:31:07 +1100103 printk(KERN_INFO "raid0: looking at %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 bdevname(rdev1->bdev,b));
105 c = 0;
NeilBrown13f26822009-06-18 08:48:55 +1000106
107 /* round size to chunk_size */
108 sectors = rdev1->sectors;
109 sector_div(sectors, mddev->chunk_sectors);
110 rdev1->sectors = sectors * mddev->chunk_sectors;
111
Cheng Renquan159ec1f2009-01-09 08:31:08 +1100112 list_for_each_entry(rdev2, &mddev->disks, same_set) {
Andre Noll0825b87a2009-01-09 08:31:07 +1100113 printk(KERN_INFO "raid0: comparing %s(%llu)",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 bdevname(rdev1->bdev,b),
Andre Nolldd8ac332009-03-31 14:33:13 +1100115 (unsigned long long)rdev1->sectors);
Andre Noll0825b87a2009-01-09 08:31:07 +1100116 printk(KERN_INFO " with %s(%llu)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 bdevname(rdev2->bdev,b),
Andre Nolldd8ac332009-03-31 14:33:13 +1100118 (unsigned long long)rdev2->sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 if (rdev2 == rdev1) {
Andre Noll0825b87a2009-01-09 08:31:07 +1100120 printk(KERN_INFO "raid0: END\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 break;
122 }
Andre Nolldd8ac332009-03-31 14:33:13 +1100123 if (rdev2->sectors == rdev1->sectors) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 /*
125 * Not unique, don't count it as a new
126 * group
127 */
Andre Noll0825b87a2009-01-09 08:31:07 +1100128 printk(KERN_INFO "raid0: EQUAL\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 c = 1;
130 break;
131 }
Andre Noll0825b87a2009-01-09 08:31:07 +1100132 printk(KERN_INFO "raid0: NOT EQUAL\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 }
134 if (!c) {
Andre Noll0825b87a2009-01-09 08:31:07 +1100135 printk(KERN_INFO "raid0: ==> UNIQUE\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 conf->nr_strip_zones++;
Andre Noll0825b87a2009-01-09 08:31:07 +1100137 printk(KERN_INFO "raid0: %d zones\n",
138 conf->nr_strip_zones);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 }
140 }
Andre Noll0825b87a2009-01-09 08:31:07 +1100141 printk(KERN_INFO "raid0: FINAL %d zones\n", conf->nr_strip_zones);
Andre Nolled7b0032009-06-16 16:47:36 +1000142 err = -ENOMEM;
NeilBrown9ffae0c2006-01-06 00:20:32 -0800143 conf->strip_zone = kzalloc(sizeof(struct strip_zone)*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 conf->nr_strip_zones, GFP_KERNEL);
145 if (!conf->strip_zone)
Andre Nolled7b0032009-06-16 16:47:36 +1000146 goto abort;
NeilBrown9ffae0c2006-01-06 00:20:32 -0800147 conf->devlist = kzalloc(sizeof(mdk_rdev_t*)*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 conf->nr_strip_zones*mddev->raid_disks,
149 GFP_KERNEL);
150 if (!conf->devlist)
Andre Nolled7b0032009-06-16 16:47:36 +1000151 goto abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 /* The first zone must contain all devices, so here we check that
154 * there is a proper alignment of slots to devices and find them all
155 */
156 zone = &conf->strip_zone[0];
157 cnt = 0;
158 smallest = NULL;
NeilBrownb4145792009-06-16 16:50:52 +1000159 dev = conf->devlist;
Andre Nolled7b0032009-06-16 16:47:36 +1000160 err = -EINVAL;
Cheng Renquan159ec1f2009-01-09 08:31:08 +1100161 list_for_each_entry(rdev1, &mddev->disks, same_set) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 int j = rdev1->raid_disk;
163
164 if (j < 0 || j >= mddev->raid_disks) {
Andre Noll0825b87a2009-01-09 08:31:07 +1100165 printk(KERN_ERR "raid0: bad disk number %d - "
166 "aborting!\n", j);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 goto abort;
168 }
NeilBrownb4145792009-06-16 16:50:52 +1000169 if (dev[j]) {
Andre Noll0825b87a2009-01-09 08:31:07 +1100170 printk(KERN_ERR "raid0: multiple devices for %d - "
171 "aborting!\n", j);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 goto abort;
173 }
NeilBrownb4145792009-06-16 16:50:52 +1000174 dev[j] = rdev1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
Martin K. Petersen8f6c2e42009-07-01 11:13:45 +1000176 disk_stack_limits(mddev->gendisk, rdev1->bdev,
177 rdev1->data_offset << 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 /* as we don't honour merge_bvec_fn, we must never risk
NeilBrown627a2d32010-03-08 16:44:38 +1100179 * violating it, so limit ->max_segments to 1, lying within
180 * a single page.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 */
182
NeilBrown627a2d32010-03-08 16:44:38 +1100183 if (rdev1->bdev->bd_disk->queue->merge_bvec_fn) {
184 blk_queue_max_segments(mddev->queue, 1);
185 blk_queue_segment_boundary(mddev->queue,
186 PAGE_CACHE_SIZE - 1);
187 }
Andre Nolldd8ac332009-03-31 14:33:13 +1100188 if (!smallest || (rdev1->sectors < smallest->sectors))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 smallest = rdev1;
190 cnt++;
191 }
192 if (cnt != mddev->raid_disks) {
Andre Noll0825b87a2009-01-09 08:31:07 +1100193 printk(KERN_ERR "raid0: too few disks (%d of %d) - "
194 "aborting!\n", cnt, mddev->raid_disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 goto abort;
196 }
197 zone->nb_dev = cnt;
NeilBrown49f357a22009-06-16 16:50:35 +1000198 zone->zone_end = smallest->sectors * cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
NeilBrown49f357a22009-06-16 16:50:35 +1000200 curr_zone_end = zone->zone_end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
202 /* now do the other zones */
203 for (i = 1; i < conf->nr_strip_zones; i++)
204 {
NeilBrowna9f326e2009-09-23 18:06:41 +1000205 int j;
206
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 zone = conf->strip_zone + i;
NeilBrownb4145792009-06-16 16:50:52 +1000208 dev = conf->devlist + i * mddev->raid_disks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
Andre Noll0825b87a2009-01-09 08:31:07 +1100210 printk(KERN_INFO "raid0: zone %d\n", i);
NeilBrownd27a43ab2009-06-16 16:46:46 +1000211 zone->dev_start = smallest->sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 smallest = NULL;
213 c = 0;
214
215 for (j=0; j<cnt; j++) {
NeilBrownb4145792009-06-16 16:50:52 +1000216 rdev = conf->devlist[j];
Andre Noll0825b87a2009-01-09 08:31:07 +1100217 printk(KERN_INFO "raid0: checking %s ...",
218 bdevname(rdev->bdev, b));
NeilBrownd27a43ab2009-06-16 16:46:46 +1000219 if (rdev->sectors <= zone->dev_start) {
Andre Noll0825b87a2009-01-09 08:31:07 +1100220 printk(KERN_INFO " nope.\n");
Andre Nolldd8ac332009-03-31 14:33:13 +1100221 continue;
222 }
223 printk(KERN_INFO " contained as device %d\n", c);
NeilBrownb4145792009-06-16 16:50:52 +1000224 dev[c] = rdev;
Andre Nolldd8ac332009-03-31 14:33:13 +1100225 c++;
226 if (!smallest || rdev->sectors < smallest->sectors) {
227 smallest = rdev;
228 printk(KERN_INFO " (%llu) is smallest!.\n",
229 (unsigned long long)rdev->sectors);
230 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 }
232
233 zone->nb_dev = c;
NeilBrown49f357a22009-06-16 16:50:35 +1000234 sectors = (smallest->sectors - zone->dev_start) * c;
Andre Noll83838ed2009-01-09 08:31:07 +1100235 printk(KERN_INFO "raid0: zone->nb_dev: %d, sectors: %llu\n",
NeilBrown49f357a22009-06-16 16:50:35 +1000236 zone->nb_dev, (unsigned long long)sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
NeilBrown49f357a22009-06-16 16:50:35 +1000238 curr_zone_end += sectors;
NeilBrownd27a43ab2009-06-16 16:46:46 +1000239 zone->zone_end = curr_zone_end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
Andre Noll6b8796c2009-01-09 08:31:07 +1100241 printk(KERN_INFO "raid0: current zone start: %llu\n",
NeilBrownd27a43ab2009-06-16 16:46:46 +1000242 (unsigned long long)smallest->sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 mddev->queue->unplug_fn = raid0_unplug;
NeilBrown26be34d2006-10-03 01:15:53 -0700245 mddev->queue->backing_dev_info.congested_fn = raid0_congested;
246 mddev->queue->backing_dev_info.congested_data = mddev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
raz ben yehuda92e59b62009-06-16 17:00:57 +1000248 /*
249 * now since we have the hard sector sizes, we can make sure
250 * chunk size is a multiple of that sector size
251 */
Andre Noll9d8f0362009-06-18 08:45:01 +1000252 if ((mddev->chunk_sectors << 9) % queue_logical_block_size(mddev->queue)) {
raz ben yehuda92e59b62009-06-16 17:00:57 +1000253 printk(KERN_ERR "%s chunk_size of %d not valid\n",
254 mdname(mddev),
Andre Noll9d8f0362009-06-18 08:45:01 +1000255 mddev->chunk_sectors << 9);
raz ben yehuda92e59b62009-06-16 17:00:57 +1000256 goto abort;
257 }
Martin K. Petersen8f6c2e42009-07-01 11:13:45 +1000258
259 blk_queue_io_min(mddev->queue, mddev->chunk_sectors << 9);
260 blk_queue_io_opt(mddev->queue,
261 (mddev->chunk_sectors << 9) * mddev->raid_disks);
262
Andre Noll0825b87a2009-01-09 08:31:07 +1100263 printk(KERN_INFO "raid0: done.\n");
Andre Nolled7b0032009-06-16 16:47:36 +1000264 mddev->private = conf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 return 0;
Andre Noll5568a602009-06-16 16:47:21 +1000266abort:
Andre Nolled7b0032009-06-16 16:47:36 +1000267 kfree(conf->strip_zone);
268 kfree(conf->devlist);
269 kfree(conf);
270 mddev->private = NULL;
271 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272}
273
274/**
275 * raid0_mergeable_bvec -- tell bio layer if a two requests can be merged
276 * @q: request queue
Alasdair G Kergoncc371e62008-07-03 09:53:43 +0200277 * @bvm: properties of new bio
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 * @biovec: the request that could be merged to it.
279 *
280 * Return amount of bytes we can accept at this offset
281 */
Alasdair G Kergoncc371e62008-07-03 09:53:43 +0200282static int raid0_mergeable_bvec(struct request_queue *q,
283 struct bvec_merge_data *bvm,
284 struct bio_vec *biovec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285{
286 mddev_t *mddev = q->queuedata;
Alasdair G Kergoncc371e62008-07-03 09:53:43 +0200287 sector_t sector = bvm->bi_sector + get_start_sect(bvm->bi_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 int max;
Andre Noll9d8f0362009-06-18 08:45:01 +1000289 unsigned int chunk_sectors = mddev->chunk_sectors;
Alasdair G Kergoncc371e62008-07-03 09:53:43 +0200290 unsigned int bio_sectors = bvm->bi_size >> 9;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
NeilBrownd6e412e2009-06-18 08:47:00 +1000292 if (is_power_of_2(chunk_sectors))
raz ben yehudafbb704e2009-06-16 17:02:05 +1000293 max = (chunk_sectors - ((sector & (chunk_sectors-1))
294 + bio_sectors)) << 9;
295 else
296 max = (chunk_sectors - (sector_div(sector, chunk_sectors)
297 + bio_sectors)) << 9;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 if (max < 0) max = 0; /* bio_add cannot handle a negative return */
299 if (max <= biovec->bv_len && bio_sectors == 0)
300 return biovec->bv_len;
301 else
302 return max;
303}
304
Dan Williams80c3a6c2009-03-17 18:10:40 -0700305static sector_t raid0_size(mddev_t *mddev, sector_t sectors, int raid_disks)
306{
307 sector_t array_sectors = 0;
308 mdk_rdev_t *rdev;
309
310 WARN_ONCE(sectors || raid_disks,
311 "%s does not support generic reshape\n", __func__);
312
313 list_for_each_entry(rdev, &mddev->disks, same_set)
314 array_sectors += rdev->sectors;
315
316 return array_sectors;
317}
318
Andre Noll8f79cfc2009-06-16 16:47:10 +1000319static int raid0_run(mddev_t *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320{
Andre Noll5568a602009-06-16 16:47:21 +1000321 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
Andre Noll9d8f0362009-06-18 08:45:01 +1000323 if (mddev->chunk_sectors == 0) {
raz ben yehudafbb704e2009-06-16 17:02:05 +1000324 printk(KERN_ERR "md/raid0: chunk size must be set.\n");
NeilBrown2604b702006-01-06 00:20:36 -0800325 return -EINVAL;
326 }
Andre Noll0894cc32009-06-18 08:49:23 +1000327 if (md_check_no_bitmap(mddev))
328 return -EINVAL;
Martin K. Petersen086fa5f2010-02-26 00:20:38 -0500329 blk_queue_max_hw_sectors(mddev->queue, mddev->chunk_sectors);
Neil Browne7e72bf2008-05-14 16:05:54 -0700330 mddev->queue->queue_lock = &mddev->queue->__queue_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
Andre Noll5568a602009-06-16 16:47:21 +1000332 ret = create_strip_zones(mddev);
333 if (ret < 0)
Andre Nolled7b0032009-06-16 16:47:36 +1000334 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
336 /* calculate array device size */
Dan Williams1f403622009-03-31 14:59:03 +1100337 md_set_array_sectors(mddev, raid0_size(mddev, 0, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
Andre Nollccacc7d2009-01-09 08:31:08 +1100339 printk(KERN_INFO "raid0 : md_size is %llu sectors.\n",
340 (unsigned long long)mddev->array_sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 /* calculate the max read-ahead size.
342 * For read-ahead of large files to be effective, we need to
343 * readahead at least twice a whole stripe. i.e. number of devices
344 * multiplied by chunk size times 2.
345 * If an individual device has an ra_pages greater than the
346 * chunk size, then we will not drive that device as hard as it
347 * wants. We consider this a configuration error: a larger
348 * chunksize should be used in that case.
349 */
350 {
Andre Noll9d8f0362009-06-18 08:45:01 +1000351 int stripe = mddev->raid_disks *
352 (mddev->chunk_sectors << 9) / PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 if (mddev->queue->backing_dev_info.ra_pages < 2* stripe)
354 mddev->queue->backing_dev_info.ra_pages = 2* stripe;
355 }
356
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 blk_queue_merge_bvec(mddev->queue, raid0_mergeable_bvec);
raz ben yehuda46994192009-06-16 17:00:54 +1000358 dump_zones(mddev);
Andre Nollac5e7112009-08-03 10:59:47 +1000359 md_integrity_register(mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361}
362
Andre Nollfb5ab4b2009-06-16 16:48:19 +1000363static int raid0_stop(mddev_t *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364{
NeilBrown070ec552009-06-16 16:54:21 +1000365 raid0_conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
367 blk_sync_queue(mddev->queue); /* the unplug fn references 'conf'*/
Jesper Juhl990a8ba2005-06-21 17:17:30 -0700368 kfree(conf->strip_zone);
Andre Nollfb5ab4b2009-06-16 16:48:19 +1000369 kfree(conf->devlist);
Jesper Juhl990a8ba2005-06-21 17:17:30 -0700370 kfree(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 mddev->private = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 return 0;
373}
374
NeilBrown49f357a22009-06-16 16:50:35 +1000375/* Find the zone which holds a particular offset
376 * Update *sectorp to be an offset in that zone
377 */
Andre Nolldc582662009-06-16 16:18:43 +1000378static struct strip_zone *find_zone(struct raid0_private_data *conf,
NeilBrown49f357a22009-06-16 16:50:35 +1000379 sector_t *sectorp)
Andre Nolldc582662009-06-16 16:18:43 +1000380{
381 int i;
382 struct strip_zone *z = conf->strip_zone;
NeilBrown49f357a22009-06-16 16:50:35 +1000383 sector_t sector = *sectorp;
Andre Nolldc582662009-06-16 16:18:43 +1000384
385 for (i = 0; i < conf->nr_strip_zones; i++)
NeilBrown49f357a22009-06-16 16:50:35 +1000386 if (sector < z[i].zone_end) {
387 if (i)
388 *sectorp = sector - z[i-1].zone_end;
Andre Nolldc582662009-06-16 16:18:43 +1000389 return z + i;
NeilBrown49f357a22009-06-16 16:50:35 +1000390 }
Andre Nolldc582662009-06-16 16:18:43 +1000391 BUG();
392}
393
raz ben yehudafbb704e2009-06-16 17:02:05 +1000394/*
395 * remaps the bio to the target device. we separate two flows.
396 * power 2 flow and a general flow for the sake of perfromance
397*/
398static mdk_rdev_t *map_sector(mddev_t *mddev, struct strip_zone *zone,
399 sector_t sector, sector_t *sector_offset)
400{
401 unsigned int sect_in_chunk;
402 sector_t chunk;
403 raid0_conf_t *conf = mddev->private;
Andre Noll9d8f0362009-06-18 08:45:01 +1000404 unsigned int chunk_sects = mddev->chunk_sectors;
raz ben yehudafbb704e2009-06-16 17:02:05 +1000405
NeilBrownd6e412e2009-06-18 08:47:00 +1000406 if (is_power_of_2(chunk_sects)) {
raz ben yehudafbb704e2009-06-16 17:02:05 +1000407 int chunksect_bits = ffz(~chunk_sects);
408 /* find the sector offset inside the chunk */
409 sect_in_chunk = sector & (chunk_sects - 1);
410 sector >>= chunksect_bits;
411 /* chunk in zone */
412 chunk = *sector_offset;
413 /* quotient is the chunk in real device*/
414 sector_div(chunk, zone->nb_dev << chunksect_bits);
415 } else{
416 sect_in_chunk = sector_div(sector, chunk_sects);
417 chunk = *sector_offset;
418 sector_div(chunk, chunk_sects * zone->nb_dev);
419 }
420 /*
421 * position the bio over the real device
422 * real sector = chunk in device + starting of zone
423 * + the position in the chunk
424 */
425 *sector_offset = (chunk * chunk_sects) + sect_in_chunk;
426 return conf->devlist[(zone - conf->strip_zone)*mddev->raid_disks
427 + sector_div(sector, zone->nb_dev)];
428}
429
430/*
431 * Is io distribute over 1 or more chunks ?
432*/
433static inline int is_io_in_chunk_boundary(mddev_t *mddev,
434 unsigned int chunk_sects, struct bio *bio)
435{
NeilBrownd6e412e2009-06-18 08:47:00 +1000436 if (likely(is_power_of_2(chunk_sects))) {
raz ben yehudafbb704e2009-06-16 17:02:05 +1000437 return chunk_sects >= ((bio->bi_sector & (chunk_sects-1))
438 + (bio->bi_size >> 9));
439 } else{
440 sector_t sector = bio->bi_sector;
441 return chunk_sects >= (sector_div(sector, chunk_sects)
442 + (bio->bi_size >> 9));
443 }
444}
445
446static int raid0_make_request(struct request_queue *q, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447{
448 mddev_t *mddev = q->queuedata;
raz ben yehudafbb704e2009-06-16 17:02:05 +1000449 unsigned int chunk_sects;
450 sector_t sector_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 struct strip_zone *zone;
452 mdk_rdev_t *tmp_dev;
Jens Axboea3623572005-11-01 09:26:16 +0100453 const int rw = bio_data_dir(bio);
Tejun Heoc9959052008-08-25 19:47:21 +0900454 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
Jens Axboe1f98a132009-09-11 14:32:04 +0200456 if (unlikely(bio_rw_flagged(bio, BIO_RW_BARRIER))) {
NeilBrowna2826aa2009-12-14 12:49:49 +1100457 md_barrier_request(mddev, bio);
NeilBrowne5dcdd82005-09-09 16:23:41 -0700458 return 0;
459 }
460
Tejun Heo074a7ac2008-08-25 19:56:14 +0900461 cpu = part_stat_lock();
462 part_stat_inc(cpu, &mddev->gendisk->part0, ios[rw]);
463 part_stat_add(cpu, &mddev->gendisk->part0, sectors[rw],
464 bio_sectors(bio));
465 part_stat_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
Andre Noll9d8f0362009-06-18 08:45:01 +1000467 chunk_sects = mddev->chunk_sectors;
raz ben yehudafbb704e2009-06-16 17:02:05 +1000468 if (unlikely(!is_io_in_chunk_boundary(mddev, chunk_sects, bio))) {
469 sector_t sector = bio->bi_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 struct bio_pair *bp;
471 /* Sanity check -- queue functions should prevent this happening */
472 if (bio->bi_vcnt != 1 ||
473 bio->bi_idx != 0)
474 goto bad_map;
475 /* This is a one page bio that upper layers
476 * refuse to split for us, so we need to split it.
477 */
NeilBrownd6e412e2009-06-18 08:47:00 +1000478 if (likely(is_power_of_2(chunk_sects)))
raz ben yehudafbb704e2009-06-16 17:02:05 +1000479 bp = bio_split(bio, chunk_sects - (sector &
480 (chunk_sects-1)));
481 else
482 bp = bio_split(bio, chunk_sects -
483 sector_div(sector, chunk_sects));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 if (raid0_make_request(q, &bp->bio1))
485 generic_make_request(&bp->bio1);
486 if (raid0_make_request(q, &bp->bio2))
487 generic_make_request(&bp->bio2);
488
489 bio_pair_release(bp);
490 return 0;
491 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
raz ben yehudafbb704e2009-06-16 17:02:05 +1000493 sector_offset = bio->bi_sector;
494 zone = find_zone(mddev->private, &sector_offset);
495 tmp_dev = map_sector(mddev, zone, bio->bi_sector,
496 &sector_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 bio->bi_bdev = tmp_dev->bdev;
raz ben yehudafbb704e2009-06-16 17:02:05 +1000498 bio->bi_sector = sector_offset + zone->dev_start +
499 tmp_dev->data_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 /*
501 * Let the main block layer submit the IO and resolve recursion:
502 */
503 return 1;
504
505bad_map:
506 printk("raid0_make_request bug: can't convert block across chunks"
Andre Nolla4712002009-01-09 08:31:06 +1100507 " or bigger than %dk %llu %d\n", chunk_sects / 2,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 (unsigned long long)bio->bi_sector, bio->bi_size >> 10);
509
NeilBrown6712ecf2007-09-27 12:47:43 +0200510 bio_io_error(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 return 0;
512}
NeilBrown8299d7f2007-10-16 23:30:53 -0700513
raz ben yehuda1b961422009-06-16 16:57:40 +1000514static void raid0_status(struct seq_file *seq, mddev_t *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515{
516#undef MD_DEBUG
517#ifdef MD_DEBUG
518 int j, k, h;
519 char b[BDEVNAME_SIZE];
NeilBrown070ec552009-06-16 16:54:21 +1000520 raid0_conf_t *conf = mddev->private;
NeilBrown8299d7f2007-10-16 23:30:53 -0700521
raz ben yehuda1b961422009-06-16 16:57:40 +1000522 sector_t zone_size;
523 sector_t zone_start = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 h = 0;
raz ben yehuda1b961422009-06-16 16:57:40 +1000525
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 for (j = 0; j < conf->nr_strip_zones; j++) {
527 seq_printf(seq, " z%d", j);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 seq_printf(seq, "=[");
529 for (k = 0; k < conf->strip_zone[j].nb_dev; k++)
NeilBrown8299d7f2007-10-16 23:30:53 -0700530 seq_printf(seq, "%s/", bdevname(
raz ben yehuda1b961422009-06-16 16:57:40 +1000531 conf->devlist[j*mddev->raid_disks + k]
532 ->bdev, b));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
raz ben yehuda1b961422009-06-16 16:57:40 +1000534 zone_size = conf->strip_zone[j].zone_end - zone_start;
535 seq_printf(seq, "] ze=%lld ds=%lld s=%lld\n",
536 (unsigned long long)zone_start>>1,
537 (unsigned long long)conf->strip_zone[j].dev_start>>1,
538 (unsigned long long)zone_size>>1);
539 zone_start = conf->strip_zone[j].zone_end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 }
541#endif
Andre Noll9d8f0362009-06-18 08:45:01 +1000542 seq_printf(seq, " %dk chunks", mddev->chunk_sectors / 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 return;
544}
545
NeilBrown2604b702006-01-06 00:20:36 -0800546static struct mdk_personality raid0_personality=
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547{
548 .name = "raid0",
NeilBrown2604b702006-01-06 00:20:36 -0800549 .level = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 .owner = THIS_MODULE,
551 .make_request = raid0_make_request,
552 .run = raid0_run,
553 .stop = raid0_stop,
554 .status = raid0_status,
Dan Williams80c3a6c2009-03-17 18:10:40 -0700555 .size = raid0_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556};
557
558static int __init raid0_init (void)
559{
NeilBrown2604b702006-01-06 00:20:36 -0800560 return register_md_personality (&raid0_personality);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561}
562
563static void raid0_exit (void)
564{
NeilBrown2604b702006-01-06 00:20:36 -0800565 unregister_md_personality (&raid0_personality);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566}
567
568module_init(raid0_init);
569module_exit(raid0_exit);
570MODULE_LICENSE("GPL");
NeilBrown0efb9e62009-12-14 12:49:58 +1100571MODULE_DESCRIPTION("RAID0 (striping) personality for MD");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572MODULE_ALIAS("md-personality-2"); /* RAID0 */
NeilBrownd9d166c2006-01-06 00:20:51 -0800573MODULE_ALIAS("md-raid0");
NeilBrown2604b702006-01-06 00:20:36 -0800574MODULE_ALIAS("md-level-0");