Skip to content

Commit

Permalink
blkdev: Do not return -EOPNOTSUPP if discard is supported
Browse files Browse the repository at this point in the history
Currently we return -EOPNOTSUPP in blkdev_issue_discard() if any of the
bio fails due to underlying device not supporting discard request.
However, if the device is for example dm device composed of devices
which some of them support discard and some of them does not, it is ok
for some bios to fail with EOPNOTSUPP, but it does not mean that discard
is not supported at all.

This commit removes the check for bios failed with EOPNOTSUPP and change
blkdev_issue_discard() to return operation not supported if and only if
the device does not actually supports it, not just part of the device as
some bios might indicate.

This change also fixes problem with BLKDISCARD ioctl() which now works
correctly on such dm devices.

Signed-off-by: Lukas Czerner <lczerner@redhat.com>
CC: Jens Axboe <jaxboe@fusionio.com>
CC: Jeff Moyer <jmoyer@redhat.com>
Signed-off-by: Jens Axboe <jaxboe@fusionio.com>
  • Loading branch information
Lukas Czerner authored and Jens Axboe committed May 7, 2011
1 parent 5baebe5 commit 8af1954
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions block/blk-lib.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,8 @@ static void bio_batch_end_io(struct bio *bio, int err)
{
struct bio_batch *bb = bio->bi_private;

if (err) {
if (err == -EOPNOTSUPP)
set_bit(BIO_EOPNOTSUPP, &bb->flags);
if (err && (err != -EOPNOTSUPP))
clear_bit(BIO_UPTODATE, &bb->flags);
}
if (atomic_dec_and_test(&bb->done))
complete(bb->wait);
bio_put(bio);
Expand Down Expand Up @@ -107,9 +104,7 @@ int blkdev_issue_discard(struct block_device *bdev, sector_t sector,
if (!atomic_dec_and_test(&bb.done))
wait_for_completion(&wait);

if (test_bit(BIO_EOPNOTSUPP, &bb.flags))
ret = -EOPNOTSUPP;
else if (!test_bit(BIO_UPTODATE, &bb.flags))
if (!test_bit(BIO_UPTODATE, &bb.flags))
ret = -EIO;

return ret;
Expand Down

0 comments on commit 8af1954

Please sign in to comment.