blob: 09a64b9cbde8e18d13e7589173b69cbc6c6f8513 [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
19#include <linux/module.h>
20
21#include <linux/raid/md.h>
22#include <linux/slab.h>
23#include <linux/raid/linear.h>
24
25#define MAJOR_NR MD_MAJOR
26#define MD_DRIVER
27#define MD_PERSONALITY
28
29/*
30 * find which device holds a particular offset
31 */
32static inline dev_info_t *which_dev(mddev_t *mddev, sector_t sector)
33{
34 dev_info_t *hash;
35 linear_conf_t *conf = mddev_to_conf(mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
37 /*
38 * sector_div(a,b) returns the remainer and sets a to a/b
39 */
Andre Nollab5bd5c2008-10-13 11:55:12 +110040 sector >>= conf->sector_shift;
41 (void)sector_div(sector, conf->spacing);
42 hash = conf->hash_table[sector];
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Andre Noll62838152008-10-13 11:55:12 +110044 while (sector >= hash->num_sectors + hash->start_sector)
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 hash++;
46 return hash;
47}
48
49/**
NeilBrown15945fe2005-09-09 16:23:47 -070050 * linear_mergeable_bvec -- tell bio layer if two requests can be merged
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 * @q: request queue
Alasdair G Kergoncc371e62008-07-03 09:53:43 +020052 * @bvm: properties of new bio
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 * @biovec: the request that could be merged to it.
54 *
55 * Return amount of bytes we can take at this offset
56 */
Alasdair G Kergoncc371e62008-07-03 09:53:43 +020057static int linear_mergeable_bvec(struct request_queue *q,
58 struct bvec_merge_data *bvm,
59 struct bio_vec *biovec)
Linus Torvalds1da177e2005-04-16 15:20:36 -070060{
61 mddev_t *mddev = q->queuedata;
62 dev_info_t *dev0;
Alasdair G Kergoncc371e62008-07-03 09:53:43 +020063 unsigned long maxsectors, bio_sectors = bvm->bi_size >> 9;
64 sector_t sector = bvm->bi_sector + get_start_sect(bvm->bi_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
66 dev0 = which_dev(mddev, sector);
Andre Noll62838152008-10-13 11:55:12 +110067 maxsectors = dev0->num_sectors - (sector - dev0->start_sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69 if (maxsectors < bio_sectors)
70 maxsectors = 0;
71 else
72 maxsectors -= bio_sectors;
73
74 if (maxsectors <= (PAGE_SIZE >> 9 ) && bio_sectors == 0)
75 return biovec->bv_len;
76 /* The bytes available at this offset could be really big,
77 * so we cap at 2^31 to avoid overflow */
78 if (maxsectors > (1 << (31-9)))
79 return 1<<31;
80 return maxsectors << 9;
81}
82
Jens Axboe165125e2007-07-24 09:28:11 +020083static void linear_unplug(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -070084{
85 mddev_t *mddev = q->queuedata;
86 linear_conf_t *conf = mddev_to_conf(mddev);
87 int i;
88
89 for (i=0; i < mddev->raid_disks; i++) {
Jens Axboe165125e2007-07-24 09:28:11 +020090 struct request_queue *r_queue = bdev_get_queue(conf->disks[i].rdev->bdev);
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -050091 blk_unplug(r_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 }
93}
94
NeilBrown26be34d2006-10-03 01:15:53 -070095static int linear_congested(void *data, int bits)
96{
97 mddev_t *mddev = data;
98 linear_conf_t *conf = mddev_to_conf(mddev);
99 int i, ret = 0;
100
101 for (i = 0; i < mddev->raid_disks && !ret ; i++) {
Jens Axboe165125e2007-07-24 09:28:11 +0200102 struct request_queue *q = bdev_get_queue(conf->disks[i].rdev->bdev);
NeilBrown26be34d2006-10-03 01:15:53 -0700103 ret |= bdi_congested(&q->backing_dev_info, bits);
104 }
105 return ret;
106}
107
NeilBrown7c7546c2006-06-26 00:27:41 -0700108static linear_conf_t *linear_conf(mddev_t *mddev, int raid_disks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109{
110 linear_conf_t *conf;
111 dev_info_t **table;
112 mdk_rdev_t *rdev;
113 int i, nb_zone, cnt;
Andre Noll23242fb2008-10-13 11:55:12 +1100114 sector_t min_sectors;
Andre Noll62838152008-10-13 11:55:12 +1100115 sector_t curr_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 struct list_head *tmp;
117
NeilBrown7c7546c2006-06-26 00:27:41 -0700118 conf = kzalloc (sizeof (*conf) + raid_disks*sizeof(dev_info_t),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 GFP_KERNEL);
120 if (!conf)
NeilBrown7c7546c2006-06-26 00:27:41 -0700121 return NULL;
122
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 cnt = 0;
Andre Nolld6e22152008-07-21 17:05:25 +1000124 conf->array_sectors = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
NeilBrownd089c6a2008-02-06 01:39:59 -0800126 rdev_for_each(rdev, tmp, mddev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 int j = rdev->raid_disk;
128 dev_info_t *disk = conf->disks + j;
129
Nikanth Karthikesan13864512008-06-28 08:31:19 +1000130 if (j < 0 || j >= raid_disks || disk->rdev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 printk("linear: disk numbering problem. Aborting!\n");
132 goto out;
133 }
134
135 disk->rdev = rdev;
136
137 blk_queue_stack_limits(mddev->queue,
138 rdev->bdev->bd_disk->queue);
139 /* as we don't honour merge_bvec_fn, we must never risk
140 * violating it, so limit ->max_sector to one PAGE, as
141 * a one page request is never in violation.
142 */
143 if (rdev->bdev->bd_disk->queue->merge_bvec_fn &&
144 mddev->queue->max_sectors > (PAGE_SIZE>>9))
145 blk_queue_max_sectors(mddev->queue, PAGE_SIZE>>9);
146
Andre Noll62838152008-10-13 11:55:12 +1100147 disk->num_sectors = rdev->size * 2;
Andre Nolld6e22152008-07-21 17:05:25 +1000148 conf->array_sectors += rdev->size * 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 cnt++;
151 }
NeilBrown7c7546c2006-06-26 00:27:41 -0700152 if (cnt != raid_disks) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 printk("linear: not enough drives present. Aborting!\n");
154 goto out;
155 }
156
Andre Noll23242fb2008-10-13 11:55:12 +1100157 min_sectors = conf->array_sectors;
158 sector_div(min_sectors, PAGE_SIZE/sizeof(struct dev_info *));
NeilBrown15945fe2005-09-09 16:23:47 -0700159
Andre Noll23242fb2008-10-13 11:55:12 +1100160 /* min_sectors is the minimum spacing that will fit the hash
NeilBrown15945fe2005-09-09 16:23:47 -0700161 * table in one PAGE. This may be much smaller than needed.
162 * We find the smallest non-terminal set of consecutive devices
Andre Noll23242fb2008-10-13 11:55:12 +1100163 * that is larger than min_sectors and use the size of that as
NeilBrown15945fe2005-09-09 16:23:47 -0700164 * the actual spacing
165 */
Andre Nollab5bd5c2008-10-13 11:55:12 +1100166 conf->spacing = conf->array_sectors;
NeilBrown15945fe2005-09-09 16:23:47 -0700167 for (i=0; i < cnt-1 ; i++) {
Andre Noll23242fb2008-10-13 11:55:12 +1100168 sector_t tmp = 0;
NeilBrown15945fe2005-09-09 16:23:47 -0700169 int j;
Andre Noll23242fb2008-10-13 11:55:12 +1100170 for (j = i; j < cnt - 1 && tmp < min_sectors; j++)
171 tmp += conf->disks[j].num_sectors;
Andre Nollab5bd5c2008-10-13 11:55:12 +1100172 if (tmp >= min_sectors && tmp < conf->spacing)
173 conf->spacing = tmp;
NeilBrown15945fe2005-09-09 16:23:47 -0700174 }
175
Andre Nollab5bd5c2008-10-13 11:55:12 +1100176 /* spacing may be too large for sector_div to work with,
NeilBrown15945fe2005-09-09 16:23:47 -0700177 * so we might need to pre-shift
178 */
Andre Nollab5bd5c2008-10-13 11:55:12 +1100179 conf->sector_shift = 0;
NeilBrown15945fe2005-09-09 16:23:47 -0700180 if (sizeof(sector_t) > sizeof(u32)) {
Andre Nollab5bd5c2008-10-13 11:55:12 +1100181 sector_t space = conf->spacing;
NeilBrown15945fe2005-09-09 16:23:47 -0700182 while (space > (sector_t)(~(u32)0)) {
183 space >>= 1;
Andre Nollab5bd5c2008-10-13 11:55:12 +1100184 conf->sector_shift++;
NeilBrown15945fe2005-09-09 16:23:47 -0700185 }
186 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 /*
188 * This code was restructured to work around a gcc-2.95.3 internal
189 * compiler error. Alter it with care.
190 */
191 {
192 sector_t sz;
193 unsigned round;
194 unsigned long base;
195
Andre Nollab5bd5c2008-10-13 11:55:12 +1100196 sz = conf->array_sectors >> conf->sector_shift;
NeilBrown15945fe2005-09-09 16:23:47 -0700197 sz += 1; /* force round-up */
Andre Nollab5bd5c2008-10-13 11:55:12 +1100198 base = conf->spacing >> conf->sector_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 round = sector_div(sz, base);
NeilBrown15945fe2005-09-09 16:23:47 -0700200 nb_zone = sz + (round ? 1 : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 }
NeilBrown15945fe2005-09-09 16:23:47 -0700202 BUG_ON(nb_zone > PAGE_SIZE / sizeof(struct dev_info *));
203
204 conf->hash_table = kmalloc (sizeof (struct dev_info *) * nb_zone,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 GFP_KERNEL);
206 if (!conf->hash_table)
207 goto out;
208
209 /*
210 * Here we generate the linear hash table
NeilBrown15945fe2005-09-09 16:23:47 -0700211 * First calculate the device offsets.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 */
Andre Noll62838152008-10-13 11:55:12 +1100213 conf->disks[0].start_sector = 0;
NeilBrowna778b732007-05-23 13:58:10 -0700214 for (i = 1; i < raid_disks; i++)
Andre Noll62838152008-10-13 11:55:12 +1100215 conf->disks[i].start_sector =
216 conf->disks[i-1].start_sector +
217 conf->disks[i-1].num_sectors;
NeilBrown15945fe2005-09-09 16:23:47 -0700218
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 table = conf->hash_table;
NeilBrown15945fe2005-09-09 16:23:47 -0700220 i = 0;
Andre Noll62838152008-10-13 11:55:12 +1100221 for (curr_sector = 0;
222 curr_sector < conf->array_sectors;
Andre Nollab5bd5c2008-10-13 11:55:12 +1100223 curr_sector += conf->spacing) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
NeilBrowna778b732007-05-23 13:58:10 -0700225 while (i < raid_disks-1 &&
Andre Noll62838152008-10-13 11:55:12 +1100226 curr_sector >= conf->disks[i+1].start_sector)
NeilBrown15945fe2005-09-09 16:23:47 -0700227 i++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
NeilBrown15945fe2005-09-09 16:23:47 -0700229 *table ++ = conf->disks + i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 }
NeilBrown15945fe2005-09-09 16:23:47 -0700231
Andre Nollab5bd5c2008-10-13 11:55:12 +1100232 if (conf->sector_shift) {
233 conf->spacing >>= conf->sector_shift;
234 /* round spacing up so that when we divide by it,
NeilBrown15945fe2005-09-09 16:23:47 -0700235 * we err on the side of "too-low", which is safest.
236 */
Andre Nollab5bd5c2008-10-13 11:55:12 +1100237 conf->spacing++;
NeilBrown15945fe2005-09-09 16:23:47 -0700238 }
239
240 BUG_ON(table - conf->hash_table > nb_zone);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
NeilBrown7c7546c2006-06-26 00:27:41 -0700242 return conf;
243
244out:
245 kfree(conf);
246 return NULL;
247}
248
249static int linear_run (mddev_t *mddev)
250{
251 linear_conf_t *conf;
252
Neil Browne7e72bf2008-05-14 16:05:54 -0700253 mddev->queue->queue_lock = &mddev->queue->__queue_lock;
NeilBrown7c7546c2006-06-26 00:27:41 -0700254 conf = linear_conf(mddev, mddev->raid_disks);
255
256 if (!conf)
257 return 1;
258 mddev->private = conf;
Andre Nolld6e22152008-07-21 17:05:25 +1000259 mddev->array_sectors = conf->array_sectors;
NeilBrown7c7546c2006-06-26 00:27:41 -0700260
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 blk_queue_merge_bvec(mddev->queue, linear_mergeable_bvec);
262 mddev->queue->unplug_fn = linear_unplug;
NeilBrown26be34d2006-10-03 01:15:53 -0700263 mddev->queue->backing_dev_info.congested_fn = linear_congested;
264 mddev->queue->backing_dev_info.congested_data = mddev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 return 0;
NeilBrown7c7546c2006-06-26 00:27:41 -0700266}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
NeilBrown7c7546c2006-06-26 00:27:41 -0700268static int linear_add(mddev_t *mddev, mdk_rdev_t *rdev)
269{
270 /* Adding a drive to a linear array allows the array to grow.
271 * It is permitted if the new drive has a matching superblock
272 * already on it, with raid_disk equal to raid_disks.
273 * It is achieved by creating a new linear_private_data structure
274 * and swapping it in in-place of the current one.
275 * The current one is never freed until the array is stopped.
276 * This avoids races.
277 */
278 linear_conf_t *newconf;
279
NeilBrowna778b732007-05-23 13:58:10 -0700280 if (rdev->saved_raid_disk != mddev->raid_disks)
NeilBrown7c7546c2006-06-26 00:27:41 -0700281 return -EINVAL;
282
NeilBrowna778b732007-05-23 13:58:10 -0700283 rdev->raid_disk = rdev->saved_raid_disk;
284
NeilBrown7c7546c2006-06-26 00:27:41 -0700285 newconf = linear_conf(mddev,mddev->raid_disks+1);
286
287 if (!newconf)
288 return -ENOMEM;
289
290 newconf->prev = mddev_to_conf(mddev);
291 mddev->private = newconf;
292 mddev->raid_disks++;
Andre Nolld6e22152008-07-21 17:05:25 +1000293 mddev->array_sectors = newconf->array_sectors;
Andre Nollf233ea52008-07-21 17:05:22 +1000294 set_capacity(mddev->gendisk, mddev->array_sectors);
NeilBrown7c7546c2006-06-26 00:27:41 -0700295 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296}
297
298static int linear_stop (mddev_t *mddev)
299{
300 linear_conf_t *conf = mddev_to_conf(mddev);
301
302 blk_sync_queue(mddev->queue); /* the unplug fn references 'conf'*/
NeilBrown7c7546c2006-06-26 00:27:41 -0700303 do {
304 linear_conf_t *t = conf->prev;
305 kfree(conf->hash_table);
306 kfree(conf);
307 conf = t;
308 } while (conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
310 return 0;
311}
312
Jens Axboe165125e2007-07-24 09:28:11 +0200313static int linear_make_request (struct request_queue *q, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314{
Jens Axboea3623572005-11-01 09:26:16 +0100315 const int rw = bio_data_dir(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 mddev_t *mddev = q->queuedata;
317 dev_info_t *tmp_dev;
Tejun Heoc9959052008-08-25 19:47:21 +0900318 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
NeilBrowne5dcdd82005-09-09 16:23:41 -0700320 if (unlikely(bio_barrier(bio))) {
NeilBrown6712ecf2007-09-27 12:47:43 +0200321 bio_endio(bio, -EOPNOTSUPP);
NeilBrowne5dcdd82005-09-09 16:23:41 -0700322 return 0;
323 }
324
Tejun Heo074a7ac2008-08-25 19:56:14 +0900325 cpu = part_stat_lock();
326 part_stat_inc(cpu, &mddev->gendisk->part0, ios[rw]);
327 part_stat_add(cpu, &mddev->gendisk->part0, sectors[rw],
328 bio_sectors(bio));
329 part_stat_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
331 tmp_dev = which_dev(mddev, bio->bi_sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
Andre Noll62838152008-10-13 11:55:12 +1100333 if (unlikely(bio->bi_sector >= (tmp_dev->num_sectors +
334 tmp_dev->start_sector)
335 || (bio->bi_sector <
336 tmp_dev->start_sector))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 char b[BDEVNAME_SIZE];
338
Andre Noll62838152008-10-13 11:55:12 +1100339 printk("linear_make_request: Sector %llu out of bounds on "
340 "dev %s: %llu sectors, offset %llu\n",
341 (unsigned long long)bio->bi_sector,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 bdevname(tmp_dev->rdev->bdev, b),
Andre Noll62838152008-10-13 11:55:12 +1100343 (unsigned long long)tmp_dev->num_sectors,
344 (unsigned long long)tmp_dev->start_sector);
NeilBrown6712ecf2007-09-27 12:47:43 +0200345 bio_io_error(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 return 0;
347 }
348 if (unlikely(bio->bi_sector + (bio->bi_size >> 9) >
Andre Noll62838152008-10-13 11:55:12 +1100349 tmp_dev->start_sector + tmp_dev->num_sectors)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 /* This bio crosses a device boundary, so we have to
351 * split it.
352 */
353 struct bio_pair *bp;
Andre Noll62838152008-10-13 11:55:12 +1100354
Denis ChengRq6feef532008-10-09 08:57:05 +0200355 bp = bio_split(bio,
Andre Noll62838152008-10-13 11:55:12 +1100356 tmp_dev->start_sector + tmp_dev->num_sectors
357 - bio->bi_sector);
358
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 if (linear_make_request(q, &bp->bio1))
360 generic_make_request(&bp->bio1);
361 if (linear_make_request(q, &bp->bio2))
362 generic_make_request(&bp->bio2);
363 bio_pair_release(bp);
364 return 0;
365 }
366
367 bio->bi_bdev = tmp_dev->rdev->bdev;
Andre Noll62838152008-10-13 11:55:12 +1100368 bio->bi_sector = bio->bi_sector - tmp_dev->start_sector
369 + tmp_dev->rdev->data_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
371 return 1;
372}
373
374static void linear_status (struct seq_file *seq, mddev_t *mddev)
375{
376
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 seq_printf(seq, " %dk rounding", mddev->chunk_size/1024);
378}
379
380
NeilBrown2604b702006-01-06 00:20:36 -0800381static struct mdk_personality linear_personality =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382{
383 .name = "linear",
NeilBrown2604b702006-01-06 00:20:36 -0800384 .level = LEVEL_LINEAR,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 .owner = THIS_MODULE,
386 .make_request = linear_make_request,
387 .run = linear_run,
388 .stop = linear_stop,
389 .status = linear_status,
NeilBrown7c7546c2006-06-26 00:27:41 -0700390 .hot_add_disk = linear_add,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391};
392
393static int __init linear_init (void)
394{
NeilBrown2604b702006-01-06 00:20:36 -0800395 return register_md_personality (&linear_personality);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396}
397
398static void linear_exit (void)
399{
NeilBrown2604b702006-01-06 00:20:36 -0800400 unregister_md_personality (&linear_personality);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401}
402
403
404module_init(linear_init);
405module_exit(linear_exit);
406MODULE_LICENSE("GPL");
NeilBrownd9d166c2006-01-06 00:20:51 -0800407MODULE_ALIAS("md-personality-1"); /* LINEAR - deprecated*/
408MODULE_ALIAS("md-linear");
NeilBrown2604b702006-01-06 00:20:36 -0800409MODULE_ALIAS("md-level--1");