tipc: Reduce footprint by un-inlining address routines
[linux-2.6/x86.git] / drivers / md / linear.c
blob09437e958235e469c75aaab913d6b651ccde9f64
1 /*
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>
7 Linear mode management functions.
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.
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.
19 #include <linux/blkdev.h>
20 #include <linux/raid/md_u.h>
21 #include <linux/seq_file.h>
22 #include <linux/slab.h>
23 #include "md.h"
24 #include "linear.h"
27 * find which device holds a particular offset
29 static inline dev_info_t *which_dev(mddev_t *mddev, sector_t sector)
31 int lo, mid, hi;
32 linear_conf_t *conf;
34 lo = 0;
35 hi = mddev->raid_disks - 1;
36 conf = rcu_dereference(mddev->private);
39 * Binary Search
42 while (hi > lo) {
44 mid = (hi + lo) / 2;
45 if (sector < conf->disks[mid].end_sector)
46 hi = mid;
47 else
48 lo = mid + 1;
51 return conf->disks + lo;
54 /**
55 * linear_mergeable_bvec -- tell bio layer if two requests can be merged
56 * @q: request queue
57 * @bvm: properties of new bio
58 * @biovec: the request that could be merged to it.
60 * Return amount of bytes we can take at this offset
62 static int linear_mergeable_bvec(struct request_queue *q,
63 struct bvec_merge_data *bvm,
64 struct bio_vec *biovec)
66 mddev_t *mddev = q->queuedata;
67 dev_info_t *dev0;
68 unsigned long maxsectors, bio_sectors = bvm->bi_size >> 9;
69 sector_t sector = bvm->bi_sector + get_start_sect(bvm->bi_bdev);
71 rcu_read_lock();
72 dev0 = which_dev(mddev, sector);
73 maxsectors = dev0->end_sector - sector;
74 rcu_read_unlock();
76 if (maxsectors < bio_sectors)
77 maxsectors = 0;
78 else
79 maxsectors -= bio_sectors;
81 if (maxsectors <= (PAGE_SIZE >> 9 ) && bio_sectors == 0)
82 return biovec->bv_len;
83 /* The bytes available at this offset could be really big,
84 * so we cap at 2^31 to avoid overflow */
85 if (maxsectors > (1 << (31-9)))
86 return 1<<31;
87 return maxsectors << 9;
90 static void linear_unplug(struct request_queue *q)
92 mddev_t *mddev = q->queuedata;
93 linear_conf_t *conf;
94 int i;
96 rcu_read_lock();
97 conf = rcu_dereference(mddev->private);
99 for (i=0; i < mddev->raid_disks; i++) {
100 struct request_queue *r_queue = bdev_get_queue(conf->disks[i].rdev->bdev);
101 blk_unplug(r_queue);
103 rcu_read_unlock();
106 static int linear_congested(void *data, int bits)
108 mddev_t *mddev = data;
109 linear_conf_t *conf;
110 int i, ret = 0;
112 if (mddev_congested(mddev, bits))
113 return 1;
115 rcu_read_lock();
116 conf = rcu_dereference(mddev->private);
118 for (i = 0; i < mddev->raid_disks && !ret ; i++) {
119 struct request_queue *q = bdev_get_queue(conf->disks[i].rdev->bdev);
120 ret |= bdi_congested(&q->backing_dev_info, bits);
123 rcu_read_unlock();
124 return ret;
127 static sector_t linear_size(mddev_t *mddev, sector_t sectors, int raid_disks)
129 linear_conf_t *conf;
130 sector_t array_sectors;
132 rcu_read_lock();
133 conf = rcu_dereference(mddev->private);
134 WARN_ONCE(sectors || raid_disks,
135 "%s does not support generic reshape\n", __func__);
136 array_sectors = conf->array_sectors;
137 rcu_read_unlock();
139 return array_sectors;
142 static linear_conf_t *linear_conf(mddev_t *mddev, int raid_disks)
144 linear_conf_t *conf;
145 mdk_rdev_t *rdev;
146 int i, cnt;
148 conf = kzalloc (sizeof (*conf) + raid_disks*sizeof(dev_info_t),
149 GFP_KERNEL);
150 if (!conf)
151 return NULL;
153 cnt = 0;
154 conf->array_sectors = 0;
156 list_for_each_entry(rdev, &mddev->disks, same_set) {
157 int j = rdev->raid_disk;
158 dev_info_t *disk = conf->disks + j;
159 sector_t sectors;
161 if (j < 0 || j >= raid_disks || disk->rdev) {
162 printk("linear: disk numbering problem. Aborting!\n");
163 goto out;
166 disk->rdev = rdev;
167 if (mddev->chunk_sectors) {
168 sectors = rdev->sectors;
169 sector_div(sectors, mddev->chunk_sectors);
170 rdev->sectors = sectors * mddev->chunk_sectors;
173 disk_stack_limits(mddev->gendisk, rdev->bdev,
174 rdev->data_offset << 9);
175 /* as we don't honour merge_bvec_fn, we must never risk
176 * violating it, so limit max_segments to 1 lying within
177 * a single page.
179 if (rdev->bdev->bd_disk->queue->merge_bvec_fn) {
180 blk_queue_max_segments(mddev->queue, 1);
181 blk_queue_segment_boundary(mddev->queue,
182 PAGE_CACHE_SIZE - 1);
185 conf->array_sectors += rdev->sectors;
186 cnt++;
189 if (cnt != raid_disks) {
190 printk("linear: not enough drives present. Aborting!\n");
191 goto out;
195 * Here we calculate the device offsets.
197 conf->disks[0].end_sector = conf->disks[0].rdev->sectors;
199 for (i = 1; i < raid_disks; i++)
200 conf->disks[i].end_sector =
201 conf->disks[i-1].end_sector +
202 conf->disks[i].rdev->sectors;
204 return conf;
206 out:
207 kfree(conf);
208 return NULL;
211 static int linear_run (mddev_t *mddev)
213 linear_conf_t *conf;
215 if (md_check_no_bitmap(mddev))
216 return -EINVAL;
217 mddev->queue->queue_lock = &mddev->queue->__queue_lock;
218 conf = linear_conf(mddev, mddev->raid_disks);
220 if (!conf)
221 return 1;
222 mddev->private = conf;
223 md_set_array_sectors(mddev, linear_size(mddev, 0, 0));
225 blk_queue_merge_bvec(mddev->queue, linear_mergeable_bvec);
226 mddev->queue->unplug_fn = linear_unplug;
227 mddev->queue->backing_dev_info.congested_fn = linear_congested;
228 mddev->queue->backing_dev_info.congested_data = mddev;
229 md_integrity_register(mddev);
230 return 0;
233 static void free_conf(struct rcu_head *head)
235 linear_conf_t *conf = container_of(head, linear_conf_t, rcu);
236 kfree(conf);
239 static int linear_add(mddev_t *mddev, mdk_rdev_t *rdev)
241 /* Adding a drive to a linear array allows the array to grow.
242 * It is permitted if the new drive has a matching superblock
243 * already on it, with raid_disk equal to raid_disks.
244 * It is achieved by creating a new linear_private_data structure
245 * and swapping it in in-place of the current one.
246 * The current one is never freed until the array is stopped.
247 * This avoids races.
249 linear_conf_t *newconf, *oldconf;
251 if (rdev->saved_raid_disk != mddev->raid_disks)
252 return -EINVAL;
254 rdev->raid_disk = rdev->saved_raid_disk;
256 newconf = linear_conf(mddev,mddev->raid_disks+1);
258 if (!newconf)
259 return -ENOMEM;
261 oldconf = rcu_dereference(mddev->private);
262 mddev->raid_disks++;
263 rcu_assign_pointer(mddev->private, newconf);
264 md_set_array_sectors(mddev, linear_size(mddev, 0, 0));
265 set_capacity(mddev->gendisk, mddev->array_sectors);
266 revalidate_disk(mddev->gendisk);
267 call_rcu(&oldconf->rcu, free_conf);
268 return 0;
271 static int linear_stop (mddev_t *mddev)
273 linear_conf_t *conf = mddev->private;
276 * We do not require rcu protection here since
277 * we hold reconfig_mutex for both linear_add and
278 * linear_stop, so they cannot race.
279 * We should make sure any old 'conf's are properly
280 * freed though.
282 rcu_barrier();
283 blk_sync_queue(mddev->queue); /* the unplug fn references 'conf'*/
284 kfree(conf);
286 return 0;
289 static int linear_make_request (struct request_queue *q, struct bio *bio)
291 const int rw = bio_data_dir(bio);
292 mddev_t *mddev = q->queuedata;
293 dev_info_t *tmp_dev;
294 sector_t start_sector;
295 int cpu;
297 if (unlikely(bio_rw_flagged(bio, BIO_RW_BARRIER))) {
298 md_barrier_request(mddev, bio);
299 return 0;
302 cpu = part_stat_lock();
303 part_stat_inc(cpu, &mddev->gendisk->part0, ios[rw]);
304 part_stat_add(cpu, &mddev->gendisk->part0, sectors[rw],
305 bio_sectors(bio));
306 part_stat_unlock();
308 rcu_read_lock();
309 tmp_dev = which_dev(mddev, bio->bi_sector);
310 start_sector = tmp_dev->end_sector - tmp_dev->rdev->sectors;
313 if (unlikely(bio->bi_sector >= (tmp_dev->end_sector)
314 || (bio->bi_sector < start_sector))) {
315 char b[BDEVNAME_SIZE];
317 printk("linear_make_request: Sector %llu out of bounds on "
318 "dev %s: %llu sectors, offset %llu\n",
319 (unsigned long long)bio->bi_sector,
320 bdevname(tmp_dev->rdev->bdev, b),
321 (unsigned long long)tmp_dev->rdev->sectors,
322 (unsigned long long)start_sector);
323 rcu_read_unlock();
324 bio_io_error(bio);
325 return 0;
327 if (unlikely(bio->bi_sector + (bio->bi_size >> 9) >
328 tmp_dev->end_sector)) {
329 /* This bio crosses a device boundary, so we have to
330 * split it.
332 struct bio_pair *bp;
333 sector_t end_sector = tmp_dev->end_sector;
335 rcu_read_unlock();
337 bp = bio_split(bio, end_sector - bio->bi_sector);
339 if (linear_make_request(q, &bp->bio1))
340 generic_make_request(&bp->bio1);
341 if (linear_make_request(q, &bp->bio2))
342 generic_make_request(&bp->bio2);
343 bio_pair_release(bp);
344 return 0;
347 bio->bi_bdev = tmp_dev->rdev->bdev;
348 bio->bi_sector = bio->bi_sector - start_sector
349 + tmp_dev->rdev->data_offset;
350 rcu_read_unlock();
352 return 1;
355 static void linear_status (struct seq_file *seq, mddev_t *mddev)
358 seq_printf(seq, " %dk rounding", mddev->chunk_sectors / 2);
362 static struct mdk_personality linear_personality =
364 .name = "linear",
365 .level = LEVEL_LINEAR,
366 .owner = THIS_MODULE,
367 .make_request = linear_make_request,
368 .run = linear_run,
369 .stop = linear_stop,
370 .status = linear_status,
371 .hot_add_disk = linear_add,
372 .size = linear_size,
375 static int __init linear_init (void)
377 return register_md_personality (&linear_personality);
380 static void linear_exit (void)
382 unregister_md_personality (&linear_personality);
386 module_init(linear_init);
387 module_exit(linear_exit);
388 MODULE_LICENSE("GPL");
389 MODULE_DESCRIPTION("Linear device concatenation personality for MD");
390 MODULE_ALIAS("md-personality-1"); /* LINEAR - deprecated*/
391 MODULE_ALIAS("md-linear");
392 MODULE_ALIAS("md-level--1");