Thomas Gleixner | af1a889 | 2019-05-20 19:08:12 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
| 3 | linear.c : Multiple Devices driver for Linux |
| 4 | Copyright (C) 1994-96 Marc ZYNGIER |
| 5 | <zyngier@ufr-info-p7.ibp.fr> or |
| 6 | <maz@gloups.fdn.fr> |
| 7 | |
| 8 | Linear mode management functions. |
| 9 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | */ |
| 11 | |
NeilBrown | bff6197 | 2009-03-31 14:33:13 +1100 | [diff] [blame] | 12 | #include <linux/blkdev.h> |
| 13 | #include <linux/raid/md_u.h> |
NeilBrown | bff6197 | 2009-03-31 14:33:13 +1100 | [diff] [blame] | 14 | #include <linux/seq_file.h> |
Paul Gortmaker | 056075c | 2011-07-03 13:58:33 -0400 | [diff] [blame] | 15 | #include <linux/module.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 16 | #include <linux/slab.h> |
NeilBrown | 109e376 | 2016-11-18 13:22:04 +1100 | [diff] [blame] | 17 | #include <trace/events/block.h> |
NeilBrown | 43b2e5d | 2009-03-31 14:33:13 +1100 | [diff] [blame] | 18 | #include "md.h" |
Mike Snitzer | 935fe09 | 2017-10-10 17:02:41 -0400 | [diff] [blame] | 19 | #include "md-linear.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | /* |
NeilBrown | f72ffdd | 2014-09-30 14:23:59 +1000 | [diff] [blame] | 22 | * find which device holds a particular offset |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | */ |
NeilBrown | a712077 | 2011-10-11 16:48:49 +1100 | [diff] [blame] | 24 | static inline struct dev_info *which_dev(struct mddev *mddev, sector_t sector) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | { |
Sandeep K Sinha | aece3d1 | 2009-06-16 16:57:08 +1000 | [diff] [blame] | 26 | int lo, mid, hi; |
NeilBrown | e849b93 | 2011-10-11 16:48:54 +1100 | [diff] [blame] | 27 | struct linear_conf *conf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | |
Sandeep K Sinha | aece3d1 | 2009-06-16 16:57:08 +1000 | [diff] [blame] | 29 | lo = 0; |
| 30 | hi = mddev->raid_disks - 1; |
NeilBrown | 3be260c | 2014-12-15 12:56:57 +1100 | [diff] [blame] | 31 | conf = mddev->private; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | |
Sandeep K Sinha | aece3d1 | 2009-06-16 16:57:08 +1000 | [diff] [blame] | 33 | /* |
| 34 | * Binary Search |
| 35 | */ |
| 36 | |
| 37 | while (hi > lo) { |
| 38 | |
| 39 | mid = (hi + lo) / 2; |
| 40 | if (sector < conf->disks[mid].end_sector) |
| 41 | hi = mid; |
| 42 | else |
| 43 | lo = mid + 1; |
| 44 | } |
| 45 | |
| 46 | return conf->disks + lo; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | } |
| 48 | |
colyli@suse.de | 03a9e24 | 2017-01-28 21:11:49 +0800 | [diff] [blame] | 49 | /* |
| 50 | * In linear_congested() conf->raid_disks is used as a copy of |
| 51 | * mddev->raid_disks to iterate conf->disks[], because conf->raid_disks |
| 52 | * and conf->disks[] are created in linear_conf(), they are always |
| 53 | * consitent with each other, but mddev->raid_disks does not. |
| 54 | */ |
NeilBrown | 5c675f8 | 2014-12-15 12:56:56 +1100 | [diff] [blame] | 55 | static int linear_congested(struct mddev *mddev, int bits) |
NeilBrown | 26be34d | 2006-10-03 01:15:53 -0700 | [diff] [blame] | 56 | { |
NeilBrown | e849b93 | 2011-10-11 16:48:54 +1100 | [diff] [blame] | 57 | struct linear_conf *conf; |
NeilBrown | 26be34d | 2006-10-03 01:15:53 -0700 | [diff] [blame] | 58 | int i, ret = 0; |
| 59 | |
colyli@suse.de | 03a9e24 | 2017-01-28 21:11:49 +0800 | [diff] [blame] | 60 | rcu_read_lock(); |
| 61 | conf = rcu_dereference(mddev->private); |
SandeepKsinha | af11c39 | 2009-06-18 08:49:35 +1000 | [diff] [blame] | 62 | |
colyli@suse.de | 03a9e24 | 2017-01-28 21:11:49 +0800 | [diff] [blame] | 63 | for (i = 0; i < conf->raid_disks && !ret ; i++) { |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 64 | struct request_queue *q = bdev_get_queue(conf->disks[i].rdev->bdev); |
Jan Kara | dc3b17c | 2017-02-02 15:56:50 +0100 | [diff] [blame] | 65 | ret |= bdi_congested(q->backing_dev_info, bits); |
NeilBrown | 26be34d | 2006-10-03 01:15:53 -0700 | [diff] [blame] | 66 | } |
SandeepKsinha | af11c39 | 2009-06-18 08:49:35 +1000 | [diff] [blame] | 67 | |
colyli@suse.de | 03a9e24 | 2017-01-28 21:11:49 +0800 | [diff] [blame] | 68 | rcu_read_unlock(); |
NeilBrown | 26be34d | 2006-10-03 01:15:53 -0700 | [diff] [blame] | 69 | return ret; |
| 70 | } |
| 71 | |
NeilBrown | fd01b88 | 2011-10-11 16:47:53 +1100 | [diff] [blame] | 72 | static sector_t linear_size(struct mddev *mddev, sector_t sectors, int raid_disks) |
Dan Williams | 80c3a6c | 2009-03-17 18:10:40 -0700 | [diff] [blame] | 73 | { |
NeilBrown | e849b93 | 2011-10-11 16:48:54 +1100 | [diff] [blame] | 74 | struct linear_conf *conf; |
SandeepKsinha | af11c39 | 2009-06-18 08:49:35 +1000 | [diff] [blame] | 75 | sector_t array_sectors; |
Dan Williams | 80c3a6c | 2009-03-17 18:10:40 -0700 | [diff] [blame] | 76 | |
NeilBrown | 3be260c | 2014-12-15 12:56:57 +1100 | [diff] [blame] | 77 | conf = mddev->private; |
Dan Williams | 80c3a6c | 2009-03-17 18:10:40 -0700 | [diff] [blame] | 78 | WARN_ONCE(sectors || raid_disks, |
| 79 | "%s does not support generic reshape\n", __func__); |
SandeepKsinha | af11c39 | 2009-06-18 08:49:35 +1000 | [diff] [blame] | 80 | array_sectors = conf->array_sectors; |
Dan Williams | 80c3a6c | 2009-03-17 18:10:40 -0700 | [diff] [blame] | 81 | |
SandeepKsinha | af11c39 | 2009-06-18 08:49:35 +1000 | [diff] [blame] | 82 | return array_sectors; |
Dan Williams | 80c3a6c | 2009-03-17 18:10:40 -0700 | [diff] [blame] | 83 | } |
| 84 | |
NeilBrown | e849b93 | 2011-10-11 16:48:54 +1100 | [diff] [blame] | 85 | static struct linear_conf *linear_conf(struct mddev *mddev, int raid_disks) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | { |
NeilBrown | e849b93 | 2011-10-11 16:48:54 +1100 | [diff] [blame] | 87 | struct linear_conf *conf; |
NeilBrown | 3cb0300 | 2011-10-11 16:45:26 +1100 | [diff] [blame] | 88 | struct md_rdev *rdev; |
Sandeep K Sinha | 45d4582 | 2009-06-16 16:55:26 +1000 | [diff] [blame] | 89 | int i, cnt; |
Shaohua Li | f1cad2b | 2012-10-11 13:08:44 +1100 | [diff] [blame] | 90 | bool discard_supported = false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | |
Gustavo A. R. Silva | f1e5b62 | 2019-01-07 11:45:38 -0600 | [diff] [blame] | 92 | conf = kzalloc(struct_size(conf, disks, raid_disks), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | if (!conf) |
NeilBrown | 7c7546c | 2006-06-26 00:27:41 -0700 | [diff] [blame] | 94 | return NULL; |
| 95 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | cnt = 0; |
Andre Noll | d6e2215 | 2008-07-21 17:05:25 +1000 | [diff] [blame] | 97 | conf->array_sectors = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | |
NeilBrown | dafb20f | 2012-03-19 12:46:39 +1100 | [diff] [blame] | 99 | rdev_for_each(rdev, mddev) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | int j = rdev->raid_disk; |
NeilBrown | a712077 | 2011-10-11 16:48:49 +1100 | [diff] [blame] | 101 | struct dev_info *disk = conf->disks + j; |
NeilBrown | 13f2682 | 2009-06-18 08:48:55 +1000 | [diff] [blame] | 102 | sector_t sectors; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | |
Nikanth Karthikesan | 1386451 | 2008-06-28 08:31:19 +1000 | [diff] [blame] | 104 | if (j < 0 || j >= raid_disks || disk->rdev) { |
NeilBrown | a2e202a | 2016-11-02 14:16:49 +1100 | [diff] [blame] | 105 | pr_warn("md/linear:%s: disk numbering problem. Aborting!\n", |
| 106 | mdname(mddev)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | goto out; |
| 108 | } |
| 109 | |
| 110 | disk->rdev = rdev; |
NeilBrown | 13f2682 | 2009-06-18 08:48:55 +1000 | [diff] [blame] | 111 | if (mddev->chunk_sectors) { |
| 112 | sectors = rdev->sectors; |
| 113 | sector_div(sectors, mddev->chunk_sectors); |
| 114 | rdev->sectors = sectors * mddev->chunk_sectors; |
| 115 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | |
Martin K. Petersen | 8f6c2e4 | 2009-07-01 11:13:45 +1000 | [diff] [blame] | 117 | disk_stack_limits(mddev->gendisk, rdev->bdev, |
| 118 | rdev->data_offset << 9); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | |
Andre Noll | dd8ac33 | 2009-03-31 14:33:13 +1100 | [diff] [blame] | 120 | conf->array_sectors += rdev->sectors; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | cnt++; |
Sandeep K Sinha | 4db7cdc | 2009-06-16 16:56:13 +1000 | [diff] [blame] | 122 | |
Shaohua Li | f1cad2b | 2012-10-11 13:08:44 +1100 | [diff] [blame] | 123 | if (blk_queue_discard(bdev_get_queue(rdev->bdev))) |
| 124 | discard_supported = true; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | } |
NeilBrown | 7c7546c | 2006-06-26 00:27:41 -0700 | [diff] [blame] | 126 | if (cnt != raid_disks) { |
NeilBrown | a2e202a | 2016-11-02 14:16:49 +1100 | [diff] [blame] | 127 | pr_warn("md/linear:%s: not enough drives present. Aborting!\n", |
| 128 | mdname(mddev)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | goto out; |
| 130 | } |
| 131 | |
Shaohua Li | f1cad2b | 2012-10-11 13:08:44 +1100 | [diff] [blame] | 132 | if (!discard_supported) |
Bart Van Assche | 8b904b5 | 2018-03-07 17:10:10 -0800 | [diff] [blame] | 133 | blk_queue_flag_clear(QUEUE_FLAG_DISCARD, mddev->queue); |
Shaohua Li | f1cad2b | 2012-10-11 13:08:44 +1100 | [diff] [blame] | 134 | else |
Bart Van Assche | 8b904b5 | 2018-03-07 17:10:10 -0800 | [diff] [blame] | 135 | blk_queue_flag_set(QUEUE_FLAG_DISCARD, mddev->queue); |
Shaohua Li | f1cad2b | 2012-10-11 13:08:44 +1100 | [diff] [blame] | 136 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | /* |
Sandeep K Sinha | 45d4582 | 2009-06-16 16:55:26 +1000 | [diff] [blame] | 138 | * Here we calculate the device offsets. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | */ |
Sandeep K Sinha | 4db7cdc | 2009-06-16 16:56:13 +1000 | [diff] [blame] | 140 | conf->disks[0].end_sector = conf->disks[0].rdev->sectors; |
| 141 | |
NeilBrown | a778b73 | 2007-05-23 13:58:10 -0700 | [diff] [blame] | 142 | for (i = 1; i < raid_disks; i++) |
Sandeep K Sinha | 4db7cdc | 2009-06-16 16:56:13 +1000 | [diff] [blame] | 143 | conf->disks[i].end_sector = |
| 144 | conf->disks[i-1].end_sector + |
| 145 | conf->disks[i].rdev->sectors; |
NeilBrown | 15945fe | 2005-09-09 16:23:47 -0700 | [diff] [blame] | 146 | |
colyli@suse.de | 03a9e24 | 2017-01-28 21:11:49 +0800 | [diff] [blame] | 147 | /* |
| 148 | * conf->raid_disks is copy of mddev->raid_disks. The reason to |
| 149 | * keep a copy of mddev->raid_disks in struct linear_conf is, |
| 150 | * mddev->raid_disks may not be consistent with pointers number of |
| 151 | * conf->disks[] when it is updated in linear_add() and used to |
| 152 | * iterate old conf->disks[] earray in linear_congested(). |
| 153 | * Here conf->raid_disks is always consitent with number of |
| 154 | * pointers in conf->disks[] array, and mddev->private is updated |
| 155 | * with rcu_assign_pointer() in linear_addr(), such race can be |
| 156 | * avoided. |
| 157 | */ |
| 158 | conf->raid_disks = raid_disks; |
| 159 | |
NeilBrown | 7c7546c | 2006-06-26 00:27:41 -0700 | [diff] [blame] | 160 | return conf; |
| 161 | |
| 162 | out: |
| 163 | kfree(conf); |
| 164 | return NULL; |
| 165 | } |
| 166 | |
NeilBrown | fd01b88 | 2011-10-11 16:47:53 +1100 | [diff] [blame] | 167 | static int linear_run (struct mddev *mddev) |
NeilBrown | 7c7546c | 2006-06-26 00:27:41 -0700 | [diff] [blame] | 168 | { |
NeilBrown | e849b93 | 2011-10-11 16:48:54 +1100 | [diff] [blame] | 169 | struct linear_conf *conf; |
majianpeng | 98d5561 | 2012-04-02 09:48:37 +1000 | [diff] [blame] | 170 | int ret; |
NeilBrown | 7c7546c | 2006-06-26 00:27:41 -0700 | [diff] [blame] | 171 | |
Andre Noll | 0894cc3 | 2009-06-18 08:49:23 +1000 | [diff] [blame] | 172 | if (md_check_no_bitmap(mddev)) |
| 173 | return -EINVAL; |
NeilBrown | 7c7546c | 2006-06-26 00:27:41 -0700 | [diff] [blame] | 174 | conf = linear_conf(mddev, mddev->raid_disks); |
| 175 | |
| 176 | if (!conf) |
| 177 | return 1; |
| 178 | mddev->private = conf; |
Dan Williams | 1f40362 | 2009-03-31 14:59:03 +1100 | [diff] [blame] | 179 | md_set_array_sectors(mddev, linear_size(mddev, 0, 0)); |
NeilBrown | 7c7546c | 2006-06-26 00:27:41 -0700 | [diff] [blame] | 180 | |
majianpeng | 98d5561 | 2012-04-02 09:48:37 +1000 | [diff] [blame] | 181 | ret = md_integrity_register(mddev); |
| 182 | if (ret) { |
| 183 | kfree(conf); |
| 184 | mddev->private = NULL; |
| 185 | } |
| 186 | return ret; |
NeilBrown | 7c7546c | 2006-06-26 00:27:41 -0700 | [diff] [blame] | 187 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | |
NeilBrown | fd01b88 | 2011-10-11 16:47:53 +1100 | [diff] [blame] | 189 | static int linear_add(struct mddev *mddev, struct md_rdev *rdev) |
NeilBrown | 7c7546c | 2006-06-26 00:27:41 -0700 | [diff] [blame] | 190 | { |
| 191 | /* Adding a drive to a linear array allows the array to grow. |
| 192 | * It is permitted if the new drive has a matching superblock |
| 193 | * already on it, with raid_disk equal to raid_disks. |
| 194 | * It is achieved by creating a new linear_private_data structure |
| 195 | * and swapping it in in-place of the current one. |
| 196 | * The current one is never freed until the array is stopped. |
| 197 | * This avoids races. |
| 198 | */ |
NeilBrown | e849b93 | 2011-10-11 16:48:54 +1100 | [diff] [blame] | 199 | struct linear_conf *newconf, *oldconf; |
NeilBrown | 7c7546c | 2006-06-26 00:27:41 -0700 | [diff] [blame] | 200 | |
NeilBrown | a778b73 | 2007-05-23 13:58:10 -0700 | [diff] [blame] | 201 | if (rdev->saved_raid_disk != mddev->raid_disks) |
NeilBrown | 7c7546c | 2006-06-26 00:27:41 -0700 | [diff] [blame] | 202 | return -EINVAL; |
| 203 | |
NeilBrown | a778b73 | 2007-05-23 13:58:10 -0700 | [diff] [blame] | 204 | rdev->raid_disk = rdev->saved_raid_disk; |
NeilBrown | 09cd927 | 2011-12-23 09:56:55 +1100 | [diff] [blame] | 205 | rdev->saved_raid_disk = -1; |
NeilBrown | a778b73 | 2007-05-23 13:58:10 -0700 | [diff] [blame] | 206 | |
NeilBrown | 7c7546c | 2006-06-26 00:27:41 -0700 | [diff] [blame] | 207 | newconf = linear_conf(mddev,mddev->raid_disks+1); |
| 208 | |
| 209 | if (!newconf) |
| 210 | return -ENOMEM; |
| 211 | |
colyli@suse.de | 03a9e24 | 2017-01-28 21:11:49 +0800 | [diff] [blame] | 212 | /* newconf->raid_disks already keeps a copy of * the increased |
| 213 | * value of mddev->raid_disks, WARN_ONCE() is just used to make |
| 214 | * sure of this. It is possible that oldconf is still referenced |
| 215 | * in linear_congested(), therefore kfree_rcu() is used to free |
| 216 | * oldconf until no one uses it anymore. |
| 217 | */ |
NeilBrown | 3be260c | 2014-12-15 12:56:57 +1100 | [diff] [blame] | 218 | mddev_suspend(mddev); |
Shaohua Li | d939cdf | 2017-02-21 11:57:01 -0800 | [diff] [blame] | 219 | oldconf = rcu_dereference_protected(mddev->private, |
| 220 | lockdep_is_held(&mddev->reconfig_mutex)); |
NeilBrown | 7c7546c | 2006-06-26 00:27:41 -0700 | [diff] [blame] | 221 | mddev->raid_disks++; |
colyli@suse.de | 03a9e24 | 2017-01-28 21:11:49 +0800 | [diff] [blame] | 222 | WARN_ONCE(mddev->raid_disks != newconf->raid_disks, |
| 223 | "copied raid_disks doesn't match mddev->raid_disks"); |
| 224 | rcu_assign_pointer(mddev->private, newconf); |
Dan Williams | 1f40362 | 2009-03-31 14:59:03 +1100 | [diff] [blame] | 225 | md_set_array_sectors(mddev, linear_size(mddev, 0, 0)); |
Andre Noll | f233ea5 | 2008-07-21 17:05:22 +1000 | [diff] [blame] | 226 | set_capacity(mddev->gendisk, mddev->array_sectors); |
NeilBrown | 3be260c | 2014-12-15 12:56:57 +1100 | [diff] [blame] | 227 | mddev_resume(mddev); |
NeilBrown | 449aad3 | 2009-08-03 10:59:58 +1000 | [diff] [blame] | 228 | revalidate_disk(mddev->gendisk); |
colyli@suse.de | 03a9e24 | 2017-01-28 21:11:49 +0800 | [diff] [blame] | 229 | kfree_rcu(oldconf, rcu); |
NeilBrown | 7c7546c | 2006-06-26 00:27:41 -0700 | [diff] [blame] | 230 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | } |
| 232 | |
NeilBrown | afa0f55 | 2014-12-15 12:56:58 +1100 | [diff] [blame] | 233 | static void linear_free(struct mddev *mddev, void *priv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | { |
NeilBrown | afa0f55 | 2014-12-15 12:56:58 +1100 | [diff] [blame] | 235 | struct linear_conf *conf = priv; |
SandeepKsinha | af11c39 | 2009-06-18 08:49:35 +1000 | [diff] [blame] | 236 | |
NeilBrown | 495d357 | 2009-06-18 08:49:42 +1000 | [diff] [blame] | 237 | kfree(conf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | } |
| 239 | |
NeilBrown | cc27b0c | 2017-06-05 16:49:39 +1000 | [diff] [blame] | 240 | static bool linear_make_request(struct mddev *mddev, struct bio *bio) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | { |
Kent Overstreet | 20d0189 | 2013-11-23 18:21:01 -0800 | [diff] [blame] | 242 | char b[BDEVNAME_SIZE]; |
NeilBrown | a712077 | 2011-10-11 16:48:49 +1100 | [diff] [blame] | 243 | struct dev_info *tmp_dev; |
Kent Overstreet | 20d0189 | 2013-11-23 18:21:01 -0800 | [diff] [blame] | 244 | sector_t start_sector, end_sector, data_offset; |
NeilBrown | 868f604 | 2017-04-05 14:05:51 +1000 | [diff] [blame] | 245 | sector_t bio_sector = bio->bi_iter.bi_sector; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 246 | |
Jens Axboe | 1eff9d3 | 2016-08-05 15:35:16 -0600 | [diff] [blame] | 247 | if (unlikely(bio->bi_opf & REQ_PREFLUSH)) { |
Tejun Heo | e9c7469 | 2010-09-03 11:56:18 +0200 | [diff] [blame] | 248 | md_flush_request(mddev, bio); |
NeilBrown | cc27b0c | 2017-06-05 16:49:39 +1000 | [diff] [blame] | 249 | return true; |
NeilBrown | e5dcdd8 | 2005-09-09 16:23:41 -0700 | [diff] [blame] | 250 | } |
| 251 | |
NeilBrown | 868f604 | 2017-04-05 14:05:51 +1000 | [diff] [blame] | 252 | tmp_dev = which_dev(mddev, bio_sector); |
| 253 | start_sector = tmp_dev->end_sector - tmp_dev->rdev->sectors; |
| 254 | end_sector = tmp_dev->end_sector; |
| 255 | data_offset = tmp_dev->rdev->data_offset; |
Andre Noll | 6283815 | 2008-10-13 11:55:12 +1100 | [diff] [blame] | 256 | |
NeilBrown | 868f604 | 2017-04-05 14:05:51 +1000 | [diff] [blame] | 257 | if (unlikely(bio_sector >= end_sector || |
| 258 | bio_sector < start_sector)) |
| 259 | goto out_of_bounds; |
Andre Noll | 6283815 | 2008-10-13 11:55:12 +1100 | [diff] [blame] | 260 | |
NeilBrown | 868f604 | 2017-04-05 14:05:51 +1000 | [diff] [blame] | 261 | if (unlikely(bio_end_sector(bio) > end_sector)) { |
| 262 | /* This bio crosses a device boundary, so we have to split it */ |
| 263 | struct bio *split = bio_split(bio, end_sector - bio_sector, |
Kent Overstreet | afeee51 | 2018-05-20 18:25:52 -0400 | [diff] [blame] | 264 | GFP_NOIO, &mddev->bio_set); |
NeilBrown | 868f604 | 2017-04-05 14:05:51 +1000 | [diff] [blame] | 265 | bio_chain(split, bio); |
| 266 | generic_make_request(bio); |
| 267 | bio = split; |
| 268 | } |
Shaohua Li | f1cad2b | 2012-10-11 13:08:44 +1100 | [diff] [blame] | 269 | |
Christoph Hellwig | 74d4699 | 2017-08-23 19:10:32 +0200 | [diff] [blame] | 270 | bio_set_dev(bio, tmp_dev->rdev->bdev); |
NeilBrown | 868f604 | 2017-04-05 14:05:51 +1000 | [diff] [blame] | 271 | bio->bi_iter.bi_sector = bio->bi_iter.bi_sector - |
| 272 | start_sector + data_offset; |
Shaohua Li | f1cad2b | 2012-10-11 13:08:44 +1100 | [diff] [blame] | 273 | |
NeilBrown | 868f604 | 2017-04-05 14:05:51 +1000 | [diff] [blame] | 274 | if (unlikely((bio_op(bio) == REQ_OP_DISCARD) && |
Christoph Hellwig | 74d4699 | 2017-08-23 19:10:32 +0200 | [diff] [blame] | 275 | !blk_queue_discard(bio->bi_disk->queue))) { |
NeilBrown | 868f604 | 2017-04-05 14:05:51 +1000 | [diff] [blame] | 276 | /* Just ignore it */ |
| 277 | bio_endio(bio); |
| 278 | } else { |
| 279 | if (mddev->gendisk) |
Christoph Hellwig | 74d4699 | 2017-08-23 19:10:32 +0200 | [diff] [blame] | 280 | trace_block_bio_remap(bio->bi_disk->queue, |
NeilBrown | 868f604 | 2017-04-05 14:05:51 +1000 | [diff] [blame] | 281 | bio, disk_devt(mddev->gendisk), |
| 282 | bio_sector); |
| 283 | mddev_check_writesame(mddev, bio); |
Shaohua Li | e265eb3a | 2017-05-01 14:09:21 -0700 | [diff] [blame] | 284 | mddev_check_write_zeroes(mddev, bio); |
NeilBrown | 868f604 | 2017-04-05 14:05:51 +1000 | [diff] [blame] | 285 | generic_make_request(bio); |
| 286 | } |
NeilBrown | cc27b0c | 2017-06-05 16:49:39 +1000 | [diff] [blame] | 287 | return true; |
Kent Overstreet | 20d0189 | 2013-11-23 18:21:01 -0800 | [diff] [blame] | 288 | |
| 289 | out_of_bounds: |
NeilBrown | a2e202a | 2016-11-02 14:16:49 +1100 | [diff] [blame] | 290 | pr_err("md/linear:%s: make_request: Sector %llu out of bounds on dev %s: %llu sectors, offset %llu\n", |
Kent Overstreet | 20d0189 | 2013-11-23 18:21:01 -0800 | [diff] [blame] | 291 | mdname(mddev), |
| 292 | (unsigned long long)bio->bi_iter.bi_sector, |
| 293 | bdevname(tmp_dev->rdev->bdev, b), |
| 294 | (unsigned long long)tmp_dev->rdev->sectors, |
| 295 | (unsigned long long)start_sector); |
| 296 | bio_io_error(bio); |
NeilBrown | cc27b0c | 2017-06-05 16:49:39 +1000 | [diff] [blame] | 297 | return true; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | } |
| 299 | |
NeilBrown | fd01b88 | 2011-10-11 16:47:53 +1100 | [diff] [blame] | 300 | static void linear_status (struct seq_file *seq, struct mddev *mddev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 301 | { |
Andre Noll | 9d8f036 | 2009-06-18 08:45:01 +1000 | [diff] [blame] | 302 | seq_printf(seq, " %dk rounding", mddev->chunk_sectors / 2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 303 | } |
| 304 | |
NeilBrown | 3be260c | 2014-12-15 12:56:57 +1100 | [diff] [blame] | 305 | static void linear_quiesce(struct mddev *mddev, int state) |
| 306 | { |
| 307 | } |
| 308 | |
NeilBrown | 84fc4b5 | 2011-10-11 16:49:58 +1100 | [diff] [blame] | 309 | static struct md_personality linear_personality = |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | { |
| 311 | .name = "linear", |
NeilBrown | 2604b70 | 2006-01-06 00:20:36 -0800 | [diff] [blame] | 312 | .level = LEVEL_LINEAR, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 313 | .owner = THIS_MODULE, |
| 314 | .make_request = linear_make_request, |
| 315 | .run = linear_run, |
NeilBrown | afa0f55 | 2014-12-15 12:56:58 +1100 | [diff] [blame] | 316 | .free = linear_free, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | .status = linear_status, |
NeilBrown | 7c7546c | 2006-06-26 00:27:41 -0700 | [diff] [blame] | 318 | .hot_add_disk = linear_add, |
Dan Williams | 80c3a6c | 2009-03-17 18:10:40 -0700 | [diff] [blame] | 319 | .size = linear_size, |
NeilBrown | 3be260c | 2014-12-15 12:56:57 +1100 | [diff] [blame] | 320 | .quiesce = linear_quiesce, |
NeilBrown | 5c675f8 | 2014-12-15 12:56:56 +1100 | [diff] [blame] | 321 | .congested = linear_congested, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | }; |
| 323 | |
| 324 | static int __init linear_init (void) |
| 325 | { |
NeilBrown | 2604b70 | 2006-01-06 00:20:36 -0800 | [diff] [blame] | 326 | return register_md_personality (&linear_personality); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 327 | } |
| 328 | |
| 329 | static void linear_exit (void) |
| 330 | { |
NeilBrown | 2604b70 | 2006-01-06 00:20:36 -0800 | [diff] [blame] | 331 | unregister_md_personality (&linear_personality); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 332 | } |
| 333 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 334 | module_init(linear_init); |
| 335 | module_exit(linear_exit); |
| 336 | MODULE_LICENSE("GPL"); |
NeilBrown | 0efb9e6 | 2009-12-14 12:49:58 +1100 | [diff] [blame] | 337 | MODULE_DESCRIPTION("Linear device concatenation personality for MD"); |
NeilBrown | d9d166c | 2006-01-06 00:20:51 -0800 | [diff] [blame] | 338 | MODULE_ALIAS("md-personality-1"); /* LINEAR - deprecated*/ |
| 339 | MODULE_ALIAS("md-linear"); |
NeilBrown | 2604b70 | 2006-01-06 00:20:36 -0800 | [diff] [blame] | 340 | MODULE_ALIAS("md-level--1"); |