diff options
author | Kent Overstreet <kmo@daterainc.com> | 2013-07-11 22:39:53 -0700 |
---|---|---|
committer | Kent Overstreet <kmo@daterainc.com> | 2014-01-08 13:05:09 -0800 |
commit | c78afc6261b09f74abff8c0719b80692a4959768 (patch) | |
tree | 4b3d5e421fad23e3bd0866a0b18c845acf297506 /drivers/md/raid5.c | |
parent | 5f5837d2d650db25b9153b91535e67a96b265f58 (diff) | |
download | talos-obmc-linux-c78afc6261b09f74abff8c0719b80692a4959768.tar.gz talos-obmc-linux-c78afc6261b09f74abff8c0719b80692a4959768.zip |
bcache/md: Use raid stripe size
Now that we've got code for raid5/6 stripe awareness, bcache just needs
to know about the stripes and when writing partial stripes is expensive
- we probably don't want to enable this optimization for raid1 or 10,
even though they have stripes. So add a flag to queue_limits.
Signed-off-by: Kent Overstreet <kmo@daterainc.com>
Diffstat (limited to 'drivers/md/raid5.c')
-rw-r--r-- | drivers/md/raid5.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/md/raid5.c b/drivers/md/raid5.c index eea63372e4d3..1cfb22c025b6 100644 --- a/drivers/md/raid5.c +++ b/drivers/md/raid5.c @@ -6101,6 +6101,7 @@ static int run(struct mddev *mddev) blk_queue_io_min(mddev->queue, chunk_size); blk_queue_io_opt(mddev->queue, chunk_size * (conf->raid_disks - conf->max_degraded)); + mddev->queue->limits.raid_partial_stripes_expensive = 1; /* * We can only discard a whole stripe. It doesn't make sense to * discard data disk but write parity disk |