linear.c 10.1 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
/*
   linear.c : Multiple Devices driver for Linux
	      Copyright (C) 1994-96 Marc ZYNGIER
	      <zyngier@ufr-info-p7.ibp.fr> or
	      <maz@gloups.fdn.fr>

   Linear mode management functions.

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2, or (at your option)
   any later version.
   
   You should have received a copy of the GNU General Public License
   (for example /usr/src/linux/COPYING); if not, write to the Free
   Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  
*/

#include <linux/raid/linear.h>

/*
 * find which device holds a particular offset 
 */
static inline dev_info_t *which_dev(mddev_t *mddev, sector_t sector)
{
	dev_info_t *hash;
	linear_conf_t *conf = mddev_to_conf(mddev);
28
	sector_t idx = sector >> conf->sector_shift;
L
Linus Torvalds 已提交
29 30 31 32

	/*
	 * sector_div(a,b) returns the remainer and sets a to a/b
	 */
33 34
	(void)sector_div(idx, conf->spacing);
	hash = conf->hash_table[idx];
L
Linus Torvalds 已提交
35

36
	while (sector >= hash->num_sectors + hash->start_sector)
L
Linus Torvalds 已提交
37 38 39 40 41
		hash++;
	return hash;
}

/**
42
 *	linear_mergeable_bvec -- tell bio layer if two requests can be merged
L
Linus Torvalds 已提交
43
 *	@q: request queue
44
 *	@bvm: properties of new bio
L
Linus Torvalds 已提交
45 46 47 48
 *	@biovec: the request that could be merged to it.
 *
 *	Return amount of bytes we can take at this offset
 */
49 50 51
static int linear_mergeable_bvec(struct request_queue *q,
				 struct bvec_merge_data *bvm,
				 struct bio_vec *biovec)
L
Linus Torvalds 已提交
52 53 54
{
	mddev_t *mddev = q->queuedata;
	dev_info_t *dev0;
55 56
	unsigned long maxsectors, bio_sectors = bvm->bi_size >> 9;
	sector_t sector = bvm->bi_sector + get_start_sect(bvm->bi_bdev);
L
Linus Torvalds 已提交
57 58

	dev0 = which_dev(mddev, sector);
59
	maxsectors = dev0->num_sectors - (sector - dev0->start_sector);
L
Linus Torvalds 已提交
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74

	if (maxsectors < bio_sectors)
		maxsectors = 0;
	else
		maxsectors -= bio_sectors;

	if (maxsectors <= (PAGE_SIZE >> 9 ) && bio_sectors == 0)
		return biovec->bv_len;
	/* The bytes available at this offset could be really big,
	 * so we cap at 2^31 to avoid overflow */
	if (maxsectors > (1 << (31-9)))
		return 1<<31;
	return maxsectors << 9;
}

75
static void linear_unplug(struct request_queue *q)
L
Linus Torvalds 已提交
76 77 78 79 80 81
{
	mddev_t *mddev = q->queuedata;
	linear_conf_t *conf = mddev_to_conf(mddev);
	int i;

	for (i=0; i < mddev->raid_disks; i++) {
82
		struct request_queue *r_queue = bdev_get_queue(conf->disks[i].rdev->bdev);
83
		blk_unplug(r_queue);
L
Linus Torvalds 已提交
84 85 86
	}
}

87 88 89 90 91 92 93
static int linear_congested(void *data, int bits)
{
	mddev_t *mddev = data;
	linear_conf_t *conf = mddev_to_conf(mddev);
	int i, ret = 0;

	for (i = 0; i < mddev->raid_disks && !ret ; i++) {
94
		struct request_queue *q = bdev_get_queue(conf->disks[i].rdev->bdev);
95 96 97 98 99
		ret |= bdi_congested(&q->backing_dev_info, bits);
	}
	return ret;
}

100
static linear_conf_t *linear_conf(mddev_t *mddev, int raid_disks)
L
Linus Torvalds 已提交
101 102 103 104 105
{
	linear_conf_t *conf;
	dev_info_t **table;
	mdk_rdev_t *rdev;
	int i, nb_zone, cnt;
106
	sector_t min_sectors;
107
	sector_t curr_sector;
L
Linus Torvalds 已提交
108

109
	conf = kzalloc (sizeof (*conf) + raid_disks*sizeof(dev_info_t),
L
Linus Torvalds 已提交
110 111
			GFP_KERNEL);
	if (!conf)
112 113
		return NULL;

L
Linus Torvalds 已提交
114
	cnt = 0;
115
	conf->array_sectors = 0;
L
Linus Torvalds 已提交
116

117
	list_for_each_entry(rdev, &mddev->disks, same_set) {
L
Linus Torvalds 已提交
118 119 120
		int j = rdev->raid_disk;
		dev_info_t *disk = conf->disks + j;

121
		if (j < 0 || j >= raid_disks || disk->rdev) {
L
Linus Torvalds 已提交
122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137
			printk("linear: disk numbering problem. Aborting!\n");
			goto out;
		}

		disk->rdev = rdev;

		blk_queue_stack_limits(mddev->queue,
				       rdev->bdev->bd_disk->queue);
		/* as we don't honour merge_bvec_fn, we must never risk
		 * violating it, so limit ->max_sector to one PAGE, as
		 * a one page request is never in violation.
		 */
		if (rdev->bdev->bd_disk->queue->merge_bvec_fn &&
		    mddev->queue->max_sectors > (PAGE_SIZE>>9))
			blk_queue_max_sectors(mddev->queue, PAGE_SIZE>>9);

138
		disk->num_sectors = rdev->size * 2;
139
		conf->array_sectors += rdev->size * 2;
L
Linus Torvalds 已提交
140 141 142

		cnt++;
	}
143
	if (cnt != raid_disks) {
L
Linus Torvalds 已提交
144 145 146 147
		printk("linear: not enough drives present. Aborting!\n");
		goto out;
	}

148 149
	min_sectors = conf->array_sectors;
	sector_div(min_sectors, PAGE_SIZE/sizeof(struct dev_info *));
150 151
	if (min_sectors == 0)
		min_sectors = 1;
152

153
	/* min_sectors is the minimum spacing that will fit the hash
154 155
	 * table in one PAGE.  This may be much smaller than needed.
	 * We find the smallest non-terminal set of consecutive devices
156
	 * that is larger than min_sectors and use the size of that as
157 158
	 * the actual spacing
	 */
159
	conf->spacing = conf->array_sectors;
160
	for (i=0; i < cnt-1 ; i++) {
161
		sector_t tmp = 0;
162
		int j;
163 164
		for (j = i; j < cnt - 1 && tmp < min_sectors; j++)
			tmp += conf->disks[j].num_sectors;
165 166
		if (tmp >= min_sectors && tmp < conf->spacing)
			conf->spacing = tmp;
167 168
	}

169
	/* spacing may be too large for sector_div to work with,
170 171
	 * so we might need to pre-shift
	 */
172
	conf->sector_shift = 0;
173
	if (sizeof(sector_t) > sizeof(u32)) {
174
		sector_t space = conf->spacing;
175 176
		while (space > (sector_t)(~(u32)0)) {
			space >>= 1;
177
			conf->sector_shift++;
178 179
		}
	}
L
Linus Torvalds 已提交
180 181 182 183 184 185 186 187 188
	/*
	 * This code was restructured to work around a gcc-2.95.3 internal
	 * compiler error.  Alter it with care.
	 */
	{
		sector_t sz;
		unsigned round;
		unsigned long base;

189
		sz = conf->array_sectors >> conf->sector_shift;
190
		sz += 1; /* force round-up */
191
		base = conf->spacing >> conf->sector_shift;
L
Linus Torvalds 已提交
192
		round = sector_div(sz, base);
193
		nb_zone = sz + (round ? 1 : 0);
L
Linus Torvalds 已提交
194
	}
195 196 197
	BUG_ON(nb_zone > PAGE_SIZE / sizeof(struct dev_info *));

	conf->hash_table = kmalloc (sizeof (struct dev_info *) * nb_zone,
L
Linus Torvalds 已提交
198 199 200 201 202 203
					GFP_KERNEL);
	if (!conf->hash_table)
		goto out;

	/*
	 * Here we generate the linear hash table
204
	 * First calculate the device offsets.
L
Linus Torvalds 已提交
205
	 */
206
	conf->disks[0].start_sector = 0;
207
	for (i = 1; i < raid_disks; i++)
208 209 210
		conf->disks[i].start_sector =
			conf->disks[i-1].start_sector +
			conf->disks[i-1].num_sectors;
211

L
Linus Torvalds 已提交
212
	table = conf->hash_table;
213
	i = 0;
214 215
	for (curr_sector = 0;
	     curr_sector < conf->array_sectors;
216
	     curr_sector += conf->spacing) {
L
Linus Torvalds 已提交
217

218
		while (i < raid_disks-1 &&
219
		       curr_sector >= conf->disks[i+1].start_sector)
220
			i++;
L
Linus Torvalds 已提交
221

222 223 224
		*table ++ = conf->disks + i;
	}

225 226 227
	if (conf->sector_shift) {
		conf->spacing >>= conf->sector_shift;
		/* round spacing up so that when we divide by it,
228
		 * we err on the side of "too-low", which is safest.
L
Linus Torvalds 已提交
229
		 */
230
		conf->spacing++;
L
Linus Torvalds 已提交
231
	}
232 233

	BUG_ON(table - conf->hash_table > nb_zone);
L
Linus Torvalds 已提交
234

235 236 237 238 239 240 241 242 243 244 245
	return conf;

out:
	kfree(conf);
	return NULL;
}

static int linear_run (mddev_t *mddev)
{
	linear_conf_t *conf;

246
	mddev->queue->queue_lock = &mddev->queue->__queue_lock;
247 248 249 250 251
	conf = linear_conf(mddev, mddev->raid_disks);

	if (!conf)
		return 1;
	mddev->private = conf;
252
	mddev->array_sectors = conf->array_sectors;
253

L
Linus Torvalds 已提交
254 255
	blk_queue_merge_bvec(mddev->queue, linear_mergeable_bvec);
	mddev->queue->unplug_fn = linear_unplug;
256 257
	mddev->queue->backing_dev_info.congested_fn = linear_congested;
	mddev->queue->backing_dev_info.congested_data = mddev;
L
Linus Torvalds 已提交
258
	return 0;
259
}
L
Linus Torvalds 已提交
260

261 262 263 264 265 266 267 268 269 270 271 272
static int linear_add(mddev_t *mddev, mdk_rdev_t *rdev)
{
	/* Adding a drive to a linear array allows the array to grow.
	 * It is permitted if the new drive has a matching superblock
	 * already on it, with raid_disk equal to raid_disks.
	 * It is achieved by creating a new linear_private_data structure
	 * and swapping it in in-place of the current one.
	 * The current one is never freed until the array is stopped.
	 * This avoids races.
	 */
	linear_conf_t *newconf;

273
	if (rdev->saved_raid_disk != mddev->raid_disks)
274 275
		return -EINVAL;

276 277
	rdev->raid_disk = rdev->saved_raid_disk;

278 279 280 281 282 283 284 285
	newconf = linear_conf(mddev,mddev->raid_disks+1);

	if (!newconf)
		return -ENOMEM;

	newconf->prev = mddev_to_conf(mddev);
	mddev->private = newconf;
	mddev->raid_disks++;
286
	mddev->array_sectors = newconf->array_sectors;
287
	set_capacity(mddev->gendisk, mddev->array_sectors);
288
	return 0;
L
Linus Torvalds 已提交
289 290 291 292 293 294 295
}

static int linear_stop (mddev_t *mddev)
{
	linear_conf_t *conf = mddev_to_conf(mddev);
  
	blk_sync_queue(mddev->queue); /* the unplug fn references 'conf'*/
296 297 298 299 300 301
	do {
		linear_conf_t *t = conf->prev;
		kfree(conf->hash_table);
		kfree(conf);
		conf = t;
	} while (conf);
L
Linus Torvalds 已提交
302 303 304 305

	return 0;
}

306
static int linear_make_request (struct request_queue *q, struct bio *bio)
L
Linus Torvalds 已提交
307
{
308
	const int rw = bio_data_dir(bio);
L
Linus Torvalds 已提交
309 310
	mddev_t *mddev = q->queuedata;
	dev_info_t *tmp_dev;
T
Tejun Heo 已提交
311
	int cpu;
L
Linus Torvalds 已提交
312

313
	if (unlikely(bio_barrier(bio))) {
314
		bio_endio(bio, -EOPNOTSUPP);
315 316 317
		return 0;
	}

T
Tejun Heo 已提交
318 319 320 321 322
	cpu = part_stat_lock();
	part_stat_inc(cpu, &mddev->gendisk->part0, ios[rw]);
	part_stat_add(cpu, &mddev->gendisk->part0, sectors[rw],
		      bio_sectors(bio));
	part_stat_unlock();
L
Linus Torvalds 已提交
323 324 325

	tmp_dev = which_dev(mddev, bio->bi_sector);
    
326 327 328 329
	if (unlikely(bio->bi_sector >= (tmp_dev->num_sectors +
					tmp_dev->start_sector)
		     || (bio->bi_sector <
			 tmp_dev->start_sector))) {
L
Linus Torvalds 已提交
330 331
		char b[BDEVNAME_SIZE];

332 333 334
		printk("linear_make_request: Sector %llu out of bounds on "
			"dev %s: %llu sectors, offset %llu\n",
			(unsigned long long)bio->bi_sector,
L
Linus Torvalds 已提交
335
			bdevname(tmp_dev->rdev->bdev, b),
336 337
			(unsigned long long)tmp_dev->num_sectors,
			(unsigned long long)tmp_dev->start_sector);
338
		bio_io_error(bio);
L
Linus Torvalds 已提交
339 340 341
		return 0;
	}
	if (unlikely(bio->bi_sector + (bio->bi_size >> 9) >
342
		     tmp_dev->start_sector + tmp_dev->num_sectors)) {
L
Linus Torvalds 已提交
343 344 345 346
		/* This bio crosses a device boundary, so we have to
		 * split it.
		 */
		struct bio_pair *bp;
347

D
Denis ChengRq 已提交
348
		bp = bio_split(bio,
349 350 351
			       tmp_dev->start_sector + tmp_dev->num_sectors
			       - bio->bi_sector);

L
Linus Torvalds 已提交
352 353 354 355 356 357 358 359 360
		if (linear_make_request(q, &bp->bio1))
			generic_make_request(&bp->bio1);
		if (linear_make_request(q, &bp->bio2))
			generic_make_request(&bp->bio2);
		bio_pair_release(bp);
		return 0;
	}
		    
	bio->bi_bdev = tmp_dev->rdev->bdev;
361 362
	bio->bi_sector = bio->bi_sector - tmp_dev->start_sector
		+ tmp_dev->rdev->data_offset;
L
Linus Torvalds 已提交
363 364 365 366 367 368 369 370 371 372 373

	return 1;
}

static void linear_status (struct seq_file *seq, mddev_t *mddev)
{

	seq_printf(seq, " %dk rounding", mddev->chunk_size/1024);
}


374
static struct mdk_personality linear_personality =
L
Linus Torvalds 已提交
375 376
{
	.name		= "linear",
377
	.level		= LEVEL_LINEAR,
L
Linus Torvalds 已提交
378 379 380 381 382
	.owner		= THIS_MODULE,
	.make_request	= linear_make_request,
	.run		= linear_run,
	.stop		= linear_stop,
	.status		= linear_status,
383
	.hot_add_disk	= linear_add,
L
Linus Torvalds 已提交
384 385 386 387
};

static int __init linear_init (void)
{
388
	return register_md_personality (&linear_personality);
L
Linus Torvalds 已提交
389 390 391 392
}

static void linear_exit (void)
{
393
	unregister_md_personality (&linear_personality);
L
Linus Torvalds 已提交
394 395 396 397 398 399
}


module_init(linear_init);
module_exit(linear_exit);
MODULE_LICENSE("GPL");
400 401
MODULE_ALIAS("md-personality-1"); /* LINEAR - deprecated*/
MODULE_ALIAS("md-linear");
402
MODULE_ALIAS("md-level--1");