blob: 7a36e38393a1e9ff24defd03c756138a9f5da903 [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>
NeilBrownbff61972009-03-31 14:33:13 +110021#include <linux/seq_file.h>
NeilBrown43b2e5d2009-03-31 14:33:13 +110022#include "md.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
Dan Williams80c3a6c2009-03-17 18:10:40 -0700104static sector_t linear_size(mddev_t *mddev, sector_t sectors, int raid_disks)
105{
106 linear_conf_t *conf = mddev_to_conf(mddev);
107
108 WARN_ONCE(sectors || raid_disks,
109 "%s does not support generic reshape\n", __func__);
110
111 return conf->array_sectors;
112}
113
NeilBrown7c7546c2006-06-26 00:27:41 -0700114static linear_conf_t *linear_conf(mddev_t *mddev, int raid_disks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115{
116 linear_conf_t *conf;
117 dev_info_t **table;
118 mdk_rdev_t *rdev;
119 int i, nb_zone, cnt;
Andre Noll23242fb2008-10-13 11:55:12 +1100120 sector_t min_sectors;
Andre Noll62838152008-10-13 11:55:12 +1100121 sector_t curr_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
NeilBrown7c7546c2006-06-26 00:27:41 -0700123 conf = kzalloc (sizeof (*conf) + raid_disks*sizeof(dev_info_t),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 GFP_KERNEL);
125 if (!conf)
NeilBrown7c7546c2006-06-26 00:27:41 -0700126 return NULL;
127
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 cnt = 0;
Andre Nolld6e22152008-07-21 17:05:25 +1000129 conf->array_sectors = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
Cheng Renquan159ec1f2009-01-09 08:31:08 +1100131 list_for_each_entry(rdev, &mddev->disks, same_set) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 int j = rdev->raid_disk;
133 dev_info_t *disk = conf->disks + j;
134
Nikanth Karthikesan13864512008-06-28 08:31:19 +1000135 if (j < 0 || j >= raid_disks || disk->rdev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 printk("linear: disk numbering problem. Aborting!\n");
137 goto out;
138 }
139
140 disk->rdev = rdev;
141
142 blk_queue_stack_limits(mddev->queue,
143 rdev->bdev->bd_disk->queue);
144 /* as we don't honour merge_bvec_fn, we must never risk
145 * violating it, so limit ->max_sector to one PAGE, as
146 * a one page request is never in violation.
147 */
148 if (rdev->bdev->bd_disk->queue->merge_bvec_fn &&
149 mddev->queue->max_sectors > (PAGE_SIZE>>9))
150 blk_queue_max_sectors(mddev->queue, PAGE_SIZE>>9);
151
Andre Nolldd8ac332009-03-31 14:33:13 +1100152 disk->num_sectors = rdev->sectors;
153 conf->array_sectors += rdev->sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 cnt++;
156 }
NeilBrown7c7546c2006-06-26 00:27:41 -0700157 if (cnt != raid_disks) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 printk("linear: not enough drives present. Aborting!\n");
159 goto out;
160 }
161
Andre Noll23242fb2008-10-13 11:55:12 +1100162 min_sectors = conf->array_sectors;
163 sector_div(min_sectors, PAGE_SIZE/sizeof(struct dev_info *));
Andre Nollf1cd14a2008-11-06 19:41:24 +1100164 if (min_sectors == 0)
165 min_sectors = 1;
NeilBrown15945fe2005-09-09 16:23:47 -0700166
Andre Noll23242fb2008-10-13 11:55:12 +1100167 /* min_sectors is the minimum spacing that will fit the hash
NeilBrown15945fe2005-09-09 16:23:47 -0700168 * table in one PAGE. This may be much smaller than needed.
169 * We find the smallest non-terminal set of consecutive devices
Andre Noll23242fb2008-10-13 11:55:12 +1100170 * that is larger than min_sectors and use the size of that as
NeilBrown15945fe2005-09-09 16:23:47 -0700171 * the actual spacing
172 */
Andre Nollab5bd5c2008-10-13 11:55:12 +1100173 conf->spacing = conf->array_sectors;
NeilBrown15945fe2005-09-09 16:23:47 -0700174 for (i=0; i < cnt-1 ; i++) {
Andre Noll23242fb2008-10-13 11:55:12 +1100175 sector_t tmp = 0;
NeilBrown15945fe2005-09-09 16:23:47 -0700176 int j;
Andre Noll23242fb2008-10-13 11:55:12 +1100177 for (j = i; j < cnt - 1 && tmp < min_sectors; j++)
178 tmp += conf->disks[j].num_sectors;
Andre Nollab5bd5c2008-10-13 11:55:12 +1100179 if (tmp >= min_sectors && tmp < conf->spacing)
180 conf->spacing = tmp;
NeilBrown15945fe2005-09-09 16:23:47 -0700181 }
182
Andre Nollab5bd5c2008-10-13 11:55:12 +1100183 /* spacing may be too large for sector_div to work with,
NeilBrown15945fe2005-09-09 16:23:47 -0700184 * so we might need to pre-shift
185 */
Andre Nollab5bd5c2008-10-13 11:55:12 +1100186 conf->sector_shift = 0;
NeilBrown15945fe2005-09-09 16:23:47 -0700187 if (sizeof(sector_t) > sizeof(u32)) {
Andre Nollab5bd5c2008-10-13 11:55:12 +1100188 sector_t space = conf->spacing;
NeilBrown15945fe2005-09-09 16:23:47 -0700189 while (space > (sector_t)(~(u32)0)) {
190 space >>= 1;
Andre Nollab5bd5c2008-10-13 11:55:12 +1100191 conf->sector_shift++;
NeilBrown15945fe2005-09-09 16:23:47 -0700192 }
193 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 /*
195 * This code was restructured to work around a gcc-2.95.3 internal
196 * compiler error. Alter it with care.
197 */
198 {
199 sector_t sz;
200 unsigned round;
201 unsigned long base;
202
Andre Nollab5bd5c2008-10-13 11:55:12 +1100203 sz = conf->array_sectors >> conf->sector_shift;
NeilBrown15945fe2005-09-09 16:23:47 -0700204 sz += 1; /* force round-up */
Andre Nollab5bd5c2008-10-13 11:55:12 +1100205 base = conf->spacing >> conf->sector_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 round = sector_div(sz, base);
NeilBrown15945fe2005-09-09 16:23:47 -0700207 nb_zone = sz + (round ? 1 : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 }
NeilBrown15945fe2005-09-09 16:23:47 -0700209 BUG_ON(nb_zone > PAGE_SIZE / sizeof(struct dev_info *));
210
211 conf->hash_table = kmalloc (sizeof (struct dev_info *) * nb_zone,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 GFP_KERNEL);
213 if (!conf->hash_table)
214 goto out;
215
216 /*
217 * Here we generate the linear hash table
NeilBrown15945fe2005-09-09 16:23:47 -0700218 * First calculate the device offsets.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 */
Andre Noll62838152008-10-13 11:55:12 +1100220 conf->disks[0].start_sector = 0;
NeilBrowna778b732007-05-23 13:58:10 -0700221 for (i = 1; i < raid_disks; i++)
Andre Noll62838152008-10-13 11:55:12 +1100222 conf->disks[i].start_sector =
223 conf->disks[i-1].start_sector +
224 conf->disks[i-1].num_sectors;
NeilBrown15945fe2005-09-09 16:23:47 -0700225
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 table = conf->hash_table;
NeilBrown15945fe2005-09-09 16:23:47 -0700227 i = 0;
Andre Noll62838152008-10-13 11:55:12 +1100228 for (curr_sector = 0;
229 curr_sector < conf->array_sectors;
Andre Nollab5bd5c2008-10-13 11:55:12 +1100230 curr_sector += conf->spacing) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
NeilBrowna778b732007-05-23 13:58:10 -0700232 while (i < raid_disks-1 &&
Andre Noll62838152008-10-13 11:55:12 +1100233 curr_sector >= conf->disks[i+1].start_sector)
NeilBrown15945fe2005-09-09 16:23:47 -0700234 i++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
NeilBrown15945fe2005-09-09 16:23:47 -0700236 *table ++ = conf->disks + i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 }
NeilBrown15945fe2005-09-09 16:23:47 -0700238
Andre Nollab5bd5c2008-10-13 11:55:12 +1100239 if (conf->sector_shift) {
240 conf->spacing >>= conf->sector_shift;
241 /* round spacing up so that when we divide by it,
NeilBrown15945fe2005-09-09 16:23:47 -0700242 * we err on the side of "too-low", which is safest.
243 */
Andre Nollab5bd5c2008-10-13 11:55:12 +1100244 conf->spacing++;
NeilBrown15945fe2005-09-09 16:23:47 -0700245 }
246
247 BUG_ON(table - conf->hash_table > nb_zone);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
NeilBrown7c7546c2006-06-26 00:27:41 -0700249 return conf;
250
251out:
252 kfree(conf);
253 return NULL;
254}
255
256static int linear_run (mddev_t *mddev)
257{
258 linear_conf_t *conf;
259
Neil Browne7e72bf2008-05-14 16:05:54 -0700260 mddev->queue->queue_lock = &mddev->queue->__queue_lock;
NeilBrown7c7546c2006-06-26 00:27:41 -0700261 conf = linear_conf(mddev, mddev->raid_disks);
262
263 if (!conf)
264 return 1;
265 mddev->private = conf;
Dan Williams1f403622009-03-31 14:59:03 +1100266 md_set_array_sectors(mddev, linear_size(mddev, 0, 0));
NeilBrown7c7546c2006-06-26 00:27:41 -0700267
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 blk_queue_merge_bvec(mddev->queue, linear_mergeable_bvec);
269 mddev->queue->unplug_fn = linear_unplug;
NeilBrown26be34d2006-10-03 01:15:53 -0700270 mddev->queue->backing_dev_info.congested_fn = linear_congested;
271 mddev->queue->backing_dev_info.congested_data = mddev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 return 0;
NeilBrown7c7546c2006-06-26 00:27:41 -0700273}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
NeilBrown7c7546c2006-06-26 00:27:41 -0700275static int linear_add(mddev_t *mddev, mdk_rdev_t *rdev)
276{
277 /* Adding a drive to a linear array allows the array to grow.
278 * It is permitted if the new drive has a matching superblock
279 * already on it, with raid_disk equal to raid_disks.
280 * It is achieved by creating a new linear_private_data structure
281 * and swapping it in in-place of the current one.
282 * The current one is never freed until the array is stopped.
283 * This avoids races.
284 */
285 linear_conf_t *newconf;
286
NeilBrowna778b732007-05-23 13:58:10 -0700287 if (rdev->saved_raid_disk != mddev->raid_disks)
NeilBrown7c7546c2006-06-26 00:27:41 -0700288 return -EINVAL;
289
NeilBrowna778b732007-05-23 13:58:10 -0700290 rdev->raid_disk = rdev->saved_raid_disk;
291
NeilBrown7c7546c2006-06-26 00:27:41 -0700292 newconf = linear_conf(mddev,mddev->raid_disks+1);
293
294 if (!newconf)
295 return -ENOMEM;
296
297 newconf->prev = mddev_to_conf(mddev);
298 mddev->private = newconf;
299 mddev->raid_disks++;
Dan Williams1f403622009-03-31 14:59:03 +1100300 md_set_array_sectors(mddev, linear_size(mddev, 0, 0));
Andre Nollf233ea52008-07-21 17:05:22 +1000301 set_capacity(mddev->gendisk, mddev->array_sectors);
NeilBrown7c7546c2006-06-26 00:27:41 -0700302 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303}
304
305static int linear_stop (mddev_t *mddev)
306{
307 linear_conf_t *conf = mddev_to_conf(mddev);
308
309 blk_sync_queue(mddev->queue); /* the unplug fn references 'conf'*/
NeilBrown7c7546c2006-06-26 00:27:41 -0700310 do {
311 linear_conf_t *t = conf->prev;
312 kfree(conf->hash_table);
313 kfree(conf);
314 conf = t;
315 } while (conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
317 return 0;
318}
319
Jens Axboe165125e2007-07-24 09:28:11 +0200320static int linear_make_request (struct request_queue *q, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321{
Jens Axboea3623572005-11-01 09:26:16 +0100322 const int rw = bio_data_dir(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 mddev_t *mddev = q->queuedata;
324 dev_info_t *tmp_dev;
Tejun Heoc9959052008-08-25 19:47:21 +0900325 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
NeilBrowne5dcdd82005-09-09 16:23:41 -0700327 if (unlikely(bio_barrier(bio))) {
NeilBrown6712ecf2007-09-27 12:47:43 +0200328 bio_endio(bio, -EOPNOTSUPP);
NeilBrowne5dcdd82005-09-09 16:23:41 -0700329 return 0;
330 }
331
Tejun Heo074a7ac2008-08-25 19:56:14 +0900332 cpu = part_stat_lock();
333 part_stat_inc(cpu, &mddev->gendisk->part0, ios[rw]);
334 part_stat_add(cpu, &mddev->gendisk->part0, sectors[rw],
335 bio_sectors(bio));
336 part_stat_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
338 tmp_dev = which_dev(mddev, bio->bi_sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
Andre Noll62838152008-10-13 11:55:12 +1100340 if (unlikely(bio->bi_sector >= (tmp_dev->num_sectors +
341 tmp_dev->start_sector)
342 || (bio->bi_sector <
343 tmp_dev->start_sector))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 char b[BDEVNAME_SIZE];
345
Andre Noll62838152008-10-13 11:55:12 +1100346 printk("linear_make_request: Sector %llu out of bounds on "
347 "dev %s: %llu sectors, offset %llu\n",
348 (unsigned long long)bio->bi_sector,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 bdevname(tmp_dev->rdev->bdev, b),
Andre Noll62838152008-10-13 11:55:12 +1100350 (unsigned long long)tmp_dev->num_sectors,
351 (unsigned long long)tmp_dev->start_sector);
NeilBrown6712ecf2007-09-27 12:47:43 +0200352 bio_io_error(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 return 0;
354 }
355 if (unlikely(bio->bi_sector + (bio->bi_size >> 9) >
Andre Noll62838152008-10-13 11:55:12 +1100356 tmp_dev->start_sector + tmp_dev->num_sectors)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 /* This bio crosses a device boundary, so we have to
358 * split it.
359 */
360 struct bio_pair *bp;
Andre Noll62838152008-10-13 11:55:12 +1100361
Denis ChengRq6feef532008-10-09 08:57:05 +0200362 bp = bio_split(bio,
Andre Noll62838152008-10-13 11:55:12 +1100363 tmp_dev->start_sector + tmp_dev->num_sectors
364 - bio->bi_sector);
365
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 if (linear_make_request(q, &bp->bio1))
367 generic_make_request(&bp->bio1);
368 if (linear_make_request(q, &bp->bio2))
369 generic_make_request(&bp->bio2);
370 bio_pair_release(bp);
371 return 0;
372 }
373
374 bio->bi_bdev = tmp_dev->rdev->bdev;
Andre Noll62838152008-10-13 11:55:12 +1100375 bio->bi_sector = bio->bi_sector - tmp_dev->start_sector
376 + tmp_dev->rdev->data_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
378 return 1;
379}
380
381static void linear_status (struct seq_file *seq, mddev_t *mddev)
382{
383
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 seq_printf(seq, " %dk rounding", mddev->chunk_size/1024);
385}
386
387
NeilBrown2604b702006-01-06 00:20:36 -0800388static struct mdk_personality linear_personality =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389{
390 .name = "linear",
NeilBrown2604b702006-01-06 00:20:36 -0800391 .level = LEVEL_LINEAR,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 .owner = THIS_MODULE,
393 .make_request = linear_make_request,
394 .run = linear_run,
395 .stop = linear_stop,
396 .status = linear_status,
NeilBrown7c7546c2006-06-26 00:27:41 -0700397 .hot_add_disk = linear_add,
Dan Williams80c3a6c2009-03-17 18:10:40 -0700398 .size = linear_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399};
400
401static int __init linear_init (void)
402{
NeilBrown2604b702006-01-06 00:20:36 -0800403 return register_md_personality (&linear_personality);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404}
405
406static void linear_exit (void)
407{
NeilBrown2604b702006-01-06 00:20:36 -0800408 unregister_md_personality (&linear_personality);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409}
410
411
412module_init(linear_init);
413module_exit(linear_exit);
414MODULE_LICENSE("GPL");
NeilBrownd9d166c2006-01-06 00:20:51 -0800415MODULE_ALIAS("md-personality-1"); /* LINEAR - deprecated*/
416MODULE_ALIAS("md-linear");
NeilBrown2604b702006-01-06 00:20:36 -0800417MODULE_ALIAS("md-level--1");