diff options
author | Christoph Hellwig <hch@lst.de> | 2017-04-05 13:21:03 -0400 |
---|---|---|
committer | Jens Axboe <axboe@fb.com> | 2017-04-08 13:25:38 -0400 |
commit | 3deff1a70d5901342f460f8cc36e5d0c5d51c319 (patch) | |
tree | a74cc58c2a3105a9505028c87f8991378979e33c /drivers/md/raid1.c | |
parent | 02d261034f1c90ac8b052406bd7b18d2564b0b3c (diff) |
md: support REQ_OP_WRITE_ZEROES
Copy & paste from the REQ_OP_WRITE_SAME code.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Hannes Reinecke <hare@suse.com>
Signed-off-by: Jens Axboe <axboe@fb.com>
Diffstat (limited to 'drivers/md/raid1.c')
-rw-r--r-- | drivers/md/raid1.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/md/raid1.c b/drivers/md/raid1.c index a34f58772022..b59cc100320a 100644 --- a/drivers/md/raid1.c +++ b/drivers/md/raid1.c | |||
@@ -3177,8 +3177,10 @@ static int raid1_run(struct mddev *mddev) | |||
3177 | if (IS_ERR(conf)) | 3177 | if (IS_ERR(conf)) |
3178 | return PTR_ERR(conf); | 3178 | return PTR_ERR(conf); |
3179 | 3179 | ||
3180 | if (mddev->queue) | 3180 | if (mddev->queue) { |
3181 | blk_queue_max_write_same_sectors(mddev->queue, 0); | 3181 | blk_queue_max_write_same_sectors(mddev->queue, 0); |
3182 | blk_queue_max_write_zeroes_sectors(mddev->queue, 0); | ||
3183 | } | ||
3182 | 3184 | ||
3183 | rdev_for_each(rdev, mddev) { | 3185 | rdev_for_each(rdev, mddev) { |
3184 | if (!mddev->gendisk) | 3186 | if (!mddev->gendisk) |