linux-fsdevel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [BUG] + possible [PATCH]. blkdev_issue_flush is a NOOP for request based drivers
@ 2011-05-26 11:00 Alex Bligh
  2011-05-26 12:53 ` Tejun Heo
  0 siblings, 1 reply; 3+ messages in thread
From: Alex Bligh @ 2011-05-26 11:00 UTC (permalink / raw)
  To: linux-fsdevel, Tejun Heo, Jan Kara; +Cc: Alex Bligh

blkdev_issue_flush appears to be a NOOP for request-based srivers, because
it returns -ENXIO if no make_request_function is present. AIUI only bio
based drivers have a make_request_function. The preceding comment suggests
this is an attempt to avoid making a request to bio based drivers before
their queue is set up. This should not exclude request based drivers from
getting any flushes. Instead therefore check for EITHER
make_request_function OR request_function and queue flags. The check for
queue flags may be unnecessary as the block layer may simply not send the
flush on.

-- 
Alex Bligh

Signed-Off-By: Alex Bligh <alex@alex.org.uk>

diff --git a/block/blk-flush.c b/block/blk-flush.c
index 6c9b5e1..3a6d4bd 100644
--- a/block/blk-flush.c
+++ b/block/blk-flush.c
@@ -405,13 +405,14 @@ int blkdev_issue_flush(struct block_device *bdev, 
gfp_t gfp_mask,
        /*
         * some block devices may not have their queue correctly set up here
         * (e.g. loop device without a backing file) and so issuing a flush
         * here will panic. Ensure there is a request function before 
issuing
         * the flush.
         */
-       if (!q->make_request_fn)
+       if (!q->make_request_fn &&
+           !(q->request_fn && (q->flush_flags & REQ_FLUSH)))
                return -ENXIO;

        bio = bio_alloc(gfp_mask, 0);
        bio->bi_end_io = bio_end_flush;
        bio->bi_bdev = bdev;
        bio->bi_private = &wait;


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2011-05-26 13:09 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-05-26 11:00 [BUG] + possible [PATCH]. blkdev_issue_flush is a NOOP for request based drivers Alex Bligh
2011-05-26 12:53 ` Tejun Heo
2011-05-26 13:09   ` Alex Bligh

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).