blob: 190147c79e79fbbe9b0e2c0935aa7ac697464a1b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 linear.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
7 Linear mode management functions.
8
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2, or (at your option)
12 any later version.
13
14 You should have received a copy of the GNU General Public License
15 (for example /usr/src/linux/COPYING); if not, write to the Free
16 Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17*/
18
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/raid/linear.h>
20
Linus Torvalds1da177e2005-04-16 15:20:36 -070021/*
22 * find which device holds a particular offset
23 */
24static inline dev_info_t *which_dev(mddev_t *mddev, sector_t sector)
25{
26 dev_info_t *hash;
27 linear_conf_t *conf = mddev_to_conf(mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
29 /*
30 * sector_div(a,b) returns the remainer and sets a to a/b
31 */
Andre Nollab5bd5c2008-10-13 11:55:12 +110032 sector >>= conf->sector_shift;
33 (void)sector_div(sector, conf->spacing);
34 hash = conf->hash_table[sector];
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Andre Noll62838152008-10-13 11:55:12 +110036 while (sector >= hash->num_sectors + hash->start_sector)
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 hash++;
38 return hash;
39}
40
41/**
NeilBrown15945fe2005-09-09 16:23:47 -070042 * linear_mergeable_bvec -- tell bio layer if two requests can be merged
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 * @q: request queue
Alasdair G Kergoncc371e62008-07-03 09:53:43 +020044 * @bvm: properties of new bio
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 * @biovec: the request that could be merged to it.
46 *
47 * Return amount of bytes we can take at this offset
48 */
Alasdair G Kergoncc371e62008-07-03 09:53:43 +020049static int linear_mergeable_bvec(struct request_queue *q,
50 struct bvec_merge_data *bvm,
51 struct bio_vec *biovec)
Linus Torvalds1da177e2005-04-16 15:20:36 -070052{
53 mddev_t *mddev = q->queuedata;
54 dev_info_t *dev0;
Alasdair G Kergoncc371e62008-07-03 09:53:43 +020055 unsigned long maxsectors, bio_sectors = bvm->bi_size >> 9;
56 sector_t sector = bvm->bi_sector + get_start_sect(bvm->bi_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58 dev0 = which_dev(mddev, sector);
Andre Noll62838152008-10-13 11:55:12 +110059 maxsectors = dev0->num_sectors - (sector - dev0->start_sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
61 if (maxsectors < bio_sectors)
62 maxsectors = 0;
63 else
64 maxsectors -= bio_sectors;
65
66 if (maxsectors <= (PAGE_SIZE >> 9 ) && bio_sectors == 0)
67 return biovec->bv_len;
68 /* The bytes available at this offset could be really big,
69 * so we cap at 2^31 to avoid overflow */
70 if (maxsectors > (1 << (31-9)))
71 return 1<<31;
72 return maxsectors << 9;
73}
74
Jens Axboe165125e2007-07-24 09:28:11 +020075static void linear_unplug(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -070076{
77 mddev_t *mddev = q->queuedata;
78 linear_conf_t *conf = mddev_to_conf(mddev);
79 int i;
80
81 for (i=0; i < mddev->raid_disks; i++) {
Jens Axboe165125e2007-07-24 09:28:11 +020082 struct request_queue *r_queue = bdev_get_queue(conf->disks[i].rdev->bdev);
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -050083 blk_unplug(r_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 }
85}
86
NeilBrown26be34d2006-10-03 01:15:53 -070087static int linear_congested(void *data, int bits)
88{
89 mddev_t *mddev = data;
90 linear_conf_t *conf = mddev_to_conf(mddev);
91 int i, ret = 0;
92
93 for (i = 0; i < mddev->raid_disks && !ret ; i++) {
Jens Axboe165125e2007-07-24 09:28:11 +020094 struct request_queue *q = bdev_get_queue(conf->disks[i].rdev->bdev);
NeilBrown26be34d2006-10-03 01:15:53 -070095 ret |= bdi_congested(&q->backing_dev_info, bits);
96 }
97 return ret;
98}
99
NeilBrown7c7546c2006-06-26 00:27:41 -0700100static linear_conf_t *linear_conf(mddev_t *mddev, int raid_disks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101{
102 linear_conf_t *conf;
103 dev_info_t **table;
104 mdk_rdev_t *rdev;
105 int i, nb_zone, cnt;
Andre Noll23242fb2008-10-13 11:55:12 +1100106 sector_t min_sectors;
Andre Noll62838152008-10-13 11:55:12 +1100107 sector_t curr_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 struct list_head *tmp;
109
NeilBrown7c7546c2006-06-26 00:27:41 -0700110 conf = kzalloc (sizeof (*conf) + raid_disks*sizeof(dev_info_t),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 GFP_KERNEL);
112 if (!conf)
NeilBrown7c7546c2006-06-26 00:27:41 -0700113 return NULL;
114
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 cnt = 0;
Andre Nolld6e22152008-07-21 17:05:25 +1000116 conf->array_sectors = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
NeilBrownd089c6a2008-02-06 01:39:59 -0800118 rdev_for_each(rdev, tmp, mddev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 int j = rdev->raid_disk;
120 dev_info_t *disk = conf->disks + j;
121
Nikanth Karthikesan13864512008-06-28 08:31:19 +1000122 if (j < 0 || j >= raid_disks || disk->rdev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 printk("linear: disk numbering problem. Aborting!\n");
124 goto out;
125 }
126
127 disk->rdev = rdev;
128
129 blk_queue_stack_limits(mddev->queue,
130 rdev->bdev->bd_disk->queue);
131 /* as we don't honour merge_bvec_fn, we must never risk
132 * violating it, so limit ->max_sector to one PAGE, as
133 * a one page request is never in violation.
134 */
135 if (rdev->bdev->bd_disk->queue->merge_bvec_fn &&
136 mddev->queue->max_sectors > (PAGE_SIZE>>9))
137 blk_queue_max_sectors(mddev->queue, PAGE_SIZE>>9);
138
Andre Noll62838152008-10-13 11:55:12 +1100139 disk->num_sectors = rdev->size * 2;
Andre Nolld6e22152008-07-21 17:05:25 +1000140 conf->array_sectors += rdev->size * 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 cnt++;
143 }
NeilBrown7c7546c2006-06-26 00:27:41 -0700144 if (cnt != raid_disks) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 printk("linear: not enough drives present. Aborting!\n");
146 goto out;
147 }
148
Andre Noll23242fb2008-10-13 11:55:12 +1100149 min_sectors = conf->array_sectors;
150 sector_div(min_sectors, PAGE_SIZE/sizeof(struct dev_info *));
NeilBrown15945fe2005-09-09 16:23:47 -0700151
Andre Noll23242fb2008-10-13 11:55:12 +1100152 /* min_sectors is the minimum spacing that will fit the hash
NeilBrown15945fe2005-09-09 16:23:47 -0700153 * table in one PAGE. This may be much smaller than needed.
154 * We find the smallest non-terminal set of consecutive devices
Andre Noll23242fb2008-10-13 11:55:12 +1100155 * that is larger than min_sectors and use the size of that as
NeilBrown15945fe2005-09-09 16:23:47 -0700156 * the actual spacing
157 */
Andre Nollab5bd5c2008-10-13 11:55:12 +1100158 conf->spacing = conf->array_sectors;
NeilBrown15945fe2005-09-09 16:23:47 -0700159 for (i=0; i < cnt-1 ; i++) {
Andre Noll23242fb2008-10-13 11:55:12 +1100160 sector_t tmp = 0;
NeilBrown15945fe2005-09-09 16:23:47 -0700161 int j;
Andre Noll23242fb2008-10-13 11:55:12 +1100162 for (j = i; j < cnt - 1 && tmp < min_sectors; j++)
163 tmp += conf->disks[j].num_sectors;
Andre Nollab5bd5c2008-10-13 11:55:12 +1100164 if (tmp >= min_sectors && tmp < conf->spacing)
165 conf->spacing = tmp;
NeilBrown15945fe2005-09-09 16:23:47 -0700166 }
167
Andre Nollab5bd5c2008-10-13 11:55:12 +1100168 /* spacing may be too large for sector_div to work with,
NeilBrown15945fe2005-09-09 16:23:47 -0700169 * so we might need to pre-shift
170 */
Andre Nollab5bd5c2008-10-13 11:55:12 +1100171 conf->sector_shift = 0;
NeilBrown15945fe2005-09-09 16:23:47 -0700172 if (sizeof(sector_t) > sizeof(u32)) {
Andre Nollab5bd5c2008-10-13 11:55:12 +1100173 sector_t space = conf->spacing;
NeilBrown15945fe2005-09-09 16:23:47 -0700174 while (space > (sector_t)(~(u32)0)) {
175 space >>= 1;
Andre Nollab5bd5c2008-10-13 11:55:12 +1100176 conf->sector_shift++;
NeilBrown15945fe2005-09-09 16:23:47 -0700177 }
178 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 /*
180 * This code was restructured to work around a gcc-2.95.3 internal
181 * compiler error. Alter it with care.
182 */
183 {
184 sector_t sz;
185 unsigned round;
186 unsigned long base;
187
Andre Nollab5bd5c2008-10-13 11:55:12 +1100188 sz = conf->array_sectors >> conf->sector_shift;
NeilBrown15945fe2005-09-09 16:23:47 -0700189 sz += 1; /* force round-up */
Andre Nollab5bd5c2008-10-13 11:55:12 +1100190 base = conf->spacing >> conf->sector_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 round = sector_div(sz, base);
NeilBrown15945fe2005-09-09 16:23:47 -0700192 nb_zone = sz + (round ? 1 : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 }
NeilBrown15945fe2005-09-09 16:23:47 -0700194 BUG_ON(nb_zone > PAGE_SIZE / sizeof(struct dev_info *));
195
196 conf->hash_table = kmalloc (sizeof (struct dev_info *) * nb_zone,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 GFP_KERNEL);
198 if (!conf->hash_table)
199 goto out;
200
201 /*
202 * Here we generate the linear hash table
NeilBrown15945fe2005-09-09 16:23:47 -0700203 * First calculate the device offsets.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 */
Andre Noll62838152008-10-13 11:55:12 +1100205 conf->disks[0].start_sector = 0;
NeilBrowna778b732007-05-23 13:58:10 -0700206 for (i = 1; i < raid_disks; i++)
Andre Noll62838152008-10-13 11:55:12 +1100207 conf->disks[i].start_sector =
208 conf->disks[i-1].start_sector +
209 conf->disks[i-1].num_sectors;
NeilBrown15945fe2005-09-09 16:23:47 -0700210
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 table = conf->hash_table;
NeilBrown15945fe2005-09-09 16:23:47 -0700212 i = 0;
Andre Noll62838152008-10-13 11:55:12 +1100213 for (curr_sector = 0;
214 curr_sector < conf->array_sectors;
Andre Nollab5bd5c2008-10-13 11:55:12 +1100215 curr_sector += conf->spacing) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
NeilBrowna778b732007-05-23 13:58:10 -0700217 while (i < raid_disks-1 &&
Andre Noll62838152008-10-13 11:55:12 +1100218 curr_sector >= conf->disks[i+1].start_sector)
NeilBrown15945fe2005-09-09 16:23:47 -0700219 i++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
NeilBrown15945fe2005-09-09 16:23:47 -0700221 *table ++ = conf->disks + i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 }
NeilBrown15945fe2005-09-09 16:23:47 -0700223
Andre Nollab5bd5c2008-10-13 11:55:12 +1100224 if (conf->sector_shift) {
225 conf->spacing >>= conf->sector_shift;
226 /* round spacing up so that when we divide by it,
NeilBrown15945fe2005-09-09 16:23:47 -0700227 * we err on the side of "too-low", which is safest.
228 */
Andre Nollab5bd5c2008-10-13 11:55:12 +1100229 conf->spacing++;
NeilBrown15945fe2005-09-09 16:23:47 -0700230 }
231
232 BUG_ON(table - conf->hash_table > nb_zone);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
NeilBrown7c7546c2006-06-26 00:27:41 -0700234 return conf;
235
236out:
237 kfree(conf);
238 return NULL;
239}
240
241static int linear_run (mddev_t *mddev)
242{
243 linear_conf_t *conf;
244
Neil Browne7e72bf2008-05-14 16:05:54 -0700245 mddev->queue->queue_lock = &mddev->queue->__queue_lock;
NeilBrown7c7546c2006-06-26 00:27:41 -0700246 conf = linear_conf(mddev, mddev->raid_disks);
247
248 if (!conf)
249 return 1;
250 mddev->private = conf;
Andre Nolld6e22152008-07-21 17:05:25 +1000251 mddev->array_sectors = conf->array_sectors;
NeilBrown7c7546c2006-06-26 00:27:41 -0700252
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 blk_queue_merge_bvec(mddev->queue, linear_mergeable_bvec);
254 mddev->queue->unplug_fn = linear_unplug;
NeilBrown26be34d2006-10-03 01:15:53 -0700255 mddev->queue->backing_dev_info.congested_fn = linear_congested;
256 mddev->queue->backing_dev_info.congested_data = mddev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 return 0;
NeilBrown7c7546c2006-06-26 00:27:41 -0700258}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
NeilBrown7c7546c2006-06-26 00:27:41 -0700260static int linear_add(mddev_t *mddev, mdk_rdev_t *rdev)
261{
262 /* Adding a drive to a linear array allows the array to grow.
263 * It is permitted if the new drive has a matching superblock
264 * already on it, with raid_disk equal to raid_disks.
265 * It is achieved by creating a new linear_private_data structure
266 * and swapping it in in-place of the current one.
267 * The current one is never freed until the array is stopped.
268 * This avoids races.
269 */
270 linear_conf_t *newconf;
271
NeilBrowna778b732007-05-23 13:58:10 -0700272 if (rdev->saved_raid_disk != mddev->raid_disks)
NeilBrown7c7546c2006-06-26 00:27:41 -0700273 return -EINVAL;
274
NeilBrowna778b732007-05-23 13:58:10 -0700275 rdev->raid_disk = rdev->saved_raid_disk;
276
NeilBrown7c7546c2006-06-26 00:27:41 -0700277 newconf = linear_conf(mddev,mddev->raid_disks+1);
278
279 if (!newconf)
280 return -ENOMEM;
281
282 newconf->prev = mddev_to_conf(mddev);
283 mddev->private = newconf;
284 mddev->raid_disks++;
Andre Nolld6e22152008-07-21 17:05:25 +1000285 mddev->array_sectors = newconf->array_sectors;
Andre Nollf233ea52008-07-21 17:05:22 +1000286 set_capacity(mddev->gendisk, mddev->array_sectors);
NeilBrown7c7546c2006-06-26 00:27:41 -0700287 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288}
289
290static int linear_stop (mddev_t *mddev)
291{
292 linear_conf_t *conf = mddev_to_conf(mddev);
293
294 blk_sync_queue(mddev->queue); /* the unplug fn references 'conf'*/
NeilBrown7c7546c2006-06-26 00:27:41 -0700295 do {
296 linear_conf_t *t = conf->prev;
297 kfree(conf->hash_table);
298 kfree(conf);
299 conf = t;
300 } while (conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
302 return 0;
303}
304
Jens Axboe165125e2007-07-24 09:28:11 +0200305static int linear_make_request (struct request_queue *q, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306{
Jens Axboea3623572005-11-01 09:26:16 +0100307 const int rw = bio_data_dir(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 mddev_t *mddev = q->queuedata;
309 dev_info_t *tmp_dev;
Tejun Heoc9959052008-08-25 19:47:21 +0900310 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
NeilBrowne5dcdd82005-09-09 16:23:41 -0700312 if (unlikely(bio_barrier(bio))) {
NeilBrown6712ecf2007-09-27 12:47:43 +0200313 bio_endio(bio, -EOPNOTSUPP);
NeilBrowne5dcdd82005-09-09 16:23:41 -0700314 return 0;
315 }
316
Tejun Heo074a7ac2008-08-25 19:56:14 +0900317 cpu = part_stat_lock();
318 part_stat_inc(cpu, &mddev->gendisk->part0, ios[rw]);
319 part_stat_add(cpu, &mddev->gendisk->part0, sectors[rw],
320 bio_sectors(bio));
321 part_stat_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
323 tmp_dev = which_dev(mddev, bio->bi_sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
Andre Noll62838152008-10-13 11:55:12 +1100325 if (unlikely(bio->bi_sector >= (tmp_dev->num_sectors +
326 tmp_dev->start_sector)
327 || (bio->bi_sector <
328 tmp_dev->start_sector))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 char b[BDEVNAME_SIZE];
330
Andre Noll62838152008-10-13 11:55:12 +1100331 printk("linear_make_request: Sector %llu out of bounds on "
332 "dev %s: %llu sectors, offset %llu\n",
333 (unsigned long long)bio->bi_sector,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 bdevname(tmp_dev->rdev->bdev, b),
Andre Noll62838152008-10-13 11:55:12 +1100335 (unsigned long long)tmp_dev->num_sectors,
336 (unsigned long long)tmp_dev->start_sector);
NeilBrown6712ecf2007-09-27 12:47:43 +0200337 bio_io_error(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 return 0;
339 }
340 if (unlikely(bio->bi_sector + (bio->bi_size >> 9) >
Andre Noll62838152008-10-13 11:55:12 +1100341 tmp_dev->start_sector + tmp_dev->num_sectors)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 /* This bio crosses a device boundary, so we have to
343 * split it.
344 */
345 struct bio_pair *bp;
Andre Noll62838152008-10-13 11:55:12 +1100346
Denis ChengRq6feef532008-10-09 08:57:05 +0200347 bp = bio_split(bio,
Andre Noll62838152008-10-13 11:55:12 +1100348 tmp_dev->start_sector + tmp_dev->num_sectors
349 - bio->bi_sector);
350
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 if (linear_make_request(q, &bp->bio1))
352 generic_make_request(&bp->bio1);
353 if (linear_make_request(q, &bp->bio2))
354 generic_make_request(&bp->bio2);
355 bio_pair_release(bp);
356 return 0;
357 }
358
359 bio->bi_bdev = tmp_dev->rdev->bdev;
Andre Noll62838152008-10-13 11:55:12 +1100360 bio->bi_sector = bio->bi_sector - tmp_dev->start_sector
361 + tmp_dev->rdev->data_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
363 return 1;
364}
365
366static void linear_status (struct seq_file *seq, mddev_t *mddev)
367{
368
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 seq_printf(seq, " %dk rounding", mddev->chunk_size/1024);
370}
371
372
NeilBrown2604b702006-01-06 00:20:36 -0800373static struct mdk_personality linear_personality =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374{
375 .name = "linear",
NeilBrown2604b702006-01-06 00:20:36 -0800376 .level = LEVEL_LINEAR,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 .owner = THIS_MODULE,
378 .make_request = linear_make_request,
379 .run = linear_run,
380 .stop = linear_stop,
381 .status = linear_status,
NeilBrown7c7546c2006-06-26 00:27:41 -0700382 .hot_add_disk = linear_add,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383};
384
385static int __init linear_init (void)
386{
NeilBrown2604b702006-01-06 00:20:36 -0800387 return register_md_personality (&linear_personality);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388}
389
390static void linear_exit (void)
391{
NeilBrown2604b702006-01-06 00:20:36 -0800392 unregister_md_personality (&linear_personality);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393}
394
395
396module_init(linear_init);
397module_exit(linear_exit);
398MODULE_LICENSE("GPL");
NeilBrownd9d166c2006-01-06 00:20:51 -0800399MODULE_ALIAS("md-personality-1"); /* LINEAR - deprecated*/
400MODULE_ALIAS("md-linear");
NeilBrown2604b702006-01-06 00:20:36 -0800401MODULE_ALIAS("md-level--1");