Skip to content

Commit 7ef6b12

Browse files
Ming Linaxboe
authored andcommitted
md/raid5: split bio for chunk_aligned_read
If a read request fits entirely in a chunk, it will be passed directly to the underlying device (providing it hasn't failed of course). If it doesn't fit, the slightly less efficient path that uses the stripe_cache is used. Requests that get to the stripe cache are always completely split up as necessary. So with RAID5, ripping out the merge_bvec_fn doesn't cause it to stop work, but could cause it to take the less efficient path more often. All that is needed to manage this is for 'chunk_aligned_read' do some bio splitting, much like the RAID0 code does. Cc: Neil Brown <neilb@suse.de> Cc: linux-raid@vger.kernel.org Acked-by: NeilBrown <neilb@suse.de> Signed-off-by: Ming Lin <ming.l@ssi.samsung.com> Signed-off-by: Jens Axboe <axboe@fb.com>
1 parent b49a087 commit 7ef6b12

File tree

1 file changed

+32
-5
lines changed

1 file changed

+32
-5
lines changed

drivers/md/raid5.c

Lines changed: 32 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4800,7 +4800,7 @@ static int bio_fits_rdev(struct bio *bi)
48004800
return 1;
48014801
}
48024802

4803-
static int chunk_aligned_read(struct mddev *mddev, struct bio * raid_bio)
4803+
static int raid5_read_one_chunk(struct mddev *mddev, struct bio *raid_bio)
48044804
{
48054805
struct r5conf *conf = mddev->private;
48064806
int dd_idx;
@@ -4809,7 +4809,7 @@ static int chunk_aligned_read(struct mddev *mddev, struct bio * raid_bio)
48094809
sector_t end_sector;
48104810

48114811
if (!in_chunk_boundary(mddev, raid_bio)) {
4812-
pr_debug("chunk_aligned_read : non aligned\n");
4812+
pr_debug("%s: non aligned\n", __func__);
48134813
return 0;
48144814
}
48154815
/*
@@ -4886,6 +4886,31 @@ static int chunk_aligned_read(struct mddev *mddev, struct bio * raid_bio)
48864886
}
48874887
}
48884888

4889+
static struct bio *chunk_aligned_read(struct mddev *mddev, struct bio *raid_bio)
4890+
{
4891+
struct bio *split;
4892+
4893+
do {
4894+
sector_t sector = raid_bio->bi_iter.bi_sector;
4895+
unsigned chunk_sects = mddev->chunk_sectors;
4896+
unsigned sectors = chunk_sects - (sector & (chunk_sects-1));
4897+
4898+
if (sectors < bio_sectors(raid_bio)) {
4899+
split = bio_split(raid_bio, sectors, GFP_NOIO, fs_bio_set);
4900+
bio_chain(split, raid_bio);
4901+
} else
4902+
split = raid_bio;
4903+
4904+
if (!raid5_read_one_chunk(mddev, split)) {
4905+
if (split != raid_bio)
4906+
generic_make_request(raid_bio);
4907+
return split;
4908+
}
4909+
} while (split != raid_bio);
4910+
4911+
return NULL;
4912+
}
4913+
48894914
/* __get_priority_stripe - get the next stripe to process
48904915
*
48914916
* Full stripe writes are allowed to pass preread active stripes up until
@@ -5163,9 +5188,11 @@ static void make_request(struct mddev *mddev, struct bio * bi)
51635188
* data on failed drives.
51645189
*/
51655190
if (rw == READ && mddev->degraded == 0 &&
5166-
mddev->reshape_position == MaxSector &&
5167-
chunk_aligned_read(mddev,bi))
5168-
return;
5191+
mddev->reshape_position == MaxSector) {
5192+
bi = chunk_aligned_read(mddev, bi);
5193+
if (!bi)
5194+
return;
5195+
}
51695196

51705197
if (unlikely(bi->bi_rw & REQ_DISCARD)) {
51715198
make_discard_request(mddev, bi);

0 commit comments

Comments
 (0)