blob: b27d0208611b4d904e7fda9e4e66bd9a4c7411b4 [file] [log] [blame]
Jens Axboe86db1e22008-01-29 14:53:40 +01001/*
Tejun Heo4fed9472010-09-03 11:56:17 +02002 * Functions to sequence FLUSH and FUA writes.
Jens Axboe86db1e22008-01-29 14:53:40 +01003 */
4#include <linux/kernel.h>
5#include <linux/module.h>
6#include <linux/bio.h>
7#include <linux/blkdev.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09008#include <linux/gfp.h>
Jens Axboe86db1e22008-01-29 14:53:40 +01009
10#include "blk.h"
11
Tejun Heo4fed9472010-09-03 11:56:17 +020012/* FLUSH/FUA sequences */
13enum {
14 QUEUE_FSEQ_STARTED = (1 << 0), /* flushing in progress */
15 QUEUE_FSEQ_PREFLUSH = (1 << 1), /* pre-flushing in progress */
16 QUEUE_FSEQ_DATA = (1 << 2), /* data write in progress */
17 QUEUE_FSEQ_POSTFLUSH = (1 << 3), /* post-flushing in progress */
18 QUEUE_FSEQ_DONE = (1 << 4),
19};
20
Tejun Heodd4c1332010-09-03 11:56:16 +020021static struct request *queue_next_fseq(struct request_queue *q);
Tejun Heo28e7d182010-09-03 11:56:16 +020022
Tejun Heodd4c1332010-09-03 11:56:16 +020023unsigned blk_flush_cur_seq(struct request_queue *q)
Jens Axboe86db1e22008-01-29 14:53:40 +010024{
Tejun Heodd4c1332010-09-03 11:56:16 +020025 if (!q->flush_seq)
Jens Axboe86db1e22008-01-29 14:53:40 +010026 return 0;
Tejun Heodd4c1332010-09-03 11:56:16 +020027 return 1 << ffz(q->flush_seq);
Jens Axboe86db1e22008-01-29 14:53:40 +010028}
29
Tejun Heodd4c1332010-09-03 11:56:16 +020030static struct request *blk_flush_complete_seq(struct request_queue *q,
31 unsigned seq, int error)
Jens Axboe86db1e22008-01-29 14:53:40 +010032{
Tejun Heo28e7d182010-09-03 11:56:16 +020033 struct request *next_rq = NULL;
Jens Axboe86db1e22008-01-29 14:53:40 +010034
Tejun Heodd4c1332010-09-03 11:56:16 +020035 if (error && !q->flush_err)
36 q->flush_err = error;
Jens Axboe86db1e22008-01-29 14:53:40 +010037
Tejun Heodd4c1332010-09-03 11:56:16 +020038 BUG_ON(q->flush_seq & seq);
39 q->flush_seq |= seq;
Jens Axboe86db1e22008-01-29 14:53:40 +010040
Tejun Heodd4c1332010-09-03 11:56:16 +020041 if (blk_flush_cur_seq(q) != QUEUE_FSEQ_DONE) {
42 /* not complete yet, queue the next flush sequence */
43 next_rq = queue_next_fseq(q);
Tejun Heo28e7d182010-09-03 11:56:16 +020044 } else {
Tejun Heodd4c1332010-09-03 11:56:16 +020045 /* complete this flush request */
46 __blk_end_request_all(q->orig_flush_rq, q->flush_err);
47 q->orig_flush_rq = NULL;
48 q->flush_seq = 0;
Jens Axboe86db1e22008-01-29 14:53:40 +010049
Tejun Heodd4c1332010-09-03 11:56:16 +020050 /* dispatch the next flush if there's one */
51 if (!list_empty(&q->pending_flushes)) {
52 next_rq = list_entry_rq(q->pending_flushes.next);
Tejun Heo28e7d182010-09-03 11:56:16 +020053 list_move(&next_rq->queuelist, &q->queue_head);
54 }
55 }
56 return next_rq;
Jens Axboe86db1e22008-01-29 14:53:40 +010057}
58
Tejun Heo47f70d52010-09-03 11:56:17 +020059static void blk_flush_complete_seq_end_io(struct request_queue *q,
60 unsigned seq, int error)
61{
62 bool was_empty = elv_queue_empty(q);
63 struct request *next_rq;
64
65 next_rq = blk_flush_complete_seq(q, seq, error);
66
67 /*
68 * Moving a request silently to empty queue_head may stall the
Tejun Heo255bb492011-03-02 08:48:06 -050069 * queue. Kick the queue in those cases. This function is called
70 * from request completion path and calling directly into
71 * request_fn may confuse the driver. Always use kblockd.
Tejun Heo47f70d52010-09-03 11:56:17 +020072 */
73 if (was_empty && next_rq)
Tejun Heo255bb492011-03-02 08:48:06 -050074 __blk_run_queue(q, true);
Tejun Heo47f70d52010-09-03 11:56:17 +020075}
76
Jens Axboe86db1e22008-01-29 14:53:40 +010077static void pre_flush_end_io(struct request *rq, int error)
78{
79 elv_completed_request(rq->q, rq);
Tejun Heo47f70d52010-09-03 11:56:17 +020080 blk_flush_complete_seq_end_io(rq->q, QUEUE_FSEQ_PREFLUSH, error);
Jens Axboe86db1e22008-01-29 14:53:40 +010081}
82
Tejun Heodd4c1332010-09-03 11:56:16 +020083static void flush_data_end_io(struct request *rq, int error)
Jens Axboe86db1e22008-01-29 14:53:40 +010084{
85 elv_completed_request(rq->q, rq);
Tejun Heo47f70d52010-09-03 11:56:17 +020086 blk_flush_complete_seq_end_io(rq->q, QUEUE_FSEQ_DATA, error);
Jens Axboe86db1e22008-01-29 14:53:40 +010087}
88
89static void post_flush_end_io(struct request *rq, int error)
90{
91 elv_completed_request(rq->q, rq);
Tejun Heo47f70d52010-09-03 11:56:17 +020092 blk_flush_complete_seq_end_io(rq->q, QUEUE_FSEQ_POSTFLUSH, error);
Jens Axboe86db1e22008-01-29 14:53:40 +010093}
94
Christoph Hellwigcde4c402010-09-03 11:56:17 +020095static void init_flush_request(struct request *rq, struct gendisk *disk)
Jens Axboe86db1e22008-01-29 14:53:40 +010096{
FUJITA Tomonori28e18d02010-07-09 09:38:24 +090097 rq->cmd_type = REQ_TYPE_FS;
Tejun Heo337238b2010-09-03 11:56:17 +020098 rq->cmd_flags = WRITE_FLUSH;
Christoph Hellwigcde4c402010-09-03 11:56:17 +020099 rq->rq_disk = disk;
Jens Axboe86db1e22008-01-29 14:53:40 +0100100}
101
Tejun Heodd4c1332010-09-03 11:56:16 +0200102static struct request *queue_next_fseq(struct request_queue *q)
Tejun Heo28e7d182010-09-03 11:56:16 +0200103{
Tejun Heo4fed9472010-09-03 11:56:17 +0200104 struct request *orig_rq = q->orig_flush_rq;
Tejun Heodd4c1332010-09-03 11:56:16 +0200105 struct request *rq = &q->flush_rq;
Tejun Heo28e7d182010-09-03 11:56:16 +0200106
Christoph Hellwigcde4c402010-09-03 11:56:17 +0200107 blk_rq_init(q, rq);
108
Tejun Heodd4c1332010-09-03 11:56:16 +0200109 switch (blk_flush_cur_seq(q)) {
110 case QUEUE_FSEQ_PREFLUSH:
Christoph Hellwigcde4c402010-09-03 11:56:17 +0200111 init_flush_request(rq, orig_rq->rq_disk);
112 rq->end_io = pre_flush_end_io;
Tejun Heo28e7d182010-09-03 11:56:16 +0200113 break;
Tejun Heodd4c1332010-09-03 11:56:16 +0200114 case QUEUE_FSEQ_DATA:
Tejun Heo4fed9472010-09-03 11:56:17 +0200115 init_request_from_bio(rq, orig_rq->bio);
Tejun Heo09d60c72010-09-03 11:56:17 +0200116 /*
117 * orig_rq->rq_disk may be different from
118 * bio->bi_bdev->bd_disk if orig_rq got here through
119 * remapping drivers. Make sure rq->rq_disk points
120 * to the same one as orig_rq.
121 */
122 rq->rq_disk = orig_rq->rq_disk;
Tejun Heo4fed9472010-09-03 11:56:17 +0200123 rq->cmd_flags &= ~(REQ_FLUSH | REQ_FUA);
124 rq->cmd_flags |= orig_rq->cmd_flags & (REQ_FLUSH | REQ_FUA);
Tejun Heodd4c1332010-09-03 11:56:16 +0200125 rq->end_io = flush_data_end_io;
Tejun Heo28e7d182010-09-03 11:56:16 +0200126 break;
Tejun Heodd4c1332010-09-03 11:56:16 +0200127 case QUEUE_FSEQ_POSTFLUSH:
Christoph Hellwigcde4c402010-09-03 11:56:17 +0200128 init_flush_request(rq, orig_rq->rq_disk);
129 rq->end_io = post_flush_end_io;
Tejun Heo28e7d182010-09-03 11:56:16 +0200130 break;
Tejun Heo28e7d182010-09-03 11:56:16 +0200131 default:
132 BUG();
133 }
Christoph Hellwigcde4c402010-09-03 11:56:17 +0200134
Tejun Heo255bb492011-03-02 08:48:06 -0500135 elv_insert(q, rq, ELEVATOR_INSERT_REQUEUE);
Tejun Heo28e7d182010-09-03 11:56:16 +0200136 return rq;
137}
138
Tejun Heodd4c1332010-09-03 11:56:16 +0200139struct request *blk_do_flush(struct request_queue *q, struct request *rq)
Jens Axboe86db1e22008-01-29 14:53:40 +0100140{
Tejun Heo4fed9472010-09-03 11:56:17 +0200141 unsigned int fflags = q->flush_flags; /* may change, cache it */
142 bool has_flush = fflags & REQ_FLUSH, has_fua = fflags & REQ_FUA;
143 bool do_preflush = has_flush && (rq->cmd_flags & REQ_FLUSH);
144 bool do_postflush = has_flush && !has_fua && (rq->cmd_flags & REQ_FUA);
Tejun Heo8f11b3e2008-11-28 13:32:05 +0900145 unsigned skip = 0;
146
Tejun Heo4fed9472010-09-03 11:56:17 +0200147 /*
148 * Special case. If there's data but flush is not necessary,
149 * the request can be issued directly.
150 *
151 * Flush w/o data should be able to be issued directly too but
152 * currently some drivers assume that rq->bio contains
153 * non-zero data if it isn't NULL and empty FLUSH requests
154 * getting here usually have bio's without data.
155 */
156 if (blk_rq_sectors(rq) && !do_preflush && !do_postflush) {
157 rq->cmd_flags &= ~REQ_FLUSH;
158 if (!has_fua)
159 rq->cmd_flags &= ~REQ_FUA;
Tejun Heo28e7d182010-09-03 11:56:16 +0200160 return rq;
Tejun Heo28e7d182010-09-03 11:56:16 +0200161 }
162
Tejun Heo4fed9472010-09-03 11:56:17 +0200163 /*
164 * Sequenced flushes can't be processed in parallel. If
165 * another one is already in progress, queue for later
166 * processing.
167 */
168 if (q->flush_seq) {
169 list_move_tail(&rq->queuelist, &q->pending_flushes);
Tejun Heo28e7d182010-09-03 11:56:16 +0200170 return NULL;
171 }
172
173 /*
Tejun Heodd4c1332010-09-03 11:56:16 +0200174 * Start a new flush sequence
Tejun Heo28e7d182010-09-03 11:56:16 +0200175 */
Tejun Heodd4c1332010-09-03 11:56:16 +0200176 q->flush_err = 0;
Tejun Heodd4c1332010-09-03 11:56:16 +0200177 q->flush_seq |= QUEUE_FSEQ_STARTED;
Jens Axboe86db1e22008-01-29 14:53:40 +0100178
Tejun Heo4fed9472010-09-03 11:56:17 +0200179 /* adjust FLUSH/FUA of the original request and stash it away */
180 rq->cmd_flags &= ~REQ_FLUSH;
181 if (!has_fua)
182 rq->cmd_flags &= ~REQ_FUA;
Tejun Heo9934c8c2009-05-08 11:54:16 +0900183 blk_dequeue_request(rq);
Tejun Heodd4c1332010-09-03 11:56:16 +0200184 q->orig_flush_rq = rq;
Jens Axboe86db1e22008-01-29 14:53:40 +0100185
Tejun Heo4fed9472010-09-03 11:56:17 +0200186 /* skip unneded sequences and return the first one */
187 if (!do_preflush)
Tejun Heodd4c1332010-09-03 11:56:16 +0200188 skip |= QUEUE_FSEQ_PREFLUSH;
Tejun Heo4fed9472010-09-03 11:56:17 +0200189 if (!blk_rq_sectors(rq))
Tejun Heodd4c1332010-09-03 11:56:16 +0200190 skip |= QUEUE_FSEQ_DATA;
Tejun Heo4fed9472010-09-03 11:56:17 +0200191 if (!do_postflush)
Tejun Heodd4c1332010-09-03 11:56:16 +0200192 skip |= QUEUE_FSEQ_POSTFLUSH;
Tejun Heodd4c1332010-09-03 11:56:16 +0200193 return blk_flush_complete_seq(q, skip, 0);
Jens Axboe86db1e22008-01-29 14:53:40 +0100194}
195
Tejun Heod391a2d2010-09-03 11:56:17 +0200196static void bio_end_flush(struct bio *bio, int err)
Jens Axboe86db1e22008-01-29 14:53:40 +0100197{
Tejun Heod391a2d2010-09-03 11:56:17 +0200198 if (err)
Jens Axboe86db1e22008-01-29 14:53:40 +0100199 clear_bit(BIO_UPTODATE, &bio->bi_flags);
Dmitry Monakhovf17e2322010-04-28 17:55:07 +0400200 if (bio->bi_private)
201 complete(bio->bi_private);
202 bio_put(bio);
Jens Axboe86db1e22008-01-29 14:53:40 +0100203}
204
205/**
206 * blkdev_issue_flush - queue a flush
207 * @bdev: blockdev to issue flush for
Dmitry Monakhovfbd9b092010-04-28 17:55:06 +0400208 * @gfp_mask: memory allocation flags (for bio_alloc)
Jens Axboe86db1e22008-01-29 14:53:40 +0100209 * @error_sector: error sector
210 *
211 * Description:
212 * Issue a flush for the block device in question. Caller can supply
213 * room for storing the error offset in case of a flush error, if they
Dmitry Monakhovf17e2322010-04-28 17:55:07 +0400214 * wish to. If WAIT flag is not passed then caller may check only what
215 * request was pushed in some internal queue for later handling.
Jens Axboe86db1e22008-01-29 14:53:40 +0100216 */
Dmitry Monakhovfbd9b092010-04-28 17:55:06 +0400217int blkdev_issue_flush(struct block_device *bdev, gfp_t gfp_mask,
Christoph Hellwigdd3932e2010-09-16 20:51:46 +0200218 sector_t *error_sector)
Jens Axboe86db1e22008-01-29 14:53:40 +0100219{
220 DECLARE_COMPLETION_ONSTACK(wait);
221 struct request_queue *q;
222 struct bio *bio;
Dmitry Monakhovfbd9b092010-04-28 17:55:06 +0400223 int ret = 0;
Jens Axboe86db1e22008-01-29 14:53:40 +0100224
225 if (bdev->bd_disk == NULL)
226 return -ENXIO;
227
228 q = bdev_get_queue(bdev);
229 if (!q)
230 return -ENXIO;
231
Dave Chinnerf10d9f62010-07-13 17:50:50 +1000232 /*
233 * some block devices may not have their queue correctly set up here
234 * (e.g. loop device without a backing file) and so issuing a flush
235 * here will panic. Ensure there is a request function before issuing
Tejun Heod391a2d2010-09-03 11:56:17 +0200236 * the flush.
Dave Chinnerf10d9f62010-07-13 17:50:50 +1000237 */
238 if (!q->make_request_fn)
239 return -ENXIO;
240
Dmitry Monakhovfbd9b092010-04-28 17:55:06 +0400241 bio = bio_alloc(gfp_mask, 0);
Tejun Heod391a2d2010-09-03 11:56:17 +0200242 bio->bi_end_io = bio_end_flush;
Jens Axboe86db1e22008-01-29 14:53:40 +0100243 bio->bi_bdev = bdev;
Christoph Hellwigdd3932e2010-09-16 20:51:46 +0200244 bio->bi_private = &wait;
Dmitry Monakhovf17e2322010-04-28 17:55:07 +0400245
246 bio_get(bio);
Tejun Heod391a2d2010-09-03 11:56:17 +0200247 submit_bio(WRITE_FLUSH, bio);
Christoph Hellwigdd3932e2010-09-16 20:51:46 +0200248 wait_for_completion(&wait);
249
250 /*
251 * The driver must store the error location in ->bi_sector, if
252 * it supports it. For non-stacked drivers, this should be
253 * copied from blk_rq_pos(rq).
254 */
255 if (error_sector)
256 *error_sector = bio->bi_sector;
Jens Axboe86db1e22008-01-29 14:53:40 +0100257
Tejun Heod391a2d2010-09-03 11:56:17 +0200258 if (!bio_flagged(bio, BIO_UPTODATE))
Jens Axboe86db1e22008-01-29 14:53:40 +0100259 ret = -EIO;
260
261 bio_put(bio);
262 return ret;
263}
Jens Axboe86db1e22008-01-29 14:53:40 +0100264EXPORT_SYMBOL(blkdev_issue_flush);