blob: 632898f3bc9833623f55b19cbff372238368d866 [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);
36 sector_t block = sector >> 1;
37
38 /*
39 * sector_div(a,b) returns the remainer and sets a to a/b
40 */
NeilBrown15945fe2005-09-09 16:23:47 -070041 block >>= conf->preshift;
42 (void)sector_div(block, conf->hash_spacing);
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 hash = conf->hash_table[block];
44
45 while ((sector>>1) >= (hash->size + hash->offset))
46 hash++;
47 return hash;
48}
49
50/**
NeilBrown15945fe2005-09-09 16:23:47 -070051 * linear_mergeable_bvec -- tell bio layer if two requests can be merged
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 * @q: request queue
Alasdair G Kergoncc371e62008-07-03 09:53:43 +020053 * @bvm: properties of new bio
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 * @biovec: the request that could be merged to it.
55 *
56 * Return amount of bytes we can take at this offset
57 */
Alasdair G Kergoncc371e62008-07-03 09:53:43 +020058static int linear_mergeable_bvec(struct request_queue *q,
59 struct bvec_merge_data *bvm,
60 struct bio_vec *biovec)
Linus Torvalds1da177e2005-04-16 15:20:36 -070061{
62 mddev_t *mddev = q->queuedata;
63 dev_info_t *dev0;
Alasdair G Kergoncc371e62008-07-03 09:53:43 +020064 unsigned long maxsectors, bio_sectors = bvm->bi_size >> 9;
65 sector_t sector = bvm->bi_sector + get_start_sect(bvm->bi_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
67 dev0 = which_dev(mddev, sector);
68 maxsectors = (dev0->size << 1) - (sector - (dev0->offset<<1));
69
70 if (maxsectors < bio_sectors)
71 maxsectors = 0;
72 else
73 maxsectors -= bio_sectors;
74
75 if (maxsectors <= (PAGE_SIZE >> 9 ) && bio_sectors == 0)
76 return biovec->bv_len;
77 /* The bytes available at this offset could be really big,
78 * so we cap at 2^31 to avoid overflow */
79 if (maxsectors > (1 << (31-9)))
80 return 1<<31;
81 return maxsectors << 9;
82}
83
Jens Axboe165125e2007-07-24 09:28:11 +020084static void linear_unplug(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -070085{
86 mddev_t *mddev = q->queuedata;
87 linear_conf_t *conf = mddev_to_conf(mddev);
88 int i;
89
90 for (i=0; i < mddev->raid_disks; i++) {
Jens Axboe165125e2007-07-24 09:28:11 +020091 struct request_queue *r_queue = bdev_get_queue(conf->disks[i].rdev->bdev);
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -050092 blk_unplug(r_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 }
94}
95
NeilBrown26be34d2006-10-03 01:15:53 -070096static int linear_congested(void *data, int bits)
97{
98 mddev_t *mddev = data;
99 linear_conf_t *conf = mddev_to_conf(mddev);
100 int i, ret = 0;
101
102 for (i = 0; i < mddev->raid_disks && !ret ; i++) {
Jens Axboe165125e2007-07-24 09:28:11 +0200103 struct request_queue *q = bdev_get_queue(conf->disks[i].rdev->bdev);
NeilBrown26be34d2006-10-03 01:15:53 -0700104 ret |= bdi_congested(&q->backing_dev_info, bits);
105 }
106 return ret;
107}
108
NeilBrown7c7546c2006-06-26 00:27:41 -0700109static linear_conf_t *linear_conf(mddev_t *mddev, int raid_disks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110{
111 linear_conf_t *conf;
112 dev_info_t **table;
113 mdk_rdev_t *rdev;
114 int i, nb_zone, cnt;
NeilBrown15945fe2005-09-09 16:23:47 -0700115 sector_t min_spacing;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 sector_t curr_offset;
117 struct list_head *tmp;
118
NeilBrown7c7546c2006-06-26 00:27:41 -0700119 conf = kzalloc (sizeof (*conf) + raid_disks*sizeof(dev_info_t),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 GFP_KERNEL);
121 if (!conf)
NeilBrown7c7546c2006-06-26 00:27:41 -0700122 return NULL;
123
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 cnt = 0;
Andre Nolld6e22152008-07-21 17:05:25 +1000125 conf->array_sectors = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
NeilBrownd089c6a2008-02-06 01:39:59 -0800127 rdev_for_each(rdev, tmp, mddev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 int j = rdev->raid_disk;
129 dev_info_t *disk = conf->disks + j;
130
Nikanth Karthikesan13864512008-06-28 08:31:19 +1000131 if (j < 0 || j >= raid_disks || disk->rdev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 printk("linear: disk numbering problem. Aborting!\n");
133 goto out;
134 }
135
136 disk->rdev = rdev;
137
138 blk_queue_stack_limits(mddev->queue,
139 rdev->bdev->bd_disk->queue);
140 /* as we don't honour merge_bvec_fn, we must never risk
141 * violating it, so limit ->max_sector to one PAGE, as
142 * a one page request is never in violation.
143 */
144 if (rdev->bdev->bd_disk->queue->merge_bvec_fn &&
145 mddev->queue->max_sectors > (PAGE_SIZE>>9))
146 blk_queue_max_sectors(mddev->queue, PAGE_SIZE>>9);
147
148 disk->size = rdev->size;
Andre Nolld6e22152008-07-21 17:05:25 +1000149 conf->array_sectors += rdev->size * 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 cnt++;
152 }
NeilBrown7c7546c2006-06-26 00:27:41 -0700153 if (cnt != raid_disks) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 printk("linear: not enough drives present. Aborting!\n");
155 goto out;
156 }
157
Andre Nolld6e22152008-07-21 17:05:25 +1000158 min_spacing = conf->array_sectors / 2;
NeilBrown15945fe2005-09-09 16:23:47 -0700159 sector_div(min_spacing, PAGE_SIZE/sizeof(struct dev_info *));
160
161 /* min_spacing is the minimum spacing that will fit the hash
162 * table in one PAGE. This may be much smaller than needed.
163 * We find the smallest non-terminal set of consecutive devices
Andre Nolle6113022008-10-13 11:55:12 +1100164 * that is larger than min_spacing and use the size of that as
NeilBrown15945fe2005-09-09 16:23:47 -0700165 * the actual spacing
166 */
Andre Nolld6e22152008-07-21 17:05:25 +1000167 conf->hash_spacing = conf->array_sectors / 2;
NeilBrown15945fe2005-09-09 16:23:47 -0700168 for (i=0; i < cnt-1 ; i++) {
169 sector_t sz = 0;
170 int j;
Andy Isaacsonbed31ed2007-03-16 13:38:04 -0800171 for (j = i; j < cnt - 1 && sz < min_spacing; j++)
NeilBrown15945fe2005-09-09 16:23:47 -0700172 sz += conf->disks[j].size;
173 if (sz >= min_spacing && sz < conf->hash_spacing)
174 conf->hash_spacing = sz;
175 }
176
177 /* hash_spacing may be too large for sector_div to work with,
178 * so we might need to pre-shift
179 */
180 conf->preshift = 0;
181 if (sizeof(sector_t) > sizeof(u32)) {
182 sector_t space = conf->hash_spacing;
183 while (space > (sector_t)(~(u32)0)) {
184 space >>= 1;
185 conf->preshift++;
186 }
187 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 /*
189 * This code was restructured to work around a gcc-2.95.3 internal
190 * compiler error. Alter it with care.
191 */
192 {
193 sector_t sz;
194 unsigned round;
195 unsigned long base;
196
Andre Nolld6e22152008-07-21 17:05:25 +1000197 sz = conf->array_sectors >> (conf->preshift + 1);
NeilBrown15945fe2005-09-09 16:23:47 -0700198 sz += 1; /* force round-up */
199 base = conf->hash_spacing >> conf->preshift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 round = sector_div(sz, base);
NeilBrown15945fe2005-09-09 16:23:47 -0700201 nb_zone = sz + (round ? 1 : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 }
NeilBrown15945fe2005-09-09 16:23:47 -0700203 BUG_ON(nb_zone > PAGE_SIZE / sizeof(struct dev_info *));
204
205 conf->hash_table = kmalloc (sizeof (struct dev_info *) * nb_zone,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 GFP_KERNEL);
207 if (!conf->hash_table)
208 goto out;
209
210 /*
211 * Here we generate the linear hash table
NeilBrown15945fe2005-09-09 16:23:47 -0700212 * First calculate the device offsets.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 */
NeilBrown15945fe2005-09-09 16:23:47 -0700214 conf->disks[0].offset = 0;
NeilBrowna778b732007-05-23 13:58:10 -0700215 for (i = 1; i < raid_disks; i++)
NeilBrown15945fe2005-09-09 16:23:47 -0700216 conf->disks[i].offset =
217 conf->disks[i-1].offset +
218 conf->disks[i-1].size;
219
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 table = conf->hash_table;
NeilBrown15945fe2005-09-09 16:23:47 -0700221 i = 0;
222 for (curr_offset = 0;
Andre Nolld6e22152008-07-21 17:05:25 +1000223 curr_offset < conf->array_sectors / 2;
NeilBrown15945fe2005-09-09 16:23:47 -0700224 curr_offset += conf->hash_spacing) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
NeilBrowna778b732007-05-23 13:58:10 -0700226 while (i < raid_disks-1 &&
NeilBrown15945fe2005-09-09 16:23:47 -0700227 curr_offset >= conf->disks[i+1].offset)
228 i++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
NeilBrown15945fe2005-09-09 16:23:47 -0700230 *table ++ = conf->disks + i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 }
NeilBrown15945fe2005-09-09 16:23:47 -0700232
233 if (conf->preshift) {
234 conf->hash_spacing >>= conf->preshift;
235 /* round hash_spacing up so that when we divide by it,
236 * we err on the side of "too-low", which is safest.
237 */
238 conf->hash_spacing++;
239 }
240
241 BUG_ON(table - conf->hash_table > nb_zone);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
NeilBrown7c7546c2006-06-26 00:27:41 -0700243 return conf;
244
245out:
246 kfree(conf);
247 return NULL;
248}
249
250static int linear_run (mddev_t *mddev)
251{
252 linear_conf_t *conf;
253
Neil Browne7e72bf2008-05-14 16:05:54 -0700254 mddev->queue->queue_lock = &mddev->queue->__queue_lock;
NeilBrown7c7546c2006-06-26 00:27:41 -0700255 conf = linear_conf(mddev, mddev->raid_disks);
256
257 if (!conf)
258 return 1;
259 mddev->private = conf;
Andre Nolld6e22152008-07-21 17:05:25 +1000260 mddev->array_sectors = conf->array_sectors;
NeilBrown7c7546c2006-06-26 00:27:41 -0700261
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 blk_queue_merge_bvec(mddev->queue, linear_mergeable_bvec);
263 mddev->queue->unplug_fn = linear_unplug;
NeilBrown26be34d2006-10-03 01:15:53 -0700264 mddev->queue->backing_dev_info.congested_fn = linear_congested;
265 mddev->queue->backing_dev_info.congested_data = mddev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 return 0;
NeilBrown7c7546c2006-06-26 00:27:41 -0700267}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
NeilBrown7c7546c2006-06-26 00:27:41 -0700269static int linear_add(mddev_t *mddev, mdk_rdev_t *rdev)
270{
271 /* Adding a drive to a linear array allows the array to grow.
272 * It is permitted if the new drive has a matching superblock
273 * already on it, with raid_disk equal to raid_disks.
274 * It is achieved by creating a new linear_private_data structure
275 * and swapping it in in-place of the current one.
276 * The current one is never freed until the array is stopped.
277 * This avoids races.
278 */
279 linear_conf_t *newconf;
280
NeilBrowna778b732007-05-23 13:58:10 -0700281 if (rdev->saved_raid_disk != mddev->raid_disks)
NeilBrown7c7546c2006-06-26 00:27:41 -0700282 return -EINVAL;
283
NeilBrowna778b732007-05-23 13:58:10 -0700284 rdev->raid_disk = rdev->saved_raid_disk;
285
NeilBrown7c7546c2006-06-26 00:27:41 -0700286 newconf = linear_conf(mddev,mddev->raid_disks+1);
287
288 if (!newconf)
289 return -ENOMEM;
290
291 newconf->prev = mddev_to_conf(mddev);
292 mddev->private = newconf;
293 mddev->raid_disks++;
Andre Nolld6e22152008-07-21 17:05:25 +1000294 mddev->array_sectors = newconf->array_sectors;
Andre Nollf233ea52008-07-21 17:05:22 +1000295 set_capacity(mddev->gendisk, mddev->array_sectors);
NeilBrown7c7546c2006-06-26 00:27:41 -0700296 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297}
298
299static int linear_stop (mddev_t *mddev)
300{
301 linear_conf_t *conf = mddev_to_conf(mddev);
302
303 blk_sync_queue(mddev->queue); /* the unplug fn references 'conf'*/
NeilBrown7c7546c2006-06-26 00:27:41 -0700304 do {
305 linear_conf_t *t = conf->prev;
306 kfree(conf->hash_table);
307 kfree(conf);
308 conf = t;
309 } while (conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
311 return 0;
312}
313
Jens Axboe165125e2007-07-24 09:28:11 +0200314static int linear_make_request (struct request_queue *q, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315{
Jens Axboea3623572005-11-01 09:26:16 +0100316 const int rw = bio_data_dir(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 mddev_t *mddev = q->queuedata;
318 dev_info_t *tmp_dev;
319 sector_t block;
Tejun Heoc9959052008-08-25 19:47:21 +0900320 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
NeilBrowne5dcdd82005-09-09 16:23:41 -0700322 if (unlikely(bio_barrier(bio))) {
NeilBrown6712ecf2007-09-27 12:47:43 +0200323 bio_endio(bio, -EOPNOTSUPP);
NeilBrowne5dcdd82005-09-09 16:23:41 -0700324 return 0;
325 }
326
Tejun Heo074a7ac2008-08-25 19:56:14 +0900327 cpu = part_stat_lock();
328 part_stat_inc(cpu, &mddev->gendisk->part0, ios[rw]);
329 part_stat_add(cpu, &mddev->gendisk->part0, sectors[rw],
330 bio_sectors(bio));
331 part_stat_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
333 tmp_dev = which_dev(mddev, bio->bi_sector);
334 block = bio->bi_sector >> 1;
335
336 if (unlikely(block >= (tmp_dev->size + tmp_dev->offset)
337 || block < tmp_dev->offset)) {
338 char b[BDEVNAME_SIZE];
339
340 printk("linear_make_request: Block %llu out of bounds on "
341 "dev %s size %llu offset %llu\n",
342 (unsigned long long)block,
343 bdevname(tmp_dev->rdev->bdev, b),
344 (unsigned long long)tmp_dev->size,
345 (unsigned long long)tmp_dev->offset);
NeilBrown6712ecf2007-09-27 12:47:43 +0200346 bio_io_error(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 return 0;
348 }
349 if (unlikely(bio->bi_sector + (bio->bi_size >> 9) >
350 (tmp_dev->offset + tmp_dev->size)<<1)) {
351 /* This bio crosses a device boundary, so we have to
352 * split it.
353 */
354 struct bio_pair *bp;
Denis ChengRq6feef532008-10-09 08:57:05 +0200355 bp = bio_split(bio,
NeilBrown29ac8e02005-05-16 21:53:15 -0700356 ((tmp_dev->offset + tmp_dev->size)<<1) - bio->bi_sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 if (linear_make_request(q, &bp->bio1))
358 generic_make_request(&bp->bio1);
359 if (linear_make_request(q, &bp->bio2))
360 generic_make_request(&bp->bio2);
361 bio_pair_release(bp);
362 return 0;
363 }
364
365 bio->bi_bdev = tmp_dev->rdev->bdev;
366 bio->bi_sector = bio->bi_sector - (tmp_dev->offset << 1) + tmp_dev->rdev->data_offset;
367
368 return 1;
369}
370
371static void linear_status (struct seq_file *seq, mddev_t *mddev)
372{
373
374#undef MD_DEBUG
375#ifdef MD_DEBUG
376 int j;
377 linear_conf_t *conf = mddev_to_conf(mddev);
378 sector_t s = 0;
379
380 seq_printf(seq, " ");
NeilBrown15945fe2005-09-09 16:23:47 -0700381 for (j = 0; j < mddev->raid_disks; j++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 {
383 char b[BDEVNAME_SIZE];
384 s += conf->smallest_size;
385 seq_printf(seq, "[%s",
386 bdevname(conf->hash_table[j][0].rdev->bdev,b));
387
388 while (s > conf->hash_table[j][0].offset +
389 conf->hash_table[j][0].size)
390 seq_printf(seq, "/%s] ",
391 bdevname(conf->hash_table[j][1].rdev->bdev,b));
392 else
393 seq_printf(seq, "] ");
394 }
395 seq_printf(seq, "\n");
396#endif
397 seq_printf(seq, " %dk rounding", mddev->chunk_size/1024);
398}
399
400
NeilBrown2604b702006-01-06 00:20:36 -0800401static struct mdk_personality linear_personality =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402{
403 .name = "linear",
NeilBrown2604b702006-01-06 00:20:36 -0800404 .level = LEVEL_LINEAR,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 .owner = THIS_MODULE,
406 .make_request = linear_make_request,
407 .run = linear_run,
408 .stop = linear_stop,
409 .status = linear_status,
NeilBrown7c7546c2006-06-26 00:27:41 -0700410 .hot_add_disk = linear_add,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411};
412
413static int __init linear_init (void)
414{
NeilBrown2604b702006-01-06 00:20:36 -0800415 return register_md_personality (&linear_personality);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416}
417
418static void linear_exit (void)
419{
NeilBrown2604b702006-01-06 00:20:36 -0800420 unregister_md_personality (&linear_personality);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421}
422
423
424module_init(linear_init);
425module_exit(linear_exit);
426MODULE_LICENSE("GPL");
NeilBrownd9d166c2006-01-06 00:20:51 -0800427MODULE_ALIAS("md-personality-1"); /* LINEAR - deprecated*/
428MODULE_ALIAS("md-linear");
NeilBrown2604b702006-01-06 00:20:36 -0800429MODULE_ALIAS("md-level--1");