diff options
author | Christoph Hellwig <[email protected]> | 2016-07-19 11:23:34 +0200 |
---|---|---|
committer | Jens Axboe <[email protected]> | 2016-07-20 17:35:22 -0600 |
commit | 3f40bf2c89223192535a72a4d49ce7d68d8ed9dd (patch) | |
tree | 3735095a40bdb41e437bc74bb192e540a63c0895 | |
parent | e950fdf71c9b4a6b63b58fed78956a96cc907402 (diff) |
block: don't ignore -EOPNOTSUPP blkdev_issue_write_same
WRITE SAME is a data integrity operation and we can't simply ignore
errors.
Signed-off-by: Christoph Hellwig <[email protected]>
Reviewed-by: Martin K. Petersen <[email protected]>
Signed-off-by: Jens Axboe <[email protected]>
-rw-r--r-- | block/blk-lib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/block/blk-lib.c b/block/blk-lib.c index 45b35b15496f..e371f83a3186 100644 --- a/block/blk-lib.c +++ b/block/blk-lib.c @@ -178,7 +178,7 @@ int blkdev_issue_write_same(struct block_device *bdev, sector_t sector, if (bio) ret = submit_bio_wait(bio); - return ret != -EOPNOTSUPP ? ret : 0; + return ret; } EXPORT_SYMBOL(blkdev_issue_write_same); |