blob: c43c3b60ef09eadff487a514555a8a00567e1aba [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
NeilBrownbff61972009-03-31 14:33:13 +110019#include <linux/blkdev.h>
20#include <linux/raid/md_u.h>
21#include <linux/raid/md_k.h>
22#include <linux/seq_file.h>
Christoph Hellwigef740c32009-03-31 14:27:03 +110023#include "linear.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Linus Torvalds1da177e2005-04-16 15:20:36 -070025/*
26 * find which device holds a particular offset
27 */
28static inline dev_info_t *which_dev(mddev_t *mddev, sector_t sector)
29{
30 dev_info_t *hash;
31 linear_conf_t *conf = mddev_to_conf(mddev);
Andre Noll852c8bf2009-02-06 15:10:52 +110032 sector_t idx = sector >> conf->sector_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34 /*
35 * sector_div(a,b) returns the remainer and sets a to a/b
36 */
Andre Noll852c8bf2009-02-06 15:10:52 +110037 (void)sector_div(idx, conf->spacing);
38 hash = conf->hash_table[idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Andre Noll62838152008-10-13 11:55:12 +110040 while (sector >= hash->num_sectors + hash->start_sector)
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 hash++;
42 return hash;
43}
44
45/**
NeilBrown15945fe2005-09-09 16:23:47 -070046 * linear_mergeable_bvec -- tell bio layer if two requests can be merged
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 * @q: request queue
Alasdair G Kergoncc371e62008-07-03 09:53:43 +020048 * @bvm: properties of new bio
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 * @biovec: the request that could be merged to it.
50 *
51 * Return amount of bytes we can take at this offset
52 */
Alasdair G Kergoncc371e62008-07-03 09:53:43 +020053static int linear_mergeable_bvec(struct request_queue *q,
54 struct bvec_merge_data *bvm,
55 struct bio_vec *biovec)
Linus Torvalds1da177e2005-04-16 15:20:36 -070056{
57 mddev_t *mddev = q->queuedata;
58 dev_info_t *dev0;
Alasdair G Kergoncc371e62008-07-03 09:53:43 +020059 unsigned long maxsectors, bio_sectors = bvm->bi_size >> 9;
60 sector_t sector = bvm->bi_sector + get_start_sect(bvm->bi_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62 dev0 = which_dev(mddev, sector);
Andre Noll62838152008-10-13 11:55:12 +110063 maxsectors = dev0->num_sectors - (sector - dev0->start_sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
65 if (maxsectors < bio_sectors)
66 maxsectors = 0;
67 else
68 maxsectors -= bio_sectors;
69
70 if (maxsectors <= (PAGE_SIZE >> 9 ) && bio_sectors == 0)
71 return biovec->bv_len;
72 /* The bytes available at this offset could be really big,
73 * so we cap at 2^31 to avoid overflow */
74 if (maxsectors > (1 << (31-9)))
75 return 1<<31;
76 return maxsectors << 9;
77}
78
Jens Axboe165125e2007-07-24 09:28:11 +020079static void linear_unplug(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -070080{
81 mddev_t *mddev = q->queuedata;
82 linear_conf_t *conf = mddev_to_conf(mddev);
83 int i;
84
85 for (i=0; i < mddev->raid_disks; i++) {
Jens Axboe165125e2007-07-24 09:28:11 +020086 struct request_queue *r_queue = bdev_get_queue(conf->disks[i].rdev->bdev);
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -050087 blk_unplug(r_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 }
89}
90
NeilBrown26be34d2006-10-03 01:15:53 -070091static int linear_congested(void *data, int bits)
92{
93 mddev_t *mddev = data;
94 linear_conf_t *conf = mddev_to_conf(mddev);
95 int i, ret = 0;
96
97 for (i = 0; i < mddev->raid_disks && !ret ; i++) {
Jens Axboe165125e2007-07-24 09:28:11 +020098 struct request_queue *q = bdev_get_queue(conf->disks[i].rdev->bdev);
NeilBrown26be34d2006-10-03 01:15:53 -070099 ret |= bdi_congested(&q->backing_dev_info, bits);
100 }
101 return ret;
102}
103
NeilBrown7c7546c2006-06-26 00:27:41 -0700104static linear_conf_t *linear_conf(mddev_t *mddev, int raid_disks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105{
106 linear_conf_t *conf;
107 dev_info_t **table;
108 mdk_rdev_t *rdev;
109 int i, nb_zone, cnt;
Andre Noll23242fb2008-10-13 11:55:12 +1100110 sector_t min_sectors;
Andre Noll62838152008-10-13 11:55:12 +1100111 sector_t curr_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
NeilBrown7c7546c2006-06-26 00:27:41 -0700113 conf = kzalloc (sizeof (*conf) + raid_disks*sizeof(dev_info_t),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 GFP_KERNEL);
115 if (!conf)
NeilBrown7c7546c2006-06-26 00:27:41 -0700116 return NULL;
117
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 cnt = 0;
Andre Nolld6e22152008-07-21 17:05:25 +1000119 conf->array_sectors = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
Cheng Renquan159ec1f2009-01-09 08:31:08 +1100121 list_for_each_entry(rdev, &mddev->disks, same_set) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 int j = rdev->raid_disk;
123 dev_info_t *disk = conf->disks + j;
124
Nikanth Karthikesan13864512008-06-28 08:31:19 +1000125 if (j < 0 || j >= raid_disks || disk->rdev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 printk("linear: disk numbering problem. Aborting!\n");
127 goto out;
128 }
129
130 disk->rdev = rdev;
131
132 blk_queue_stack_limits(mddev->queue,
133 rdev->bdev->bd_disk->queue);
134 /* as we don't honour merge_bvec_fn, we must never risk
135 * violating it, so limit ->max_sector to one PAGE, as
136 * a one page request is never in violation.
137 */
138 if (rdev->bdev->bd_disk->queue->merge_bvec_fn &&
139 mddev->queue->max_sectors > (PAGE_SIZE>>9))
140 blk_queue_max_sectors(mddev->queue, PAGE_SIZE>>9);
141
Andre Noll62838152008-10-13 11:55:12 +1100142 disk->num_sectors = rdev->size * 2;
Andre Nolld6e22152008-07-21 17:05:25 +1000143 conf->array_sectors += rdev->size * 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 cnt++;
146 }
NeilBrown7c7546c2006-06-26 00:27:41 -0700147 if (cnt != raid_disks) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 printk("linear: not enough drives present. Aborting!\n");
149 goto out;
150 }
151
Andre Noll23242fb2008-10-13 11:55:12 +1100152 min_sectors = conf->array_sectors;
153 sector_div(min_sectors, PAGE_SIZE/sizeof(struct dev_info *));
Andre Nollf1cd14a2008-11-06 19:41:24 +1100154 if (min_sectors == 0)
155 min_sectors = 1;
NeilBrown15945fe2005-09-09 16:23:47 -0700156
Andre Noll23242fb2008-10-13 11:55:12 +1100157 /* min_sectors is the minimum spacing that will fit the hash
NeilBrown15945fe2005-09-09 16:23:47 -0700158 * table in one PAGE. This may be much smaller than needed.
159 * We find the smallest non-terminal set of consecutive devices
Andre Noll23242fb2008-10-13 11:55:12 +1100160 * that is larger than min_sectors and use the size of that as
NeilBrown15945fe2005-09-09 16:23:47 -0700161 * the actual spacing
162 */
Andre Nollab5bd5c2008-10-13 11:55:12 +1100163 conf->spacing = conf->array_sectors;
NeilBrown15945fe2005-09-09 16:23:47 -0700164 for (i=0; i < cnt-1 ; i++) {
Andre Noll23242fb2008-10-13 11:55:12 +1100165 sector_t tmp = 0;
NeilBrown15945fe2005-09-09 16:23:47 -0700166 int j;
Andre Noll23242fb2008-10-13 11:55:12 +1100167 for (j = i; j < cnt - 1 && tmp < min_sectors; j++)
168 tmp += conf->disks[j].num_sectors;
Andre Nollab5bd5c2008-10-13 11:55:12 +1100169 if (tmp >= min_sectors && tmp < conf->spacing)
170 conf->spacing = tmp;
NeilBrown15945fe2005-09-09 16:23:47 -0700171 }
172
Andre Nollab5bd5c2008-10-13 11:55:12 +1100173 /* spacing may be too large for sector_div to work with,
NeilBrown15945fe2005-09-09 16:23:47 -0700174 * so we might need to pre-shift
175 */
Andre Nollab5bd5c2008-10-13 11:55:12 +1100176 conf->sector_shift = 0;
NeilBrown15945fe2005-09-09 16:23:47 -0700177 if (sizeof(sector_t) > sizeof(u32)) {
Andre Nollab5bd5c2008-10-13 11:55:12 +1100178 sector_t space = conf->spacing;
NeilBrown15945fe2005-09-09 16:23:47 -0700179 while (space > (sector_t)(~(u32)0)) {
180 space >>= 1;
Andre Nollab5bd5c2008-10-13 11:55:12 +1100181 conf->sector_shift++;
NeilBrown15945fe2005-09-09 16:23:47 -0700182 }
183 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 /*
185 * This code was restructured to work around a gcc-2.95.3 internal
186 * compiler error. Alter it with care.
187 */
188 {
189 sector_t sz;
190 unsigned round;
191 unsigned long base;
192
Andre Nollab5bd5c2008-10-13 11:55:12 +1100193 sz = conf->array_sectors >> conf->sector_shift;
NeilBrown15945fe2005-09-09 16:23:47 -0700194 sz += 1; /* force round-up */
Andre Nollab5bd5c2008-10-13 11:55:12 +1100195 base = conf->spacing >> conf->sector_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 round = sector_div(sz, base);
NeilBrown15945fe2005-09-09 16:23:47 -0700197 nb_zone = sz + (round ? 1 : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 }
NeilBrown15945fe2005-09-09 16:23:47 -0700199 BUG_ON(nb_zone > PAGE_SIZE / sizeof(struct dev_info *));
200
201 conf->hash_table = kmalloc (sizeof (struct dev_info *) * nb_zone,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 GFP_KERNEL);
203 if (!conf->hash_table)
204 goto out;
205
206 /*
207 * Here we generate the linear hash table
NeilBrown15945fe2005-09-09 16:23:47 -0700208 * First calculate the device offsets.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 */
Andre Noll62838152008-10-13 11:55:12 +1100210 conf->disks[0].start_sector = 0;
NeilBrowna778b732007-05-23 13:58:10 -0700211 for (i = 1; i < raid_disks; i++)
Andre Noll62838152008-10-13 11:55:12 +1100212 conf->disks[i].start_sector =
213 conf->disks[i-1].start_sector +
214 conf->disks[i-1].num_sectors;
NeilBrown15945fe2005-09-09 16:23:47 -0700215
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 table = conf->hash_table;
NeilBrown15945fe2005-09-09 16:23:47 -0700217 i = 0;
Andre Noll62838152008-10-13 11:55:12 +1100218 for (curr_sector = 0;
219 curr_sector < conf->array_sectors;
Andre Nollab5bd5c2008-10-13 11:55:12 +1100220 curr_sector += conf->spacing) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
NeilBrowna778b732007-05-23 13:58:10 -0700222 while (i < raid_disks-1 &&
Andre Noll62838152008-10-13 11:55:12 +1100223 curr_sector >= conf->disks[i+1].start_sector)
NeilBrown15945fe2005-09-09 16:23:47 -0700224 i++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
NeilBrown15945fe2005-09-09 16:23:47 -0700226 *table ++ = conf->disks + i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 }
NeilBrown15945fe2005-09-09 16:23:47 -0700228
Andre Nollab5bd5c2008-10-13 11:55:12 +1100229 if (conf->sector_shift) {
230 conf->spacing >>= conf->sector_shift;
231 /* round spacing up so that when we divide by it,
NeilBrown15945fe2005-09-09 16:23:47 -0700232 * we err on the side of "too-low", which is safest.
233 */
Andre Nollab5bd5c2008-10-13 11:55:12 +1100234 conf->spacing++;
NeilBrown15945fe2005-09-09 16:23:47 -0700235 }
236
237 BUG_ON(table - conf->hash_table > nb_zone);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
NeilBrown7c7546c2006-06-26 00:27:41 -0700239 return conf;
240
241out:
242 kfree(conf);
243 return NULL;
244}
245
246static int linear_run (mddev_t *mddev)
247{
248 linear_conf_t *conf;
249
Neil Browne7e72bf2008-05-14 16:05:54 -0700250 mddev->queue->queue_lock = &mddev->queue->__queue_lock;
NeilBrown7c7546c2006-06-26 00:27:41 -0700251 conf = linear_conf(mddev, mddev->raid_disks);
252
253 if (!conf)
254 return 1;
255 mddev->private = conf;
Andre Nolld6e22152008-07-21 17:05:25 +1000256 mddev->array_sectors = conf->array_sectors;
NeilBrown7c7546c2006-06-26 00:27:41 -0700257
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 blk_queue_merge_bvec(mddev->queue, linear_mergeable_bvec);
259 mddev->queue->unplug_fn = linear_unplug;
NeilBrown26be34d2006-10-03 01:15:53 -0700260 mddev->queue->backing_dev_info.congested_fn = linear_congested;
261 mddev->queue->backing_dev_info.congested_data = mddev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 return 0;
NeilBrown7c7546c2006-06-26 00:27:41 -0700263}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
NeilBrown7c7546c2006-06-26 00:27:41 -0700265static int linear_add(mddev_t *mddev, mdk_rdev_t *rdev)
266{
267 /* Adding a drive to a linear array allows the array to grow.
268 * It is permitted if the new drive has a matching superblock
269 * already on it, with raid_disk equal to raid_disks.
270 * It is achieved by creating a new linear_private_data structure
271 * and swapping it in in-place of the current one.
272 * The current one is never freed until the array is stopped.
273 * This avoids races.
274 */
275 linear_conf_t *newconf;
276
NeilBrowna778b732007-05-23 13:58:10 -0700277 if (rdev->saved_raid_disk != mddev->raid_disks)
NeilBrown7c7546c2006-06-26 00:27:41 -0700278 return -EINVAL;
279
NeilBrowna778b732007-05-23 13:58:10 -0700280 rdev->raid_disk = rdev->saved_raid_disk;
281
NeilBrown7c7546c2006-06-26 00:27:41 -0700282 newconf = linear_conf(mddev,mddev->raid_disks+1);
283
284 if (!newconf)
285 return -ENOMEM;
286
287 newconf->prev = mddev_to_conf(mddev);
288 mddev->private = newconf;
289 mddev->raid_disks++;
Andre Nolld6e22152008-07-21 17:05:25 +1000290 mddev->array_sectors = newconf->array_sectors;
Andre Nollf233ea52008-07-21 17:05:22 +1000291 set_capacity(mddev->gendisk, mddev->array_sectors);
NeilBrown7c7546c2006-06-26 00:27:41 -0700292 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293}
294
295static int linear_stop (mddev_t *mddev)
296{
297 linear_conf_t *conf = mddev_to_conf(mddev);
298
299 blk_sync_queue(mddev->queue); /* the unplug fn references 'conf'*/
NeilBrown7c7546c2006-06-26 00:27:41 -0700300 do {
301 linear_conf_t *t = conf->prev;
302 kfree(conf->hash_table);
303 kfree(conf);
304 conf = t;
305 } while (conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
307 return 0;
308}
309
Jens Axboe165125e2007-07-24 09:28:11 +0200310static int linear_make_request (struct request_queue *q, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311{
Jens Axboea3623572005-11-01 09:26:16 +0100312 const int rw = bio_data_dir(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 mddev_t *mddev = q->queuedata;
314 dev_info_t *tmp_dev;
Tejun Heoc9959052008-08-25 19:47:21 +0900315 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
NeilBrowne5dcdd82005-09-09 16:23:41 -0700317 if (unlikely(bio_barrier(bio))) {
NeilBrown6712ecf2007-09-27 12:47:43 +0200318 bio_endio(bio, -EOPNOTSUPP);
NeilBrowne5dcdd82005-09-09 16:23:41 -0700319 return 0;
320 }
321
Tejun Heo074a7ac2008-08-25 19:56:14 +0900322 cpu = part_stat_lock();
323 part_stat_inc(cpu, &mddev->gendisk->part0, ios[rw]);
324 part_stat_add(cpu, &mddev->gendisk->part0, sectors[rw],
325 bio_sectors(bio));
326 part_stat_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
328 tmp_dev = which_dev(mddev, bio->bi_sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
Andre Noll62838152008-10-13 11:55:12 +1100330 if (unlikely(bio->bi_sector >= (tmp_dev->num_sectors +
331 tmp_dev->start_sector)
332 || (bio->bi_sector <
333 tmp_dev->start_sector))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 char b[BDEVNAME_SIZE];
335
Andre Noll62838152008-10-13 11:55:12 +1100336 printk("linear_make_request: Sector %llu out of bounds on "
337 "dev %s: %llu sectors, offset %llu\n",
338 (unsigned long long)bio->bi_sector,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 bdevname(tmp_dev->rdev->bdev, b),
Andre Noll62838152008-10-13 11:55:12 +1100340 (unsigned long long)tmp_dev->num_sectors,
341 (unsigned long long)tmp_dev->start_sector);
NeilBrown6712ecf2007-09-27 12:47:43 +0200342 bio_io_error(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 return 0;
344 }
345 if (unlikely(bio->bi_sector + (bio->bi_size >> 9) >
Andre Noll62838152008-10-13 11:55:12 +1100346 tmp_dev->start_sector + tmp_dev->num_sectors)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 /* This bio crosses a device boundary, so we have to
348 * split it.
349 */
350 struct bio_pair *bp;
Andre Noll62838152008-10-13 11:55:12 +1100351
Denis ChengRq6feef532008-10-09 08:57:05 +0200352 bp = bio_split(bio,
Andre Noll62838152008-10-13 11:55:12 +1100353 tmp_dev->start_sector + tmp_dev->num_sectors
354 - bio->bi_sector);
355
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 if (linear_make_request(q, &bp->bio1))
357 generic_make_request(&bp->bio1);
358 if (linear_make_request(q, &bp->bio2))
359 generic_make_request(&bp->bio2);
360 bio_pair_release(bp);
361 return 0;
362 }
363
364 bio->bi_bdev = tmp_dev->rdev->bdev;
Andre Noll62838152008-10-13 11:55:12 +1100365 bio->bi_sector = bio->bi_sector - tmp_dev->start_sector
366 + tmp_dev->rdev->data_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
368 return 1;
369}
370
371static void linear_status (struct seq_file *seq, mddev_t *mddev)
372{
373
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 seq_printf(seq, " %dk rounding", mddev->chunk_size/1024);
375}
376
377
NeilBrown2604b702006-01-06 00:20:36 -0800378static struct mdk_personality linear_personality =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379{
380 .name = "linear",
NeilBrown2604b702006-01-06 00:20:36 -0800381 .level = LEVEL_LINEAR,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 .owner = THIS_MODULE,
383 .make_request = linear_make_request,
384 .run = linear_run,
385 .stop = linear_stop,
386 .status = linear_status,
NeilBrown7c7546c2006-06-26 00:27:41 -0700387 .hot_add_disk = linear_add,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388};
389
390static int __init linear_init (void)
391{
NeilBrown2604b702006-01-06 00:20:36 -0800392 return register_md_personality (&linear_personality);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393}
394
395static void linear_exit (void)
396{
NeilBrown2604b702006-01-06 00:20:36 -0800397 unregister_md_personality (&linear_personality);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398}
399
400
401module_init(linear_init);
402module_exit(linear_exit);
403MODULE_LICENSE("GPL");
NeilBrownd9d166c2006-01-06 00:20:51 -0800404MODULE_ALIAS("md-personality-1"); /* LINEAR - deprecated*/
405MODULE_ALIAS("md-linear");
NeilBrown2604b702006-01-06 00:20:36 -0800406MODULE_ALIAS("md-level--1");