md-linear.c 9.0 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12
/*
   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.
13

L
Linus Torvalds 已提交
14 15
   You should have received a copy of the GNU General Public License
   (for example /usr/src/linux/COPYING); if not, write to the Free
16
   Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
L
Linus Torvalds 已提交
17 18
*/

19 20 21
#include <linux/blkdev.h>
#include <linux/raid/md_u.h>
#include <linux/seq_file.h>
22
#include <linux/module.h>
23
#include <linux/slab.h>
24
#include <trace/events/block.h>
25
#include "md.h"
26
#include "md-linear.h"
L
Linus Torvalds 已提交
27 28

/*
29
 * find which device holds a particular offset
L
Linus Torvalds 已提交
30
 */
31
static inline struct dev_info *which_dev(struct mddev *mddev, sector_t sector)
L
Linus Torvalds 已提交
32
{
33
	int lo, mid, hi;
34
	struct linear_conf *conf;
L
Linus Torvalds 已提交
35

36 37
	lo = 0;
	hi = mddev->raid_disks - 1;
38
	conf = mddev->private;
L
Linus Torvalds 已提交
39

40 41 42 43 44 45 46 47 48 49 50 51 52 53
	/*
	 * Binary Search
	 */

	while (hi > lo) {

		mid = (hi + lo) / 2;
		if (sector < conf->disks[mid].end_sector)
			hi = mid;
		else
			lo = mid + 1;
	}

	return conf->disks + lo;
L
Linus Torvalds 已提交
54 55
}

56 57 58 59 60 61
/*
 * In linear_congested() conf->raid_disks is used as a copy of
 * mddev->raid_disks to iterate conf->disks[], because conf->raid_disks
 * and conf->disks[] are created in linear_conf(), they are always
 * consitent with each other, but mddev->raid_disks does not.
 */
62
static int linear_congested(struct mddev *mddev, int bits)
63
{
64
	struct linear_conf *conf;
65 66
	int i, ret = 0;

67 68
	rcu_read_lock();
	conf = rcu_dereference(mddev->private);
69

70
	for (i = 0; i < conf->raid_disks && !ret ; i++) {
71
		struct request_queue *q = bdev_get_queue(conf->disks[i].rdev->bdev);
72
		ret |= bdi_congested(q->backing_dev_info, bits);
73
	}
74

75
	rcu_read_unlock();
76 77 78
	return ret;
}

79
static sector_t linear_size(struct mddev *mddev, sector_t sectors, int raid_disks)
80
{
81
	struct linear_conf *conf;
82
	sector_t array_sectors;
83

84
	conf = mddev->private;
85 86
	WARN_ONCE(sectors || raid_disks,
		  "%s does not support generic reshape\n", __func__);
87
	array_sectors = conf->array_sectors;
88

89
	return array_sectors;
90 91
}

92
static struct linear_conf *linear_conf(struct mddev *mddev, int raid_disks)
L
Linus Torvalds 已提交
93
{
94
	struct linear_conf *conf;
95
	struct md_rdev *rdev;
96
	int i, cnt;
S
Shaohua Li 已提交
97
	bool discard_supported = false;
L
Linus Torvalds 已提交
98

99
	conf = kzalloc (sizeof (*conf) + raid_disks*sizeof(struct dev_info),
L
Linus Torvalds 已提交
100 101
			GFP_KERNEL);
	if (!conf)
102 103
		return NULL;

L
Linus Torvalds 已提交
104
	cnt = 0;
105
	conf->array_sectors = 0;
L
Linus Torvalds 已提交
106

N
NeilBrown 已提交
107
	rdev_for_each(rdev, mddev) {
L
Linus Torvalds 已提交
108
		int j = rdev->raid_disk;
109
		struct dev_info *disk = conf->disks + j;
110
		sector_t sectors;
L
Linus Torvalds 已提交
111

112
		if (j < 0 || j >= raid_disks || disk->rdev) {
113 114
			pr_warn("md/linear:%s: disk numbering problem. Aborting!\n",
				mdname(mddev));
L
Linus Torvalds 已提交
115 116 117 118
			goto out;
		}

		disk->rdev = rdev;
119 120 121 122 123
		if (mddev->chunk_sectors) {
			sectors = rdev->sectors;
			sector_div(sectors, mddev->chunk_sectors);
			rdev->sectors = sectors * mddev->chunk_sectors;
		}
L
Linus Torvalds 已提交
124

125 126
		disk_stack_limits(mddev->gendisk, rdev->bdev,
				  rdev->data_offset << 9);
L
Linus Torvalds 已提交
127

128
		conf->array_sectors += rdev->sectors;
L
Linus Torvalds 已提交
129
		cnt++;
130

S
Shaohua Li 已提交
131 132
		if (blk_queue_discard(bdev_get_queue(rdev->bdev)))
			discard_supported = true;
L
Linus Torvalds 已提交
133
	}
134
	if (cnt != raid_disks) {
135 136
		pr_warn("md/linear:%s: not enough drives present. Aborting!\n",
			mdname(mddev));
L
Linus Torvalds 已提交
137 138 139
		goto out;
	}

S
Shaohua Li 已提交
140
	if (!discard_supported)
141
		blk_queue_flag_clear(QUEUE_FLAG_DISCARD, mddev->queue);
S
Shaohua Li 已提交
142
	else
143
		blk_queue_flag_set(QUEUE_FLAG_DISCARD, mddev->queue);
S
Shaohua Li 已提交
144

L
Linus Torvalds 已提交
145
	/*
146
	 * Here we calculate the device offsets.
L
Linus Torvalds 已提交
147
	 */
148 149
	conf->disks[0].end_sector = conf->disks[0].rdev->sectors;

150
	for (i = 1; i < raid_disks; i++)
151 152 153
		conf->disks[i].end_sector =
			conf->disks[i-1].end_sector +
			conf->disks[i].rdev->sectors;
154

155 156 157 158 159 160 161 162 163 164 165 166 167
	/*
	 * conf->raid_disks is copy of mddev->raid_disks. The reason to
	 * keep a copy of mddev->raid_disks in struct linear_conf is,
	 * mddev->raid_disks may not be consistent with pointers number of
	 * conf->disks[] when it is updated in linear_add() and used to
	 * iterate old conf->disks[] earray in linear_congested().
	 * Here conf->raid_disks is always consitent with number of
	 * pointers in conf->disks[] array, and mddev->private is updated
	 * with rcu_assign_pointer() in linear_addr(), such race can be
	 * avoided.
	 */
	conf->raid_disks = raid_disks;

168 169 170 171 172 173 174
	return conf;

out:
	kfree(conf);
	return NULL;
}

175
static int linear_run (struct mddev *mddev)
176
{
177
	struct linear_conf *conf;
178
	int ret;
179

180 181
	if (md_check_no_bitmap(mddev))
		return -EINVAL;
182 183 184 185 186
	conf = linear_conf(mddev, mddev->raid_disks);

	if (!conf)
		return 1;
	mddev->private = conf;
187
	md_set_array_sectors(mddev, linear_size(mddev, 0, 0));
188

189 190 191 192 193 194
	ret =  md_integrity_register(mddev);
	if (ret) {
		kfree(conf);
		mddev->private = NULL;
	}
	return ret;
195
}
L
Linus Torvalds 已提交
196

197
static int linear_add(struct mddev *mddev, struct md_rdev *rdev)
198 199 200 201 202 203 204 205 206
{
	/* 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.
	 */
207
	struct linear_conf *newconf, *oldconf;
208

209
	if (rdev->saved_raid_disk != mddev->raid_disks)
210 211
		return -EINVAL;

212
	rdev->raid_disk = rdev->saved_raid_disk;
213
	rdev->saved_raid_disk = -1;
214

215 216 217 218 219
	newconf = linear_conf(mddev,mddev->raid_disks+1);

	if (!newconf)
		return -ENOMEM;

220 221 222 223 224 225
	/* newconf->raid_disks already keeps a copy of * the increased
	 * value of mddev->raid_disks, WARN_ONCE() is just used to make
	 * sure of this. It is possible that oldconf is still referenced
	 * in linear_congested(), therefore kfree_rcu() is used to free
	 * oldconf until no one uses it anymore.
	 */
226
	mddev_suspend(mddev);
S
Shaohua Li 已提交
227 228
	oldconf = rcu_dereference_protected(mddev->private,
			lockdep_is_held(&mddev->reconfig_mutex));
229
	mddev->raid_disks++;
230 231 232
	WARN_ONCE(mddev->raid_disks != newconf->raid_disks,
		"copied raid_disks doesn't match mddev->raid_disks");
	rcu_assign_pointer(mddev->private, newconf);
233
	md_set_array_sectors(mddev, linear_size(mddev, 0, 0));
234
	set_capacity(mddev->gendisk, mddev->array_sectors);
235
	mddev_resume(mddev);
236
	revalidate_disk(mddev->gendisk);
237
	kfree_rcu(oldconf, rcu);
238
	return 0;
L
Linus Torvalds 已提交
239 240
}

N
NeilBrown 已提交
241
static void linear_free(struct mddev *mddev, void *priv)
L
Linus Torvalds 已提交
242
{
N
NeilBrown 已提交
243
	struct linear_conf *conf = priv;
244

245
	kfree(conf);
L
Linus Torvalds 已提交
246 247
}

248
static bool linear_make_request(struct mddev *mddev, struct bio *bio)
L
Linus Torvalds 已提交
249
{
K
Kent Overstreet 已提交
250
	char b[BDEVNAME_SIZE];
251
	struct dev_info *tmp_dev;
K
Kent Overstreet 已提交
252
	sector_t start_sector, end_sector, data_offset;
N
NeilBrown 已提交
253
	sector_t bio_sector = bio->bi_iter.bi_sector;
L
Linus Torvalds 已提交
254

J
Jens Axboe 已提交
255
	if (unlikely(bio->bi_opf & REQ_PREFLUSH)) {
T
Tejun Heo 已提交
256
		md_flush_request(mddev, bio);
257
		return true;
258 259
	}

N
NeilBrown 已提交
260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276
	tmp_dev = which_dev(mddev, bio_sector);
	start_sector = tmp_dev->end_sector - tmp_dev->rdev->sectors;
	end_sector = tmp_dev->end_sector;
	data_offset = tmp_dev->rdev->data_offset;

	if (unlikely(bio_sector >= end_sector ||
		     bio_sector < start_sector))
		goto out_of_bounds;

	if (unlikely(bio_end_sector(bio) > end_sector)) {
		/* This bio crosses a device boundary, so we have to split it */
		struct bio *split = bio_split(bio, end_sector - bio_sector,
					      GFP_NOIO, mddev->bio_set);
		bio_chain(split, bio);
		generic_make_request(bio);
		bio = split;
	}
S
Shaohua Li 已提交
277

278
	bio_set_dev(bio, tmp_dev->rdev->bdev);
N
NeilBrown 已提交
279 280 281 282
	bio->bi_iter.bi_sector = bio->bi_iter.bi_sector -
		start_sector + data_offset;

	if (unlikely((bio_op(bio) == REQ_OP_DISCARD) &&
283
		     !blk_queue_discard(bio->bi_disk->queue))) {
N
NeilBrown 已提交
284 285 286 287
		/* Just ignore it */
		bio_endio(bio);
	} else {
		if (mddev->gendisk)
288
			trace_block_bio_remap(bio->bi_disk->queue,
N
NeilBrown 已提交
289 290 291
					      bio, disk_devt(mddev->gendisk),
					      bio_sector);
		mddev_check_writesame(mddev, bio);
292
		mddev_check_write_zeroes(mddev, bio);
N
NeilBrown 已提交
293 294
		generic_make_request(bio);
	}
295
	return true;
K
Kent Overstreet 已提交
296 297

out_of_bounds:
298
	pr_err("md/linear:%s: make_request: Sector %llu out of bounds on dev %s: %llu sectors, offset %llu\n",
K
Kent Overstreet 已提交
299 300 301 302 303 304
	       mdname(mddev),
	       (unsigned long long)bio->bi_iter.bi_sector,
	       bdevname(tmp_dev->rdev->bdev, b),
	       (unsigned long long)tmp_dev->rdev->sectors,
	       (unsigned long long)start_sector);
	bio_io_error(bio);
305
	return true;
L
Linus Torvalds 已提交
306 307
}

308
static void linear_status (struct seq_file *seq, struct mddev *mddev)
L
Linus Torvalds 已提交
309
{
310
	seq_printf(seq, " %dk rounding", mddev->chunk_sectors / 2);
L
Linus Torvalds 已提交
311 312
}

313 314 315 316
static void linear_quiesce(struct mddev *mddev, int state)
{
}

317
static struct md_personality linear_personality =
L
Linus Torvalds 已提交
318 319
{
	.name		= "linear",
320
	.level		= LEVEL_LINEAR,
L
Linus Torvalds 已提交
321 322 323
	.owner		= THIS_MODULE,
	.make_request	= linear_make_request,
	.run		= linear_run,
N
NeilBrown 已提交
324
	.free		= linear_free,
L
Linus Torvalds 已提交
325
	.status		= linear_status,
326
	.hot_add_disk	= linear_add,
327
	.size		= linear_size,
328
	.quiesce	= linear_quiesce,
329
	.congested	= linear_congested,
L
Linus Torvalds 已提交
330 331 332 333
};

static int __init linear_init (void)
{
334
	return register_md_personality (&linear_personality);
L
Linus Torvalds 已提交
335 336 337 338
}

static void linear_exit (void)
{
339
	unregister_md_personality (&linear_personality);
L
Linus Torvalds 已提交
340 341 342 343 344
}

module_init(linear_init);
module_exit(linear_exit);
MODULE_LICENSE("GPL");
345
MODULE_DESCRIPTION("Linear device concatenation personality for MD");
346 347
MODULE_ALIAS("md-personality-1"); /* LINEAR - deprecated*/
MODULE_ALIAS("md-linear");
348
MODULE_ALIAS("md-level--1");