Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | raid0.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 | Copyright (C) 1999, 2000 Ingo Molnar, Red Hat |
| 7 | |
| 8 | |
| 9 | RAID-0 management functions. |
| 10 | |
| 11 | This program is free software; you can redistribute it and/or modify |
| 12 | it under the terms of the GNU General Public License as published by |
| 13 | the Free Software Foundation; either version 2, or (at your option) |
| 14 | any later version. |
| 15 | |
| 16 | You should have received a copy of the GNU General Public License |
| 17 | (for example /usr/src/linux/COPYING); if not, write to the Free |
| 18 | Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
| 19 | */ |
| 20 | |
NeilBrown | bff6197 | 2009-03-31 14:33:13 +1100 | [diff] [blame] | 21 | #include <linux/blkdev.h> |
NeilBrown | bff6197 | 2009-03-31 14:33:13 +1100 | [diff] [blame] | 22 | #include <linux/seq_file.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 23 | #include <linux/slab.h> |
NeilBrown | 43b2e5d | 2009-03-31 14:33:13 +1100 | [diff] [blame] | 24 | #include "md.h" |
Christoph Hellwig | ef740c3 | 2009-03-31 14:27:03 +1100 | [diff] [blame] | 25 | #include "raid0.h" |
Trela, Maciej | 9af204c | 2010-03-08 16:02:44 +1100 | [diff] [blame] | 26 | #include "raid5.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 28 | static void raid0_unplug(struct request_queue *q) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | { |
| 30 | mddev_t *mddev = q->queuedata; |
NeilBrown | 070ec55 | 2009-06-16 16:54:21 +1000 | [diff] [blame] | 31 | raid0_conf_t *conf = mddev->private; |
NeilBrown | b414579 | 2009-06-16 16:50:52 +1000 | [diff] [blame] | 32 | mdk_rdev_t **devlist = conf->devlist; |
NeilBrown | 84707f3 | 2010-03-16 17:23:35 +1100 | [diff] [blame] | 33 | int raid_disks = conf->strip_zone[0].nb_dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | int i; |
| 35 | |
NeilBrown | 84707f3 | 2010-03-16 17:23:35 +1100 | [diff] [blame] | 36 | for (i=0; i < raid_disks; i++) { |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 37 | struct request_queue *r_queue = bdev_get_queue(devlist[i]->bdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | |
Alan D. Brunelle | 2ad8b1e | 2007-11-07 14:26:56 -0500 | [diff] [blame] | 39 | blk_unplug(r_queue); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | } |
| 41 | } |
| 42 | |
NeilBrown | 26be34d | 2006-10-03 01:15:53 -0700 | [diff] [blame] | 43 | static int raid0_congested(void *data, int bits) |
| 44 | { |
| 45 | mddev_t *mddev = data; |
NeilBrown | 070ec55 | 2009-06-16 16:54:21 +1000 | [diff] [blame] | 46 | raid0_conf_t *conf = mddev->private; |
NeilBrown | b414579 | 2009-06-16 16:50:52 +1000 | [diff] [blame] | 47 | mdk_rdev_t **devlist = conf->devlist; |
NeilBrown | 84707f3 | 2010-03-16 17:23:35 +1100 | [diff] [blame] | 48 | int raid_disks = conf->strip_zone[0].nb_dev; |
NeilBrown | 26be34d | 2006-10-03 01:15:53 -0700 | [diff] [blame] | 49 | int i, ret = 0; |
| 50 | |
NeilBrown | 3fa841d | 2009-09-23 18:10:29 +1000 | [diff] [blame] | 51 | if (mddev_congested(mddev, bits)) |
| 52 | return 1; |
| 53 | |
NeilBrown | 84707f3 | 2010-03-16 17:23:35 +1100 | [diff] [blame] | 54 | for (i = 0; i < raid_disks && !ret ; i++) { |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 55 | struct request_queue *q = bdev_get_queue(devlist[i]->bdev); |
NeilBrown | 26be34d | 2006-10-03 01:15:53 -0700 | [diff] [blame] | 56 | |
| 57 | ret |= bdi_congested(&q->backing_dev_info, bits); |
| 58 | } |
| 59 | return ret; |
| 60 | } |
| 61 | |
raz ben yehuda | 4699419 | 2009-06-16 17:00:54 +1000 | [diff] [blame] | 62 | /* |
| 63 | * inform the user of the raid configuration |
| 64 | */ |
| 65 | static void dump_zones(mddev_t *mddev) |
| 66 | { |
| 67 | int j, k, h; |
| 68 | sector_t zone_size = 0; |
| 69 | sector_t zone_start = 0; |
| 70 | char b[BDEVNAME_SIZE]; |
| 71 | raid0_conf_t *conf = mddev->private; |
NeilBrown | 84707f3 | 2010-03-16 17:23:35 +1100 | [diff] [blame] | 72 | int raid_disks = conf->strip_zone[0].nb_dev; |
raz ben yehuda | 4699419 | 2009-06-16 17:00:54 +1000 | [diff] [blame] | 73 | printk(KERN_INFO "******* %s configuration *********\n", |
| 74 | mdname(mddev)); |
| 75 | h = 0; |
| 76 | for (j = 0; j < conf->nr_strip_zones; j++) { |
| 77 | printk(KERN_INFO "zone%d=[", j); |
| 78 | for (k = 0; k < conf->strip_zone[j].nb_dev; k++) |
NeilBrown | b5a2096 | 2010-05-03 15:06:27 +1000 | [diff] [blame] | 79 | printk(KERN_CONT "%s/", |
NeilBrown | 84707f3 | 2010-03-16 17:23:35 +1100 | [diff] [blame] | 80 | bdevname(conf->devlist[j*raid_disks |
raz ben yehuda | 4699419 | 2009-06-16 17:00:54 +1000 | [diff] [blame] | 81 | + k]->bdev, b)); |
NeilBrown | b5a2096 | 2010-05-03 15:06:27 +1000 | [diff] [blame] | 82 | printk(KERN_CONT "]\n"); |
raz ben yehuda | 4699419 | 2009-06-16 17:00:54 +1000 | [diff] [blame] | 83 | |
| 84 | zone_size = conf->strip_zone[j].zone_end - zone_start; |
| 85 | printk(KERN_INFO " zone offset=%llukb " |
| 86 | "device offset=%llukb size=%llukb\n", |
| 87 | (unsigned long long)zone_start>>1, |
| 88 | (unsigned long long)conf->strip_zone[j].dev_start>>1, |
| 89 | (unsigned long long)zone_size>>1); |
| 90 | zone_start = conf->strip_zone[j].zone_end; |
| 91 | } |
| 92 | printk(KERN_INFO "**********************************\n\n"); |
| 93 | } |
| 94 | |
Trela, Maciej | 9af204c | 2010-03-08 16:02:44 +1100 | [diff] [blame] | 95 | static int create_strip_zones(mddev_t *mddev, raid0_conf_t **private_conf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | { |
NeilBrown | a9f326e | 2009-09-23 18:06:41 +1000 | [diff] [blame] | 97 | int i, c, err; |
NeilBrown | 49f357a2 | 2009-06-16 16:50:35 +1000 | [diff] [blame] | 98 | sector_t curr_zone_end, sectors; |
NeilBrown | b414579 | 2009-06-16 16:50:52 +1000 | [diff] [blame] | 99 | mdk_rdev_t *smallest, *rdev1, *rdev2, *rdev, **dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | struct strip_zone *zone; |
| 101 | int cnt; |
| 102 | char b[BDEVNAME_SIZE]; |
Andre Noll | ed7b003 | 2009-06-16 16:47:36 +1000 | [diff] [blame] | 103 | raid0_conf_t *conf = kzalloc(sizeof(*conf), GFP_KERNEL); |
| 104 | |
| 105 | if (!conf) |
| 106 | return -ENOMEM; |
Cheng Renquan | 159ec1f | 2009-01-09 08:31:08 +1100 | [diff] [blame] | 107 | list_for_each_entry(rdev1, &mddev->disks, same_set) { |
NeilBrown | b5a2096 | 2010-05-03 15:06:27 +1000 | [diff] [blame] | 108 | printk(KERN_INFO "md/raid0:%s: looking at %s\n", |
| 109 | mdname(mddev), |
| 110 | bdevname(rdev1->bdev, b)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | c = 0; |
NeilBrown | 13f2682 | 2009-06-18 08:48:55 +1000 | [diff] [blame] | 112 | |
| 113 | /* round size to chunk_size */ |
| 114 | sectors = rdev1->sectors; |
| 115 | sector_div(sectors, mddev->chunk_sectors); |
| 116 | rdev1->sectors = sectors * mddev->chunk_sectors; |
| 117 | |
Cheng Renquan | 159ec1f | 2009-01-09 08:31:08 +1100 | [diff] [blame] | 118 | list_for_each_entry(rdev2, &mddev->disks, same_set) { |
NeilBrown | b5a2096 | 2010-05-03 15:06:27 +1000 | [diff] [blame] | 119 | printk(KERN_INFO "md/raid0:%s: comparing %s(%llu)", |
| 120 | mdname(mddev), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | bdevname(rdev1->bdev,b), |
Andre Noll | dd8ac33 | 2009-03-31 14:33:13 +1100 | [diff] [blame] | 122 | (unsigned long long)rdev1->sectors); |
NeilBrown | b5a2096 | 2010-05-03 15:06:27 +1000 | [diff] [blame] | 123 | printk(KERN_CONT " with %s(%llu)\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | bdevname(rdev2->bdev,b), |
Andre Noll | dd8ac33 | 2009-03-31 14:33:13 +1100 | [diff] [blame] | 125 | (unsigned long long)rdev2->sectors); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | if (rdev2 == rdev1) { |
NeilBrown | b5a2096 | 2010-05-03 15:06:27 +1000 | [diff] [blame] | 127 | printk(KERN_INFO "md/raid0:%s: END\n", |
| 128 | mdname(mddev)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | break; |
| 130 | } |
Andre Noll | dd8ac33 | 2009-03-31 14:33:13 +1100 | [diff] [blame] | 131 | if (rdev2->sectors == rdev1->sectors) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | /* |
| 133 | * Not unique, don't count it as a new |
| 134 | * group |
| 135 | */ |
NeilBrown | b5a2096 | 2010-05-03 15:06:27 +1000 | [diff] [blame] | 136 | printk(KERN_INFO "md/raid0:%s: EQUAL\n", |
| 137 | mdname(mddev)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | c = 1; |
| 139 | break; |
| 140 | } |
NeilBrown | b5a2096 | 2010-05-03 15:06:27 +1000 | [diff] [blame] | 141 | printk(KERN_INFO "md/raid0:%s: NOT EQUAL\n", |
| 142 | mdname(mddev)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | } |
| 144 | if (!c) { |
NeilBrown | b5a2096 | 2010-05-03 15:06:27 +1000 | [diff] [blame] | 145 | printk(KERN_INFO "md/raid0:%s: ==> UNIQUE\n", |
| 146 | mdname(mddev)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | conf->nr_strip_zones++; |
NeilBrown | b5a2096 | 2010-05-03 15:06:27 +1000 | [diff] [blame] | 148 | printk(KERN_INFO "md/raid0:%s: %d zones\n", |
| 149 | mdname(mddev), conf->nr_strip_zones); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | } |
| 151 | } |
NeilBrown | b5a2096 | 2010-05-03 15:06:27 +1000 | [diff] [blame] | 152 | printk(KERN_INFO "md/raid0:%s: FINAL %d zones\n", |
| 153 | mdname(mddev), conf->nr_strip_zones); |
Andre Noll | ed7b003 | 2009-06-16 16:47:36 +1000 | [diff] [blame] | 154 | err = -ENOMEM; |
NeilBrown | 9ffae0c | 2006-01-06 00:20:32 -0800 | [diff] [blame] | 155 | conf->strip_zone = kzalloc(sizeof(struct strip_zone)* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | conf->nr_strip_zones, GFP_KERNEL); |
| 157 | if (!conf->strip_zone) |
Andre Noll | ed7b003 | 2009-06-16 16:47:36 +1000 | [diff] [blame] | 158 | goto abort; |
NeilBrown | 9ffae0c | 2006-01-06 00:20:32 -0800 | [diff] [blame] | 159 | conf->devlist = kzalloc(sizeof(mdk_rdev_t*)* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | conf->nr_strip_zones*mddev->raid_disks, |
| 161 | GFP_KERNEL); |
| 162 | if (!conf->devlist) |
Andre Noll | ed7b003 | 2009-06-16 16:47:36 +1000 | [diff] [blame] | 163 | goto abort; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | /* The first zone must contain all devices, so here we check that |
| 166 | * there is a proper alignment of slots to devices and find them all |
| 167 | */ |
| 168 | zone = &conf->strip_zone[0]; |
| 169 | cnt = 0; |
| 170 | smallest = NULL; |
NeilBrown | b414579 | 2009-06-16 16:50:52 +1000 | [diff] [blame] | 171 | dev = conf->devlist; |
Andre Noll | ed7b003 | 2009-06-16 16:47:36 +1000 | [diff] [blame] | 172 | err = -EINVAL; |
Cheng Renquan | 159ec1f | 2009-01-09 08:31:08 +1100 | [diff] [blame] | 173 | list_for_each_entry(rdev1, &mddev->disks, same_set) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | int j = rdev1->raid_disk; |
| 175 | |
Trela, Maciej | 9af204c | 2010-03-08 16:02:44 +1100 | [diff] [blame] | 176 | if (mddev->level == 10) |
| 177 | /* taking over a raid10-n2 array */ |
| 178 | j /= 2; |
| 179 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | if (j < 0 || j >= mddev->raid_disks) { |
NeilBrown | b5a2096 | 2010-05-03 15:06:27 +1000 | [diff] [blame] | 181 | printk(KERN_ERR "md/raid0:%s: bad disk number %d - " |
| 182 | "aborting!\n", mdname(mddev), j); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | goto abort; |
| 184 | } |
NeilBrown | b414579 | 2009-06-16 16:50:52 +1000 | [diff] [blame] | 185 | if (dev[j]) { |
NeilBrown | b5a2096 | 2010-05-03 15:06:27 +1000 | [diff] [blame] | 186 | printk(KERN_ERR "md/raid0:%s: multiple devices for %d - " |
| 187 | "aborting!\n", mdname(mddev), j); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | goto abort; |
| 189 | } |
NeilBrown | b414579 | 2009-06-16 16:50:52 +1000 | [diff] [blame] | 190 | dev[j] = rdev1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | |
Martin K. Petersen | 8f6c2e4 | 2009-07-01 11:13:45 +1000 | [diff] [blame] | 192 | disk_stack_limits(mddev->gendisk, rdev1->bdev, |
| 193 | rdev1->data_offset << 9); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | /* as we don't honour merge_bvec_fn, we must never risk |
NeilBrown | 627a2d3 | 2010-03-08 16:44:38 +1100 | [diff] [blame] | 195 | * violating it, so limit ->max_segments to 1, lying within |
| 196 | * a single page. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | */ |
| 198 | |
NeilBrown | 627a2d3 | 2010-03-08 16:44:38 +1100 | [diff] [blame] | 199 | if (rdev1->bdev->bd_disk->queue->merge_bvec_fn) { |
| 200 | blk_queue_max_segments(mddev->queue, 1); |
| 201 | blk_queue_segment_boundary(mddev->queue, |
| 202 | PAGE_CACHE_SIZE - 1); |
| 203 | } |
Andre Noll | dd8ac33 | 2009-03-31 14:33:13 +1100 | [diff] [blame] | 204 | if (!smallest || (rdev1->sectors < smallest->sectors)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | smallest = rdev1; |
| 206 | cnt++; |
| 207 | } |
| 208 | if (cnt != mddev->raid_disks) { |
NeilBrown | b5a2096 | 2010-05-03 15:06:27 +1000 | [diff] [blame] | 209 | printk(KERN_ERR "md/raid0:%s: too few disks (%d of %d) - " |
| 210 | "aborting!\n", mdname(mddev), cnt, mddev->raid_disks); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | goto abort; |
| 212 | } |
| 213 | zone->nb_dev = cnt; |
NeilBrown | 49f357a2 | 2009-06-16 16:50:35 +1000 | [diff] [blame] | 214 | zone->zone_end = smallest->sectors * cnt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | |
NeilBrown | 49f357a2 | 2009-06-16 16:50:35 +1000 | [diff] [blame] | 216 | curr_zone_end = zone->zone_end; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | |
| 218 | /* now do the other zones */ |
| 219 | for (i = 1; i < conf->nr_strip_zones; i++) |
| 220 | { |
NeilBrown | a9f326e | 2009-09-23 18:06:41 +1000 | [diff] [blame] | 221 | int j; |
| 222 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | zone = conf->strip_zone + i; |
NeilBrown | b414579 | 2009-06-16 16:50:52 +1000 | [diff] [blame] | 224 | dev = conf->devlist + i * mddev->raid_disks; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | |
NeilBrown | b5a2096 | 2010-05-03 15:06:27 +1000 | [diff] [blame] | 226 | printk(KERN_INFO "md/raid0:%s: zone %d\n", |
| 227 | mdname(mddev), i); |
NeilBrown | d27a43ab | 2009-06-16 16:46:46 +1000 | [diff] [blame] | 228 | zone->dev_start = smallest->sectors; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | smallest = NULL; |
| 230 | c = 0; |
| 231 | |
| 232 | for (j=0; j<cnt; j++) { |
NeilBrown | b414579 | 2009-06-16 16:50:52 +1000 | [diff] [blame] | 233 | rdev = conf->devlist[j]; |
NeilBrown | b5a2096 | 2010-05-03 15:06:27 +1000 | [diff] [blame] | 234 | printk(KERN_INFO "md/raid0:%s: checking %s ...", |
| 235 | mdname(mddev), |
| 236 | bdevname(rdev->bdev, b)); |
NeilBrown | d27a43ab | 2009-06-16 16:46:46 +1000 | [diff] [blame] | 237 | if (rdev->sectors <= zone->dev_start) { |
NeilBrown | b5a2096 | 2010-05-03 15:06:27 +1000 | [diff] [blame] | 238 | printk(KERN_CONT " nope.\n"); |
Andre Noll | dd8ac33 | 2009-03-31 14:33:13 +1100 | [diff] [blame] | 239 | continue; |
| 240 | } |
NeilBrown | b5a2096 | 2010-05-03 15:06:27 +1000 | [diff] [blame] | 241 | printk(KERN_CONT " contained as device %d\n", c); |
NeilBrown | b414579 | 2009-06-16 16:50:52 +1000 | [diff] [blame] | 242 | dev[c] = rdev; |
Andre Noll | dd8ac33 | 2009-03-31 14:33:13 +1100 | [diff] [blame] | 243 | c++; |
| 244 | if (!smallest || rdev->sectors < smallest->sectors) { |
| 245 | smallest = rdev; |
NeilBrown | b5a2096 | 2010-05-03 15:06:27 +1000 | [diff] [blame] | 246 | printk(KERN_INFO "md/raid0:%s: (%llu) is smallest!.\n", |
| 247 | mdname(mddev), |
| 248 | (unsigned long long)rdev->sectors); |
Andre Noll | dd8ac33 | 2009-03-31 14:33:13 +1100 | [diff] [blame] | 249 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | } |
| 251 | |
| 252 | zone->nb_dev = c; |
NeilBrown | 49f357a2 | 2009-06-16 16:50:35 +1000 | [diff] [blame] | 253 | sectors = (smallest->sectors - zone->dev_start) * c; |
NeilBrown | b5a2096 | 2010-05-03 15:06:27 +1000 | [diff] [blame] | 254 | printk(KERN_INFO "md/raid0:%s: zone->nb_dev: %d, sectors: %llu\n", |
| 255 | mdname(mddev), |
| 256 | zone->nb_dev, (unsigned long long)sectors); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | |
NeilBrown | 49f357a2 | 2009-06-16 16:50:35 +1000 | [diff] [blame] | 258 | curr_zone_end += sectors; |
NeilBrown | d27a43ab | 2009-06-16 16:46:46 +1000 | [diff] [blame] | 259 | zone->zone_end = curr_zone_end; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | |
NeilBrown | b5a2096 | 2010-05-03 15:06:27 +1000 | [diff] [blame] | 261 | printk(KERN_INFO "md/raid0:%s: current zone start: %llu\n", |
| 262 | mdname(mddev), |
| 263 | (unsigned long long)smallest->sectors); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | mddev->queue->unplug_fn = raid0_unplug; |
NeilBrown | 26be34d | 2006-10-03 01:15:53 -0700 | [diff] [blame] | 266 | mddev->queue->backing_dev_info.congested_fn = raid0_congested; |
| 267 | mddev->queue->backing_dev_info.congested_data = mddev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | |
raz ben yehuda | 92e59b6 | 2009-06-16 17:00:57 +1000 | [diff] [blame] | 269 | /* |
| 270 | * now since we have the hard sector sizes, we can make sure |
| 271 | * chunk size is a multiple of that sector size |
| 272 | */ |
Andre Noll | 9d8f036 | 2009-06-18 08:45:01 +1000 | [diff] [blame] | 273 | if ((mddev->chunk_sectors << 9) % queue_logical_block_size(mddev->queue)) { |
NeilBrown | b5a2096 | 2010-05-03 15:06:27 +1000 | [diff] [blame] | 274 | printk(KERN_ERR "md/raid0:%s: chunk_size of %d not valid\n", |
raz ben yehuda | 92e59b6 | 2009-06-16 17:00:57 +1000 | [diff] [blame] | 275 | mdname(mddev), |
Andre Noll | 9d8f036 | 2009-06-18 08:45:01 +1000 | [diff] [blame] | 276 | mddev->chunk_sectors << 9); |
raz ben yehuda | 92e59b6 | 2009-06-16 17:00:57 +1000 | [diff] [blame] | 277 | goto abort; |
| 278 | } |
Martin K. Petersen | 8f6c2e4 | 2009-07-01 11:13:45 +1000 | [diff] [blame] | 279 | |
| 280 | blk_queue_io_min(mddev->queue, mddev->chunk_sectors << 9); |
| 281 | blk_queue_io_opt(mddev->queue, |
| 282 | (mddev->chunk_sectors << 9) * mddev->raid_disks); |
| 283 | |
NeilBrown | b5a2096 | 2010-05-03 15:06:27 +1000 | [diff] [blame] | 284 | printk(KERN_INFO "md/raid0:%s: done.\n", mdname(mddev)); |
Trela, Maciej | 9af204c | 2010-03-08 16:02:44 +1100 | [diff] [blame] | 285 | *private_conf = conf; |
| 286 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 287 | return 0; |
Andre Noll | 5568a60 | 2009-06-16 16:47:21 +1000 | [diff] [blame] | 288 | abort: |
Andre Noll | ed7b003 | 2009-06-16 16:47:36 +1000 | [diff] [blame] | 289 | kfree(conf->strip_zone); |
| 290 | kfree(conf->devlist); |
| 291 | kfree(conf); |
Trela, Maciej | 9af204c | 2010-03-08 16:02:44 +1100 | [diff] [blame] | 292 | *private_conf = NULL; |
Andre Noll | ed7b003 | 2009-06-16 16:47:36 +1000 | [diff] [blame] | 293 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 294 | } |
| 295 | |
| 296 | /** |
| 297 | * raid0_mergeable_bvec -- tell bio layer if a two requests can be merged |
| 298 | * @q: request queue |
Alasdair G Kergon | cc371e6 | 2008-07-03 09:53:43 +0200 | [diff] [blame] | 299 | * @bvm: properties of new bio |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | * @biovec: the request that could be merged to it. |
| 301 | * |
| 302 | * Return amount of bytes we can accept at this offset |
| 303 | */ |
Alasdair G Kergon | cc371e6 | 2008-07-03 09:53:43 +0200 | [diff] [blame] | 304 | static int raid0_mergeable_bvec(struct request_queue *q, |
| 305 | struct bvec_merge_data *bvm, |
| 306 | struct bio_vec *biovec) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 | { |
| 308 | mddev_t *mddev = q->queuedata; |
Alasdair G Kergon | cc371e6 | 2008-07-03 09:53:43 +0200 | [diff] [blame] | 309 | sector_t sector = bvm->bi_sector + get_start_sect(bvm->bi_bdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | int max; |
Andre Noll | 9d8f036 | 2009-06-18 08:45:01 +1000 | [diff] [blame] | 311 | unsigned int chunk_sectors = mddev->chunk_sectors; |
Alasdair G Kergon | cc371e6 | 2008-07-03 09:53:43 +0200 | [diff] [blame] | 312 | unsigned int bio_sectors = bvm->bi_size >> 9; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 313 | |
NeilBrown | d6e412e | 2009-06-18 08:47:00 +1000 | [diff] [blame] | 314 | if (is_power_of_2(chunk_sectors)) |
raz ben yehuda | fbb704e | 2009-06-16 17:02:05 +1000 | [diff] [blame] | 315 | max = (chunk_sectors - ((sector & (chunk_sectors-1)) |
| 316 | + bio_sectors)) << 9; |
| 317 | else |
| 318 | max = (chunk_sectors - (sector_div(sector, chunk_sectors) |
| 319 | + bio_sectors)) << 9; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 320 | if (max < 0) max = 0; /* bio_add cannot handle a negative return */ |
| 321 | if (max <= biovec->bv_len && bio_sectors == 0) |
| 322 | return biovec->bv_len; |
| 323 | else |
| 324 | return max; |
| 325 | } |
| 326 | |
Dan Williams | 80c3a6c | 2009-03-17 18:10:40 -0700 | [diff] [blame] | 327 | static sector_t raid0_size(mddev_t *mddev, sector_t sectors, int raid_disks) |
| 328 | { |
| 329 | sector_t array_sectors = 0; |
| 330 | mdk_rdev_t *rdev; |
| 331 | |
| 332 | WARN_ONCE(sectors || raid_disks, |
| 333 | "%s does not support generic reshape\n", __func__); |
| 334 | |
| 335 | list_for_each_entry(rdev, &mddev->disks, same_set) |
| 336 | array_sectors += rdev->sectors; |
| 337 | |
| 338 | return array_sectors; |
| 339 | } |
| 340 | |
Andre Noll | 8f79cfc | 2009-06-16 16:47:10 +1000 | [diff] [blame] | 341 | static int raid0_run(mddev_t *mddev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | { |
Trela, Maciej | 9af204c | 2010-03-08 16:02:44 +1100 | [diff] [blame] | 343 | raid0_conf_t *conf; |
Andre Noll | 5568a60 | 2009-06-16 16:47:21 +1000 | [diff] [blame] | 344 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 345 | |
Andre Noll | 9d8f036 | 2009-06-18 08:45:01 +1000 | [diff] [blame] | 346 | if (mddev->chunk_sectors == 0) { |
NeilBrown | b5a2096 | 2010-05-03 15:06:27 +1000 | [diff] [blame] | 347 | printk(KERN_ERR "md/raid0:%s: chunk size must be set.\n", |
| 348 | mdname(mddev)); |
NeilBrown | 2604b70 | 2006-01-06 00:20:36 -0800 | [diff] [blame] | 349 | return -EINVAL; |
| 350 | } |
Andre Noll | 0894cc3 | 2009-06-18 08:49:23 +1000 | [diff] [blame] | 351 | if (md_check_no_bitmap(mddev)) |
| 352 | return -EINVAL; |
Martin K. Petersen | 086fa5f | 2010-02-26 00:20:38 -0500 | [diff] [blame] | 353 | blk_queue_max_hw_sectors(mddev->queue, mddev->chunk_sectors); |
Neil Brown | e7e72bf | 2008-05-14 16:05:54 -0700 | [diff] [blame] | 354 | mddev->queue->queue_lock = &mddev->queue->__queue_lock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | |
Trela, Maciej | 9af204c | 2010-03-08 16:02:44 +1100 | [diff] [blame] | 356 | /* if private is not null, we are here after takeover */ |
| 357 | if (mddev->private == NULL) { |
| 358 | ret = create_strip_zones(mddev, &conf); |
| 359 | if (ret < 0) |
| 360 | return ret; |
| 361 | mddev->private = conf; |
| 362 | } |
| 363 | conf = mddev->private; |
| 364 | if (conf->scale_raid_disks) { |
| 365 | int i; |
| 366 | for (i=0; i < conf->strip_zone[0].nb_dev; i++) |
| 367 | conf->devlist[i]->raid_disk /= conf->scale_raid_disks; |
| 368 | /* FIXME update sysfs rd links */ |
| 369 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 | |
| 371 | /* calculate array device size */ |
Dan Williams | 1f40362 | 2009-03-31 14:59:03 +1100 | [diff] [blame] | 372 | md_set_array_sectors(mddev, raid0_size(mddev, 0, 0)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 373 | |
NeilBrown | b5a2096 | 2010-05-03 15:06:27 +1000 | [diff] [blame] | 374 | printk(KERN_INFO "md/raid0:%s: md_size is %llu sectors.\n", |
| 375 | mdname(mddev), |
| 376 | (unsigned long long)mddev->array_sectors); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 377 | /* calculate the max read-ahead size. |
| 378 | * For read-ahead of large files to be effective, we need to |
| 379 | * readahead at least twice a whole stripe. i.e. number of devices |
| 380 | * multiplied by chunk size times 2. |
| 381 | * If an individual device has an ra_pages greater than the |
| 382 | * chunk size, then we will not drive that device as hard as it |
| 383 | * wants. We consider this a configuration error: a larger |
| 384 | * chunksize should be used in that case. |
| 385 | */ |
| 386 | { |
Andre Noll | 9d8f036 | 2009-06-18 08:45:01 +1000 | [diff] [blame] | 387 | int stripe = mddev->raid_disks * |
| 388 | (mddev->chunk_sectors << 9) / PAGE_SIZE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 389 | if (mddev->queue->backing_dev_info.ra_pages < 2* stripe) |
| 390 | mddev->queue->backing_dev_info.ra_pages = 2* stripe; |
| 391 | } |
| 392 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 393 | blk_queue_merge_bvec(mddev->queue, raid0_mergeable_bvec); |
raz ben yehuda | 4699419 | 2009-06-16 17:00:54 +1000 | [diff] [blame] | 394 | dump_zones(mddev); |
Andre Noll | ac5e711 | 2009-08-03 10:59:47 +1000 | [diff] [blame] | 395 | md_integrity_register(mddev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 396 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 397 | } |
| 398 | |
Andre Noll | fb5ab4b | 2009-06-16 16:48:19 +1000 | [diff] [blame] | 399 | static int raid0_stop(mddev_t *mddev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 400 | { |
NeilBrown | 070ec55 | 2009-06-16 16:54:21 +1000 | [diff] [blame] | 401 | raid0_conf_t *conf = mddev->private; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 402 | |
| 403 | blk_sync_queue(mddev->queue); /* the unplug fn references 'conf'*/ |
Jesper Juhl | 990a8ba | 2005-06-21 17:17:30 -0700 | [diff] [blame] | 404 | kfree(conf->strip_zone); |
Andre Noll | fb5ab4b | 2009-06-16 16:48:19 +1000 | [diff] [blame] | 405 | kfree(conf->devlist); |
Jesper Juhl | 990a8ba | 2005-06-21 17:17:30 -0700 | [diff] [blame] | 406 | kfree(conf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 407 | mddev->private = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 408 | return 0; |
| 409 | } |
| 410 | |
NeilBrown | 49f357a2 | 2009-06-16 16:50:35 +1000 | [diff] [blame] | 411 | /* Find the zone which holds a particular offset |
| 412 | * Update *sectorp to be an offset in that zone |
| 413 | */ |
Andre Noll | dc58266 | 2009-06-16 16:18:43 +1000 | [diff] [blame] | 414 | static struct strip_zone *find_zone(struct raid0_private_data *conf, |
NeilBrown | 49f357a2 | 2009-06-16 16:50:35 +1000 | [diff] [blame] | 415 | sector_t *sectorp) |
Andre Noll | dc58266 | 2009-06-16 16:18:43 +1000 | [diff] [blame] | 416 | { |
| 417 | int i; |
| 418 | struct strip_zone *z = conf->strip_zone; |
NeilBrown | 49f357a2 | 2009-06-16 16:50:35 +1000 | [diff] [blame] | 419 | sector_t sector = *sectorp; |
Andre Noll | dc58266 | 2009-06-16 16:18:43 +1000 | [diff] [blame] | 420 | |
| 421 | for (i = 0; i < conf->nr_strip_zones; i++) |
NeilBrown | 49f357a2 | 2009-06-16 16:50:35 +1000 | [diff] [blame] | 422 | if (sector < z[i].zone_end) { |
| 423 | if (i) |
| 424 | *sectorp = sector - z[i-1].zone_end; |
Andre Noll | dc58266 | 2009-06-16 16:18:43 +1000 | [diff] [blame] | 425 | return z + i; |
NeilBrown | 49f357a2 | 2009-06-16 16:50:35 +1000 | [diff] [blame] | 426 | } |
Andre Noll | dc58266 | 2009-06-16 16:18:43 +1000 | [diff] [blame] | 427 | BUG(); |
| 428 | } |
| 429 | |
raz ben yehuda | fbb704e | 2009-06-16 17:02:05 +1000 | [diff] [blame] | 430 | /* |
| 431 | * remaps the bio to the target device. we separate two flows. |
| 432 | * power 2 flow and a general flow for the sake of perfromance |
| 433 | */ |
| 434 | static mdk_rdev_t *map_sector(mddev_t *mddev, struct strip_zone *zone, |
| 435 | sector_t sector, sector_t *sector_offset) |
| 436 | { |
| 437 | unsigned int sect_in_chunk; |
| 438 | sector_t chunk; |
| 439 | raid0_conf_t *conf = mddev->private; |
NeilBrown | 84707f3 | 2010-03-16 17:23:35 +1100 | [diff] [blame] | 440 | int raid_disks = conf->strip_zone[0].nb_dev; |
Andre Noll | 9d8f036 | 2009-06-18 08:45:01 +1000 | [diff] [blame] | 441 | unsigned int chunk_sects = mddev->chunk_sectors; |
raz ben yehuda | fbb704e | 2009-06-16 17:02:05 +1000 | [diff] [blame] | 442 | |
NeilBrown | d6e412e | 2009-06-18 08:47:00 +1000 | [diff] [blame] | 443 | if (is_power_of_2(chunk_sects)) { |
raz ben yehuda | fbb704e | 2009-06-16 17:02:05 +1000 | [diff] [blame] | 444 | int chunksect_bits = ffz(~chunk_sects); |
| 445 | /* find the sector offset inside the chunk */ |
| 446 | sect_in_chunk = sector & (chunk_sects - 1); |
| 447 | sector >>= chunksect_bits; |
| 448 | /* chunk in zone */ |
| 449 | chunk = *sector_offset; |
| 450 | /* quotient is the chunk in real device*/ |
| 451 | sector_div(chunk, zone->nb_dev << chunksect_bits); |
| 452 | } else{ |
| 453 | sect_in_chunk = sector_div(sector, chunk_sects); |
| 454 | chunk = *sector_offset; |
| 455 | sector_div(chunk, chunk_sects * zone->nb_dev); |
| 456 | } |
| 457 | /* |
| 458 | * position the bio over the real device |
| 459 | * real sector = chunk in device + starting of zone |
| 460 | * + the position in the chunk |
| 461 | */ |
| 462 | *sector_offset = (chunk * chunk_sects) + sect_in_chunk; |
NeilBrown | 84707f3 | 2010-03-16 17:23:35 +1100 | [diff] [blame] | 463 | return conf->devlist[(zone - conf->strip_zone)*raid_disks |
raz ben yehuda | fbb704e | 2009-06-16 17:02:05 +1000 | [diff] [blame] | 464 | + sector_div(sector, zone->nb_dev)]; |
| 465 | } |
| 466 | |
| 467 | /* |
| 468 | * Is io distribute over 1 or more chunks ? |
| 469 | */ |
| 470 | static inline int is_io_in_chunk_boundary(mddev_t *mddev, |
| 471 | unsigned int chunk_sects, struct bio *bio) |
| 472 | { |
NeilBrown | d6e412e | 2009-06-18 08:47:00 +1000 | [diff] [blame] | 473 | if (likely(is_power_of_2(chunk_sects))) { |
raz ben yehuda | fbb704e | 2009-06-16 17:02:05 +1000 | [diff] [blame] | 474 | return chunk_sects >= ((bio->bi_sector & (chunk_sects-1)) |
| 475 | + (bio->bi_size >> 9)); |
| 476 | } else{ |
| 477 | sector_t sector = bio->bi_sector; |
| 478 | return chunk_sects >= (sector_div(sector, chunk_sects) |
| 479 | + (bio->bi_size >> 9)); |
| 480 | } |
| 481 | } |
| 482 | |
NeilBrown | 21a52c6 | 2010-04-01 15:02:13 +1100 | [diff] [blame] | 483 | static int raid0_make_request(mddev_t *mddev, struct bio *bio) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 484 | { |
raz ben yehuda | fbb704e | 2009-06-16 17:02:05 +1000 | [diff] [blame] | 485 | unsigned int chunk_sects; |
| 486 | sector_t sector_offset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 487 | struct strip_zone *zone; |
| 488 | mdk_rdev_t *tmp_dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 489 | |
Jens Axboe | 1f98a13 | 2009-09-11 14:32:04 +0200 | [diff] [blame] | 490 | if (unlikely(bio_rw_flagged(bio, BIO_RW_BARRIER))) { |
NeilBrown | a2826aa | 2009-12-14 12:49:49 +1100 | [diff] [blame] | 491 | md_barrier_request(mddev, bio); |
NeilBrown | e5dcdd8 | 2005-09-09 16:23:41 -0700 | [diff] [blame] | 492 | return 0; |
| 493 | } |
| 494 | |
Andre Noll | 9d8f036 | 2009-06-18 08:45:01 +1000 | [diff] [blame] | 495 | chunk_sects = mddev->chunk_sectors; |
raz ben yehuda | fbb704e | 2009-06-16 17:02:05 +1000 | [diff] [blame] | 496 | if (unlikely(!is_io_in_chunk_boundary(mddev, chunk_sects, bio))) { |
| 497 | sector_t sector = bio->bi_sector; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 498 | struct bio_pair *bp; |
| 499 | /* Sanity check -- queue functions should prevent this happening */ |
| 500 | if (bio->bi_vcnt != 1 || |
| 501 | bio->bi_idx != 0) |
| 502 | goto bad_map; |
| 503 | /* This is a one page bio that upper layers |
| 504 | * refuse to split for us, so we need to split it. |
| 505 | */ |
NeilBrown | d6e412e | 2009-06-18 08:47:00 +1000 | [diff] [blame] | 506 | if (likely(is_power_of_2(chunk_sects))) |
raz ben yehuda | fbb704e | 2009-06-16 17:02:05 +1000 | [diff] [blame] | 507 | bp = bio_split(bio, chunk_sects - (sector & |
| 508 | (chunk_sects-1))); |
| 509 | else |
| 510 | bp = bio_split(bio, chunk_sects - |
| 511 | sector_div(sector, chunk_sects)); |
NeilBrown | 21a52c6 | 2010-04-01 15:02:13 +1100 | [diff] [blame] | 512 | if (raid0_make_request(mddev, &bp->bio1)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 513 | generic_make_request(&bp->bio1); |
NeilBrown | 21a52c6 | 2010-04-01 15:02:13 +1100 | [diff] [blame] | 514 | if (raid0_make_request(mddev, &bp->bio2)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 515 | generic_make_request(&bp->bio2); |
| 516 | |
| 517 | bio_pair_release(bp); |
| 518 | return 0; |
| 519 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 520 | |
raz ben yehuda | fbb704e | 2009-06-16 17:02:05 +1000 | [diff] [blame] | 521 | sector_offset = bio->bi_sector; |
| 522 | zone = find_zone(mddev->private, §or_offset); |
| 523 | tmp_dev = map_sector(mddev, zone, bio->bi_sector, |
| 524 | §or_offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 525 | bio->bi_bdev = tmp_dev->bdev; |
raz ben yehuda | fbb704e | 2009-06-16 17:02:05 +1000 | [diff] [blame] | 526 | bio->bi_sector = sector_offset + zone->dev_start + |
| 527 | tmp_dev->data_offset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 528 | /* |
| 529 | * Let the main block layer submit the IO and resolve recursion: |
| 530 | */ |
| 531 | return 1; |
| 532 | |
| 533 | bad_map: |
NeilBrown | b5a2096 | 2010-05-03 15:06:27 +1000 | [diff] [blame] | 534 | printk("md/raid0:%s: make_request bug: can't convert block across chunks" |
| 535 | " or bigger than %dk %llu %d\n", |
| 536 | mdname(mddev), chunk_sects / 2, |
| 537 | (unsigned long long)bio->bi_sector, bio->bi_size >> 10); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 538 | |
NeilBrown | 6712ecf | 2007-09-27 12:47:43 +0200 | [diff] [blame] | 539 | bio_io_error(bio); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 540 | return 0; |
| 541 | } |
NeilBrown | 8299d7f | 2007-10-16 23:30:53 -0700 | [diff] [blame] | 542 | |
raz ben yehuda | 1b96142 | 2009-06-16 16:57:40 +1000 | [diff] [blame] | 543 | static void raid0_status(struct seq_file *seq, mddev_t *mddev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 544 | { |
| 545 | #undef MD_DEBUG |
| 546 | #ifdef MD_DEBUG |
| 547 | int j, k, h; |
| 548 | char b[BDEVNAME_SIZE]; |
NeilBrown | 070ec55 | 2009-06-16 16:54:21 +1000 | [diff] [blame] | 549 | raid0_conf_t *conf = mddev->private; |
NeilBrown | 84707f3 | 2010-03-16 17:23:35 +1100 | [diff] [blame] | 550 | int raid_disks = conf->strip_zone[0].nb_dev; |
NeilBrown | 8299d7f | 2007-10-16 23:30:53 -0700 | [diff] [blame] | 551 | |
raz ben yehuda | 1b96142 | 2009-06-16 16:57:40 +1000 | [diff] [blame] | 552 | sector_t zone_size; |
| 553 | sector_t zone_start = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 554 | h = 0; |
raz ben yehuda | 1b96142 | 2009-06-16 16:57:40 +1000 | [diff] [blame] | 555 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 556 | for (j = 0; j < conf->nr_strip_zones; j++) { |
| 557 | seq_printf(seq, " z%d", j); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 558 | seq_printf(seq, "=["); |
| 559 | for (k = 0; k < conf->strip_zone[j].nb_dev; k++) |
NeilBrown | 8299d7f | 2007-10-16 23:30:53 -0700 | [diff] [blame] | 560 | seq_printf(seq, "%s/", bdevname( |
NeilBrown | 84707f3 | 2010-03-16 17:23:35 +1100 | [diff] [blame] | 561 | conf->devlist[j*raid_disks + k] |
raz ben yehuda | 1b96142 | 2009-06-16 16:57:40 +1000 | [diff] [blame] | 562 | ->bdev, b)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 563 | |
raz ben yehuda | 1b96142 | 2009-06-16 16:57:40 +1000 | [diff] [blame] | 564 | zone_size = conf->strip_zone[j].zone_end - zone_start; |
| 565 | seq_printf(seq, "] ze=%lld ds=%lld s=%lld\n", |
| 566 | (unsigned long long)zone_start>>1, |
| 567 | (unsigned long long)conf->strip_zone[j].dev_start>>1, |
| 568 | (unsigned long long)zone_size>>1); |
| 569 | zone_start = conf->strip_zone[j].zone_end; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 570 | } |
| 571 | #endif |
Andre Noll | 9d8f036 | 2009-06-18 08:45:01 +1000 | [diff] [blame] | 572 | seq_printf(seq, " %dk chunks", mddev->chunk_sectors / 2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 573 | return; |
| 574 | } |
| 575 | |
Trela, Maciej | 9af204c | 2010-03-08 16:02:44 +1100 | [diff] [blame] | 576 | static void *raid0_takeover_raid5(mddev_t *mddev) |
| 577 | { |
| 578 | mdk_rdev_t *rdev; |
| 579 | raid0_conf_t *priv_conf; |
| 580 | |
| 581 | if (mddev->degraded != 1) { |
NeilBrown | b5a2096 | 2010-05-03 15:06:27 +1000 | [diff] [blame] | 582 | printk(KERN_ERR "md/raid0:%s: raid5 must be degraded! Degraded disks: %d\n", |
| 583 | mdname(mddev), |
Trela, Maciej | 9af204c | 2010-03-08 16:02:44 +1100 | [diff] [blame] | 584 | mddev->degraded); |
| 585 | return ERR_PTR(-EINVAL); |
| 586 | } |
| 587 | |
| 588 | list_for_each_entry(rdev, &mddev->disks, same_set) { |
| 589 | /* check slot number for a disk */ |
| 590 | if (rdev->raid_disk == mddev->raid_disks-1) { |
NeilBrown | b5a2096 | 2010-05-03 15:06:27 +1000 | [diff] [blame] | 591 | printk(KERN_ERR "md/raid0:%s: raid5 must have missing parity disk!\n", |
| 592 | mdname(mddev)); |
Trela, Maciej | 9af204c | 2010-03-08 16:02:44 +1100 | [diff] [blame] | 593 | return ERR_PTR(-EINVAL); |
| 594 | } |
| 595 | } |
| 596 | |
| 597 | /* Set new parameters */ |
| 598 | mddev->new_level = 0; |
| 599 | mddev->new_chunk_sectors = mddev->chunk_sectors; |
| 600 | mddev->raid_disks--; |
| 601 | mddev->delta_disks = -1; |
| 602 | /* make sure it will be not marked as dirty */ |
| 603 | mddev->recovery_cp = MaxSector; |
| 604 | |
| 605 | create_strip_zones(mddev, &priv_conf); |
| 606 | return priv_conf; |
| 607 | } |
| 608 | |
| 609 | static void *raid0_takeover_raid10(mddev_t *mddev) |
| 610 | { |
| 611 | raid0_conf_t *priv_conf; |
| 612 | |
| 613 | /* Check layout: |
| 614 | * - far_copies must be 1 |
| 615 | * - near_copies must be 2 |
| 616 | * - disks number must be even |
| 617 | * - all mirrors must be already degraded |
| 618 | */ |
| 619 | if (mddev->layout != ((1 << 8) + 2)) { |
NeilBrown | b5a2096 | 2010-05-03 15:06:27 +1000 | [diff] [blame] | 620 | printk(KERN_ERR "md/raid0:%s:: Raid0 cannot takover layout: 0x%x\n", |
| 621 | mdname(mddev), |
Trela, Maciej | 9af204c | 2010-03-08 16:02:44 +1100 | [diff] [blame] | 622 | mddev->layout); |
| 623 | return ERR_PTR(-EINVAL); |
| 624 | } |
| 625 | if (mddev->raid_disks & 1) { |
NeilBrown | b5a2096 | 2010-05-03 15:06:27 +1000 | [diff] [blame] | 626 | printk(KERN_ERR "md/raid0:%s: Raid0 cannot takover Raid10 with odd disk number.\n", |
| 627 | mdname(mddev)); |
Trela, Maciej | 9af204c | 2010-03-08 16:02:44 +1100 | [diff] [blame] | 628 | return ERR_PTR(-EINVAL); |
| 629 | } |
| 630 | if (mddev->degraded != (mddev->raid_disks>>1)) { |
NeilBrown | b5a2096 | 2010-05-03 15:06:27 +1000 | [diff] [blame] | 631 | printk(KERN_ERR "md/raid0:%s: All mirrors must be already degraded!\n", |
| 632 | mdname(mddev)); |
Trela, Maciej | 9af204c | 2010-03-08 16:02:44 +1100 | [diff] [blame] | 633 | return ERR_PTR(-EINVAL); |
| 634 | } |
| 635 | |
| 636 | /* Set new parameters */ |
| 637 | mddev->new_level = 0; |
| 638 | mddev->new_chunk_sectors = mddev->chunk_sectors; |
| 639 | mddev->delta_disks = - mddev->raid_disks / 2; |
| 640 | mddev->raid_disks += mddev->delta_disks; |
| 641 | mddev->degraded = 0; |
| 642 | /* make sure it will be not marked as dirty */ |
| 643 | mddev->recovery_cp = MaxSector; |
| 644 | |
| 645 | create_strip_zones(mddev, &priv_conf); |
| 646 | priv_conf->scale_raid_disks = 2; |
| 647 | return priv_conf; |
| 648 | } |
| 649 | |
| 650 | static void *raid0_takeover(mddev_t *mddev) |
| 651 | { |
| 652 | /* raid0 can take over: |
| 653 | * raid5 - providing it is Raid4 layout and one disk is faulty |
| 654 | * raid10 - assuming we have all necessary active disks |
| 655 | */ |
| 656 | if (mddev->level == 5) { |
| 657 | if (mddev->layout == ALGORITHM_PARITY_N) |
| 658 | return raid0_takeover_raid5(mddev); |
| 659 | |
NeilBrown | b5a2096 | 2010-05-03 15:06:27 +1000 | [diff] [blame] | 660 | printk(KERN_ERR "md/raid0:%s: Raid can only takeover Raid5 with layout: %d\n", |
| 661 | mdname(mddev), ALGORITHM_PARITY_N); |
Trela, Maciej | 9af204c | 2010-03-08 16:02:44 +1100 | [diff] [blame] | 662 | } |
| 663 | |
| 664 | if (mddev->level == 10) |
| 665 | return raid0_takeover_raid10(mddev); |
| 666 | |
| 667 | return ERR_PTR(-EINVAL); |
| 668 | } |
| 669 | |
| 670 | static void raid0_quiesce(mddev_t *mddev, int state) |
| 671 | { |
| 672 | } |
| 673 | |
NeilBrown | 2604b70 | 2006-01-06 00:20:36 -0800 | [diff] [blame] | 674 | static struct mdk_personality raid0_personality= |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 675 | { |
| 676 | .name = "raid0", |
NeilBrown | 2604b70 | 2006-01-06 00:20:36 -0800 | [diff] [blame] | 677 | .level = 0, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 678 | .owner = THIS_MODULE, |
| 679 | .make_request = raid0_make_request, |
| 680 | .run = raid0_run, |
| 681 | .stop = raid0_stop, |
| 682 | .status = raid0_status, |
Dan Williams | 80c3a6c | 2009-03-17 18:10:40 -0700 | [diff] [blame] | 683 | .size = raid0_size, |
Trela, Maciej | 9af204c | 2010-03-08 16:02:44 +1100 | [diff] [blame] | 684 | .takeover = raid0_takeover, |
| 685 | .quiesce = raid0_quiesce, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 686 | }; |
| 687 | |
| 688 | static int __init raid0_init (void) |
| 689 | { |
NeilBrown | 2604b70 | 2006-01-06 00:20:36 -0800 | [diff] [blame] | 690 | return register_md_personality (&raid0_personality); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 691 | } |
| 692 | |
| 693 | static void raid0_exit (void) |
| 694 | { |
NeilBrown | 2604b70 | 2006-01-06 00:20:36 -0800 | [diff] [blame] | 695 | unregister_md_personality (&raid0_personality); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 696 | } |
| 697 | |
| 698 | module_init(raid0_init); |
| 699 | module_exit(raid0_exit); |
| 700 | MODULE_LICENSE("GPL"); |
NeilBrown | 0efb9e6 | 2009-12-14 12:49:58 +1100 | [diff] [blame] | 701 | MODULE_DESCRIPTION("RAID0 (striping) personality for MD"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 702 | MODULE_ALIAS("md-personality-2"); /* RAID0 */ |
NeilBrown | d9d166c | 2006-01-06 00:20:51 -0800 | [diff] [blame] | 703 | MODULE_ALIAS("md-raid0"); |
NeilBrown | 2604b70 | 2006-01-06 00:20:36 -0800 | [diff] [blame] | 704 | MODULE_ALIAS("md-level-0"); |