From: Jiri Kosina Date: Wed, 18 Jun 2014 09:19:06 +0000 (+0200) Subject: floppy: do not corrupt bio.bi_flags when reading block 0 X-Git-Tag: v3.12.23~107 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=be385c37c4c5ce1226cb6dccc0b174ff1900329f;p=platform%2Fkernel%2Flinux-stable.git floppy: do not corrupt bio.bi_flags when reading block 0 commit 6314a108ec19aefa5160535b2bfe1ca9c38efe37 upstream. Commit 41a55b4de39 ("floppy: silence warning during disk test") caused bio.bi_flags being overwritten, and its initialization to BIO_UPTODATE in bio_init() to be lost. This was unnoticed until 7b7b68bba5 ("floppy: bail out in open() if drive is not responding to block0 read"), because the error value wasn't checked for in the bio completion callback. Now we are actually looking at the error, and the loss of BIO_UPTODATE causes EIO to be wrongly passed to the callback, which confuses the FD_OPEN_SHOULD_FAIL_BIT logic. Fix this by not destroying previous value of bi_flags when setting BIO_QUIET. Signed-off-by: Jiri Kosina Signed-off-by: Jiri Slaby --- diff --git a/drivers/block/floppy.c b/drivers/block/floppy.c index cf3e5042193c..f0bbdecca675 100644 --- a/drivers/block/floppy.c +++ b/drivers/block/floppy.c @@ -3798,7 +3798,7 @@ static int __floppy_read_block_0(struct block_device *bdev, int drive) bio.bi_size = size; bio.bi_bdev = bdev; bio.bi_sector = 0; - bio.bi_flags = (1 << BIO_QUIET); + bio.bi_flags |= (1 << BIO_QUIET); bio.bi_private = &cbdata; bio.bi_end_io = floppy_rb0_cb;