Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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> |
| 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 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #include <linux/raid/linear.h> |
| 20 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | /* |
| 22 | * find which device holds a particular offset |
| 23 | */ |
| 24 | static inline dev_info_t *which_dev(mddev_t *mddev, sector_t sector) |
| 25 | { |
| 26 | dev_info_t *hash; |
| 27 | linear_conf_t *conf = mddev_to_conf(mddev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | |
| 29 | /* |
| 30 | * sector_div(a,b) returns the remainer and sets a to a/b |
| 31 | */ |
Andre Noll | ab5bd5c | 2008-10-13 11:55:12 +1100 | [diff] [blame] | 32 | sector >>= conf->sector_shift; |
| 33 | (void)sector_div(sector, conf->spacing); |
| 34 | hash = conf->hash_table[sector]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | |
Andre Noll | 6283815 | 2008-10-13 11:55:12 +1100 | [diff] [blame] | 36 | while (sector >= hash->num_sectors + hash->start_sector) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | hash++; |
| 38 | return hash; |
| 39 | } |
| 40 | |
| 41 | /** |
NeilBrown | 15945fe | 2005-09-09 16:23:47 -0700 | [diff] [blame] | 42 | * linear_mergeable_bvec -- tell bio layer if two requests can be merged |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | * @q: request queue |
Alasdair G Kergon | cc371e6 | 2008-07-03 09:53:43 +0200 | [diff] [blame] | 44 | * @bvm: properties of new bio |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | * @biovec: the request that could be merged to it. |
| 46 | * |
| 47 | * Return amount of bytes we can take at this offset |
| 48 | */ |
Alasdair G Kergon | cc371e6 | 2008-07-03 09:53:43 +0200 | [diff] [blame] | 49 | static int linear_mergeable_bvec(struct request_queue *q, |
| 50 | struct bvec_merge_data *bvm, |
| 51 | struct bio_vec *biovec) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | { |
| 53 | mddev_t *mddev = q->queuedata; |
| 54 | dev_info_t *dev0; |
Alasdair G Kergon | cc371e6 | 2008-07-03 09:53:43 +0200 | [diff] [blame] | 55 | unsigned long maxsectors, bio_sectors = bvm->bi_size >> 9; |
| 56 | sector_t sector = bvm->bi_sector + get_start_sect(bvm->bi_bdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | |
| 58 | dev0 = which_dev(mddev, sector); |
Andre Noll | 6283815 | 2008-10-13 11:55:12 +1100 | [diff] [blame] | 59 | maxsectors = dev0->num_sectors - (sector - dev0->start_sector); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | |
| 61 | if (maxsectors < bio_sectors) |
| 62 | maxsectors = 0; |
| 63 | else |
| 64 | maxsectors -= bio_sectors; |
| 65 | |
| 66 | if (maxsectors <= (PAGE_SIZE >> 9 ) && bio_sectors == 0) |
| 67 | return biovec->bv_len; |
| 68 | /* The bytes available at this offset could be really big, |
| 69 | * so we cap at 2^31 to avoid overflow */ |
| 70 | if (maxsectors > (1 << (31-9))) |
| 71 | return 1<<31; |
| 72 | return maxsectors << 9; |
| 73 | } |
| 74 | |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 75 | static void linear_unplug(struct request_queue *q) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | { |
| 77 | mddev_t *mddev = q->queuedata; |
| 78 | linear_conf_t *conf = mddev_to_conf(mddev); |
| 79 | int i; |
| 80 | |
| 81 | for (i=0; i < mddev->raid_disks; i++) { |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 82 | struct request_queue *r_queue = bdev_get_queue(conf->disks[i].rdev->bdev); |
Alan D. Brunelle | 2ad8b1e | 2007-11-07 14:26:56 -0500 | [diff] [blame] | 83 | blk_unplug(r_queue); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | } |
| 85 | } |
| 86 | |
NeilBrown | 26be34d | 2006-10-03 01:15:53 -0700 | [diff] [blame] | 87 | static int linear_congested(void *data, int bits) |
| 88 | { |
| 89 | mddev_t *mddev = data; |
| 90 | linear_conf_t *conf = mddev_to_conf(mddev); |
| 91 | int i, ret = 0; |
| 92 | |
| 93 | for (i = 0; i < mddev->raid_disks && !ret ; i++) { |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 94 | struct request_queue *q = bdev_get_queue(conf->disks[i].rdev->bdev); |
NeilBrown | 26be34d | 2006-10-03 01:15:53 -0700 | [diff] [blame] | 95 | ret |= bdi_congested(&q->backing_dev_info, bits); |
| 96 | } |
| 97 | return ret; |
| 98 | } |
| 99 | |
NeilBrown | 7c7546c | 2006-06-26 00:27:41 -0700 | [diff] [blame] | 100 | static linear_conf_t *linear_conf(mddev_t *mddev, int raid_disks) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | { |
| 102 | linear_conf_t *conf; |
| 103 | dev_info_t **table; |
| 104 | mdk_rdev_t *rdev; |
| 105 | int i, nb_zone, cnt; |
Andre Noll | 23242fb | 2008-10-13 11:55:12 +1100 | [diff] [blame] | 106 | sector_t min_sectors; |
Andre Noll | 6283815 | 2008-10-13 11:55:12 +1100 | [diff] [blame] | 107 | sector_t curr_sector; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | struct list_head *tmp; |
| 109 | |
NeilBrown | 7c7546c | 2006-06-26 00:27:41 -0700 | [diff] [blame] | 110 | conf = kzalloc (sizeof (*conf) + raid_disks*sizeof(dev_info_t), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | GFP_KERNEL); |
| 112 | if (!conf) |
NeilBrown | 7c7546c | 2006-06-26 00:27:41 -0700 | [diff] [blame] | 113 | return NULL; |
| 114 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | cnt = 0; |
Andre Noll | d6e2215 | 2008-07-21 17:05:25 +1000 | [diff] [blame] | 116 | conf->array_sectors = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | |
NeilBrown | d089c6a | 2008-02-06 01:39:59 -0800 | [diff] [blame] | 118 | rdev_for_each(rdev, tmp, mddev) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | int j = rdev->raid_disk; |
| 120 | dev_info_t *disk = conf->disks + j; |
| 121 | |
Nikanth Karthikesan | 1386451 | 2008-06-28 08:31:19 +1000 | [diff] [blame] | 122 | if (j < 0 || j >= raid_disks || disk->rdev) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | printk("linear: disk numbering problem. Aborting!\n"); |
| 124 | goto out; |
| 125 | } |
| 126 | |
| 127 | disk->rdev = rdev; |
| 128 | |
| 129 | blk_queue_stack_limits(mddev->queue, |
| 130 | rdev->bdev->bd_disk->queue); |
| 131 | /* as we don't honour merge_bvec_fn, we must never risk |
| 132 | * violating it, so limit ->max_sector to one PAGE, as |
| 133 | * a one page request is never in violation. |
| 134 | */ |
| 135 | if (rdev->bdev->bd_disk->queue->merge_bvec_fn && |
| 136 | mddev->queue->max_sectors > (PAGE_SIZE>>9)) |
| 137 | blk_queue_max_sectors(mddev->queue, PAGE_SIZE>>9); |
| 138 | |
Andre Noll | 6283815 | 2008-10-13 11:55:12 +1100 | [diff] [blame] | 139 | disk->num_sectors = rdev->size * 2; |
Andre Noll | d6e2215 | 2008-07-21 17:05:25 +1000 | [diff] [blame] | 140 | conf->array_sectors += rdev->size * 2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | cnt++; |
| 143 | } |
NeilBrown | 7c7546c | 2006-06-26 00:27:41 -0700 | [diff] [blame] | 144 | if (cnt != raid_disks) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | printk("linear: not enough drives present. Aborting!\n"); |
| 146 | goto out; |
| 147 | } |
| 148 | |
Andre Noll | 23242fb | 2008-10-13 11:55:12 +1100 | [diff] [blame] | 149 | min_sectors = conf->array_sectors; |
| 150 | sector_div(min_sectors, PAGE_SIZE/sizeof(struct dev_info *)); |
Andre Noll | f1cd14a | 2008-11-06 19:41:24 +1100 | [diff] [blame] | 151 | if (min_sectors == 0) |
| 152 | min_sectors = 1; |
NeilBrown | 15945fe | 2005-09-09 16:23:47 -0700 | [diff] [blame] | 153 | |
Andre Noll | 23242fb | 2008-10-13 11:55:12 +1100 | [diff] [blame] | 154 | /* min_sectors is the minimum spacing that will fit the hash |
NeilBrown | 15945fe | 2005-09-09 16:23:47 -0700 | [diff] [blame] | 155 | * table in one PAGE. This may be much smaller than needed. |
| 156 | * We find the smallest non-terminal set of consecutive devices |
Andre Noll | 23242fb | 2008-10-13 11:55:12 +1100 | [diff] [blame] | 157 | * that is larger than min_sectors and use the size of that as |
NeilBrown | 15945fe | 2005-09-09 16:23:47 -0700 | [diff] [blame] | 158 | * the actual spacing |
| 159 | */ |
Andre Noll | ab5bd5c | 2008-10-13 11:55:12 +1100 | [diff] [blame] | 160 | conf->spacing = conf->array_sectors; |
NeilBrown | 15945fe | 2005-09-09 16:23:47 -0700 | [diff] [blame] | 161 | for (i=0; i < cnt-1 ; i++) { |
Andre Noll | 23242fb | 2008-10-13 11:55:12 +1100 | [diff] [blame] | 162 | sector_t tmp = 0; |
NeilBrown | 15945fe | 2005-09-09 16:23:47 -0700 | [diff] [blame] | 163 | int j; |
Andre Noll | 23242fb | 2008-10-13 11:55:12 +1100 | [diff] [blame] | 164 | for (j = i; j < cnt - 1 && tmp < min_sectors; j++) |
| 165 | tmp += conf->disks[j].num_sectors; |
Andre Noll | ab5bd5c | 2008-10-13 11:55:12 +1100 | [diff] [blame] | 166 | if (tmp >= min_sectors && tmp < conf->spacing) |
| 167 | conf->spacing = tmp; |
NeilBrown | 15945fe | 2005-09-09 16:23:47 -0700 | [diff] [blame] | 168 | } |
| 169 | |
Andre Noll | ab5bd5c | 2008-10-13 11:55:12 +1100 | [diff] [blame] | 170 | /* spacing may be too large for sector_div to work with, |
NeilBrown | 15945fe | 2005-09-09 16:23:47 -0700 | [diff] [blame] | 171 | * so we might need to pre-shift |
| 172 | */ |
Andre Noll | ab5bd5c | 2008-10-13 11:55:12 +1100 | [diff] [blame] | 173 | conf->sector_shift = 0; |
NeilBrown | 15945fe | 2005-09-09 16:23:47 -0700 | [diff] [blame] | 174 | if (sizeof(sector_t) > sizeof(u32)) { |
Andre Noll | ab5bd5c | 2008-10-13 11:55:12 +1100 | [diff] [blame] | 175 | sector_t space = conf->spacing; |
NeilBrown | 15945fe | 2005-09-09 16:23:47 -0700 | [diff] [blame] | 176 | while (space > (sector_t)(~(u32)0)) { |
| 177 | space >>= 1; |
Andre Noll | ab5bd5c | 2008-10-13 11:55:12 +1100 | [diff] [blame] | 178 | conf->sector_shift++; |
NeilBrown | 15945fe | 2005-09-09 16:23:47 -0700 | [diff] [blame] | 179 | } |
| 180 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | /* |
| 182 | * This code was restructured to work around a gcc-2.95.3 internal |
| 183 | * compiler error. Alter it with care. |
| 184 | */ |
| 185 | { |
| 186 | sector_t sz; |
| 187 | unsigned round; |
| 188 | unsigned long base; |
| 189 | |
Andre Noll | ab5bd5c | 2008-10-13 11:55:12 +1100 | [diff] [blame] | 190 | sz = conf->array_sectors >> conf->sector_shift; |
NeilBrown | 15945fe | 2005-09-09 16:23:47 -0700 | [diff] [blame] | 191 | sz += 1; /* force round-up */ |
Andre Noll | ab5bd5c | 2008-10-13 11:55:12 +1100 | [diff] [blame] | 192 | base = conf->spacing >> conf->sector_shift; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | round = sector_div(sz, base); |
NeilBrown | 15945fe | 2005-09-09 16:23:47 -0700 | [diff] [blame] | 194 | nb_zone = sz + (round ? 1 : 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | } |
NeilBrown | 15945fe | 2005-09-09 16:23:47 -0700 | [diff] [blame] | 196 | BUG_ON(nb_zone > PAGE_SIZE / sizeof(struct dev_info *)); |
| 197 | |
| 198 | conf->hash_table = kmalloc (sizeof (struct dev_info *) * nb_zone, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | GFP_KERNEL); |
| 200 | if (!conf->hash_table) |
| 201 | goto out; |
| 202 | |
| 203 | /* |
| 204 | * Here we generate the linear hash table |
NeilBrown | 15945fe | 2005-09-09 16:23:47 -0700 | [diff] [blame] | 205 | * First calculate the device offsets. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | */ |
Andre Noll | 6283815 | 2008-10-13 11:55:12 +1100 | [diff] [blame] | 207 | conf->disks[0].start_sector = 0; |
NeilBrown | a778b73 | 2007-05-23 13:58:10 -0700 | [diff] [blame] | 208 | for (i = 1; i < raid_disks; i++) |
Andre Noll | 6283815 | 2008-10-13 11:55:12 +1100 | [diff] [blame] | 209 | conf->disks[i].start_sector = |
| 210 | conf->disks[i-1].start_sector + |
| 211 | conf->disks[i-1].num_sectors; |
NeilBrown | 15945fe | 2005-09-09 16:23:47 -0700 | [diff] [blame] | 212 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | table = conf->hash_table; |
NeilBrown | 15945fe | 2005-09-09 16:23:47 -0700 | [diff] [blame] | 214 | i = 0; |
Andre Noll | 6283815 | 2008-10-13 11:55:12 +1100 | [diff] [blame] | 215 | for (curr_sector = 0; |
| 216 | curr_sector < conf->array_sectors; |
Andre Noll | ab5bd5c | 2008-10-13 11:55:12 +1100 | [diff] [blame] | 217 | curr_sector += conf->spacing) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 218 | |
NeilBrown | a778b73 | 2007-05-23 13:58:10 -0700 | [diff] [blame] | 219 | while (i < raid_disks-1 && |
Andre Noll | 6283815 | 2008-10-13 11:55:12 +1100 | [diff] [blame] | 220 | curr_sector >= conf->disks[i+1].start_sector) |
NeilBrown | 15945fe | 2005-09-09 16:23:47 -0700 | [diff] [blame] | 221 | i++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | |
NeilBrown | 15945fe | 2005-09-09 16:23:47 -0700 | [diff] [blame] | 223 | *table ++ = conf->disks + i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | } |
NeilBrown | 15945fe | 2005-09-09 16:23:47 -0700 | [diff] [blame] | 225 | |
Andre Noll | ab5bd5c | 2008-10-13 11:55:12 +1100 | [diff] [blame] | 226 | if (conf->sector_shift) { |
| 227 | conf->spacing >>= conf->sector_shift; |
| 228 | /* round spacing up so that when we divide by it, |
NeilBrown | 15945fe | 2005-09-09 16:23:47 -0700 | [diff] [blame] | 229 | * we err on the side of "too-low", which is safest. |
| 230 | */ |
Andre Noll | ab5bd5c | 2008-10-13 11:55:12 +1100 | [diff] [blame] | 231 | conf->spacing++; |
NeilBrown | 15945fe | 2005-09-09 16:23:47 -0700 | [diff] [blame] | 232 | } |
| 233 | |
| 234 | BUG_ON(table - conf->hash_table > nb_zone); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | |
NeilBrown | 7c7546c | 2006-06-26 00:27:41 -0700 | [diff] [blame] | 236 | return conf; |
| 237 | |
| 238 | out: |
| 239 | kfree(conf); |
| 240 | return NULL; |
| 241 | } |
| 242 | |
| 243 | static int linear_run (mddev_t *mddev) |
| 244 | { |
| 245 | linear_conf_t *conf; |
| 246 | |
Neil Brown | e7e72bf | 2008-05-14 16:05:54 -0700 | [diff] [blame] | 247 | mddev->queue->queue_lock = &mddev->queue->__queue_lock; |
NeilBrown | 7c7546c | 2006-06-26 00:27:41 -0700 | [diff] [blame] | 248 | conf = linear_conf(mddev, mddev->raid_disks); |
| 249 | |
| 250 | if (!conf) |
| 251 | return 1; |
| 252 | mddev->private = conf; |
Andre Noll | d6e2215 | 2008-07-21 17:05:25 +1000 | [diff] [blame] | 253 | mddev->array_sectors = conf->array_sectors; |
NeilBrown | 7c7546c | 2006-06-26 00:27:41 -0700 | [diff] [blame] | 254 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 255 | blk_queue_merge_bvec(mddev->queue, linear_mergeable_bvec); |
| 256 | mddev->queue->unplug_fn = linear_unplug; |
NeilBrown | 26be34d | 2006-10-03 01:15:53 -0700 | [diff] [blame] | 257 | mddev->queue->backing_dev_info.congested_fn = linear_congested; |
| 258 | mddev->queue->backing_dev_info.congested_data = mddev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 259 | return 0; |
NeilBrown | 7c7546c | 2006-06-26 00:27:41 -0700 | [diff] [blame] | 260 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | |
NeilBrown | 7c7546c | 2006-06-26 00:27:41 -0700 | [diff] [blame] | 262 | static int linear_add(mddev_t *mddev, mdk_rdev_t *rdev) |
| 263 | { |
| 264 | /* Adding a drive to a linear array allows the array to grow. |
| 265 | * It is permitted if the new drive has a matching superblock |
| 266 | * already on it, with raid_disk equal to raid_disks. |
| 267 | * It is achieved by creating a new linear_private_data structure |
| 268 | * and swapping it in in-place of the current one. |
| 269 | * The current one is never freed until the array is stopped. |
| 270 | * This avoids races. |
| 271 | */ |
| 272 | linear_conf_t *newconf; |
| 273 | |
NeilBrown | a778b73 | 2007-05-23 13:58:10 -0700 | [diff] [blame] | 274 | if (rdev->saved_raid_disk != mddev->raid_disks) |
NeilBrown | 7c7546c | 2006-06-26 00:27:41 -0700 | [diff] [blame] | 275 | return -EINVAL; |
| 276 | |
NeilBrown | a778b73 | 2007-05-23 13:58:10 -0700 | [diff] [blame] | 277 | rdev->raid_disk = rdev->saved_raid_disk; |
| 278 | |
NeilBrown | 7c7546c | 2006-06-26 00:27:41 -0700 | [diff] [blame] | 279 | newconf = linear_conf(mddev,mddev->raid_disks+1); |
| 280 | |
| 281 | if (!newconf) |
| 282 | return -ENOMEM; |
| 283 | |
| 284 | newconf->prev = mddev_to_conf(mddev); |
| 285 | mddev->private = newconf; |
| 286 | mddev->raid_disks++; |
Andre Noll | d6e2215 | 2008-07-21 17:05:25 +1000 | [diff] [blame] | 287 | mddev->array_sectors = newconf->array_sectors; |
Andre Noll | f233ea5 | 2008-07-21 17:05:22 +1000 | [diff] [blame] | 288 | set_capacity(mddev->gendisk, mddev->array_sectors); |
NeilBrown | 7c7546c | 2006-06-26 00:27:41 -0700 | [diff] [blame] | 289 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | } |
| 291 | |
| 292 | static int linear_stop (mddev_t *mddev) |
| 293 | { |
| 294 | linear_conf_t *conf = mddev_to_conf(mddev); |
| 295 | |
| 296 | blk_sync_queue(mddev->queue); /* the unplug fn references 'conf'*/ |
NeilBrown | 7c7546c | 2006-06-26 00:27:41 -0700 | [diff] [blame] | 297 | do { |
| 298 | linear_conf_t *t = conf->prev; |
| 299 | kfree(conf->hash_table); |
| 300 | kfree(conf); |
| 301 | conf = t; |
| 302 | } while (conf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 303 | |
| 304 | return 0; |
| 305 | } |
| 306 | |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 307 | static int linear_make_request (struct request_queue *q, struct bio *bio) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 | { |
Jens Axboe | a362357 | 2005-11-01 09:26:16 +0100 | [diff] [blame] | 309 | const int rw = bio_data_dir(bio); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | mddev_t *mddev = q->queuedata; |
| 311 | dev_info_t *tmp_dev; |
Tejun Heo | c995905 | 2008-08-25 19:47:21 +0900 | [diff] [blame] | 312 | int cpu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 313 | |
NeilBrown | e5dcdd8 | 2005-09-09 16:23:41 -0700 | [diff] [blame] | 314 | if (unlikely(bio_barrier(bio))) { |
NeilBrown | 6712ecf | 2007-09-27 12:47:43 +0200 | [diff] [blame] | 315 | bio_endio(bio, -EOPNOTSUPP); |
NeilBrown | e5dcdd8 | 2005-09-09 16:23:41 -0700 | [diff] [blame] | 316 | return 0; |
| 317 | } |
| 318 | |
Tejun Heo | 074a7ac | 2008-08-25 19:56:14 +0900 | [diff] [blame] | 319 | cpu = part_stat_lock(); |
| 320 | part_stat_inc(cpu, &mddev->gendisk->part0, ios[rw]); |
| 321 | part_stat_add(cpu, &mddev->gendisk->part0, sectors[rw], |
| 322 | bio_sectors(bio)); |
| 323 | part_stat_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 324 | |
| 325 | tmp_dev = which_dev(mddev, bio->bi_sector); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | |
Andre Noll | 6283815 | 2008-10-13 11:55:12 +1100 | [diff] [blame] | 327 | if (unlikely(bio->bi_sector >= (tmp_dev->num_sectors + |
| 328 | tmp_dev->start_sector) |
| 329 | || (bio->bi_sector < |
| 330 | tmp_dev->start_sector))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 331 | char b[BDEVNAME_SIZE]; |
| 332 | |
Andre Noll | 6283815 | 2008-10-13 11:55:12 +1100 | [diff] [blame] | 333 | printk("linear_make_request: Sector %llu out of bounds on " |
| 334 | "dev %s: %llu sectors, offset %llu\n", |
| 335 | (unsigned long long)bio->bi_sector, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 336 | bdevname(tmp_dev->rdev->bdev, b), |
Andre Noll | 6283815 | 2008-10-13 11:55:12 +1100 | [diff] [blame] | 337 | (unsigned long long)tmp_dev->num_sectors, |
| 338 | (unsigned long long)tmp_dev->start_sector); |
NeilBrown | 6712ecf | 2007-09-27 12:47:43 +0200 | [diff] [blame] | 339 | bio_io_error(bio); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 340 | return 0; |
| 341 | } |
| 342 | if (unlikely(bio->bi_sector + (bio->bi_size >> 9) > |
Andre Noll | 6283815 | 2008-10-13 11:55:12 +1100 | [diff] [blame] | 343 | tmp_dev->start_sector + tmp_dev->num_sectors)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | /* This bio crosses a device boundary, so we have to |
| 345 | * split it. |
| 346 | */ |
| 347 | struct bio_pair *bp; |
Andre Noll | 6283815 | 2008-10-13 11:55:12 +1100 | [diff] [blame] | 348 | |
Denis ChengRq | 6feef53 | 2008-10-09 08:57:05 +0200 | [diff] [blame] | 349 | bp = bio_split(bio, |
Andre Noll | 6283815 | 2008-10-13 11:55:12 +1100 | [diff] [blame] | 350 | tmp_dev->start_sector + tmp_dev->num_sectors |
| 351 | - bio->bi_sector); |
| 352 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 | if (linear_make_request(q, &bp->bio1)) |
| 354 | generic_make_request(&bp->bio1); |
| 355 | if (linear_make_request(q, &bp->bio2)) |
| 356 | generic_make_request(&bp->bio2); |
| 357 | bio_pair_release(bp); |
| 358 | return 0; |
| 359 | } |
| 360 | |
| 361 | bio->bi_bdev = tmp_dev->rdev->bdev; |
Andre Noll | 6283815 | 2008-10-13 11:55:12 +1100 | [diff] [blame] | 362 | bio->bi_sector = bio->bi_sector - tmp_dev->start_sector |
| 363 | + tmp_dev->rdev->data_offset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 364 | |
| 365 | return 1; |
| 366 | } |
| 367 | |
| 368 | static void linear_status (struct seq_file *seq, mddev_t *mddev) |
| 369 | { |
| 370 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 371 | seq_printf(seq, " %dk rounding", mddev->chunk_size/1024); |
| 372 | } |
| 373 | |
| 374 | |
NeilBrown | 2604b70 | 2006-01-06 00:20:36 -0800 | [diff] [blame] | 375 | static struct mdk_personality linear_personality = |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | { |
| 377 | .name = "linear", |
NeilBrown | 2604b70 | 2006-01-06 00:20:36 -0800 | [diff] [blame] | 378 | .level = LEVEL_LINEAR, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 379 | .owner = THIS_MODULE, |
| 380 | .make_request = linear_make_request, |
| 381 | .run = linear_run, |
| 382 | .stop = linear_stop, |
| 383 | .status = linear_status, |
NeilBrown | 7c7546c | 2006-06-26 00:27:41 -0700 | [diff] [blame] | 384 | .hot_add_disk = linear_add, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | }; |
| 386 | |
| 387 | static int __init linear_init (void) |
| 388 | { |
NeilBrown | 2604b70 | 2006-01-06 00:20:36 -0800 | [diff] [blame] | 389 | return register_md_personality (&linear_personality); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 390 | } |
| 391 | |
| 392 | static void linear_exit (void) |
| 393 | { |
NeilBrown | 2604b70 | 2006-01-06 00:20:36 -0800 | [diff] [blame] | 394 | unregister_md_personality (&linear_personality); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 395 | } |
| 396 | |
| 397 | |
| 398 | module_init(linear_init); |
| 399 | module_exit(linear_exit); |
| 400 | MODULE_LICENSE("GPL"); |
NeilBrown | d9d166c | 2006-01-06 00:20:51 -0800 | [diff] [blame] | 401 | MODULE_ALIAS("md-personality-1"); /* LINEAR - deprecated*/ |
| 402 | MODULE_ALIAS("md-linear"); |
NeilBrown | 2604b70 | 2006-01-06 00:20:36 -0800 | [diff] [blame] | 403 | MODULE_ALIAS("md-level--1"); |