summaryrefslogtreecommitdiff
path: root/drivers/md/bcache/super.c
diff options
context:
space:
mode:
authorKent Overstreet <kmo@daterainc.com>2014-02-11 01:26:40 (GMT)
committerKent Overstreet <kmo@daterainc.com>2014-03-18 19:22:33 (GMT)
commit90db6919f5f1614d1b7a92052445506bc6c564d2 (patch)
tree61e0dca7d52529ce0dd13b77c1452592ddf781b4 /drivers/md/bcache/super.c
parent487dded86ea065317aea121bec8f1816f2f235c9 (diff)
downloadlinux-90db6919f5f1614d1b7a92052445506bc6c564d2.tar.xz
bcache: Fix discard granularity
blk_stack_limits() doesn't like a discard granularity of 0. Signed-off-by: Kent Overstreet <kmo@daterainc.com>
Diffstat (limited to 'drivers/md/bcache/super.c')
-rw-r--r--drivers/md/bcache/super.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/md/bcache/super.c b/drivers/md/bcache/super.c
index 5136e11..fb34327 100644
--- a/drivers/md/bcache/super.c
+++ b/drivers/md/bcache/super.c
@@ -843,6 +843,7 @@ static int bcache_device_init(struct bcache_device *d, unsigned block_size,
q->limits.max_segment_size = UINT_MAX;
q->limits.max_segments = BIO_MAX_PAGES;
q->limits.max_discard_sectors = UINT_MAX;
+ q->limits.discard_granularity = 512;
q->limits.io_min = block_size;
q->limits.logical_block_size = block_size;
q->limits.physical_block_size = block_size;