blob: 452c552e9ead6466ac420fe55fec4e09ab85fe14 [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
59static void pre_flush_end_io(struct request *rq, int error)
60{
61 elv_completed_request(rq->q, rq);
Tejun Heodd4c1332010-09-03 11:56:16 +020062 blk_flush_complete_seq(rq->q, QUEUE_FSEQ_PREFLUSH, error);
Jens Axboe86db1e22008-01-29 14:53:40 +010063}
64
Tejun Heodd4c1332010-09-03 11:56:16 +020065static void flush_data_end_io(struct request *rq, int error)
Jens Axboe86db1e22008-01-29 14:53:40 +010066{
67 elv_completed_request(rq->q, rq);
Tejun Heodd4c1332010-09-03 11:56:16 +020068 blk_flush_complete_seq(rq->q, QUEUE_FSEQ_DATA, error);
Jens Axboe86db1e22008-01-29 14:53:40 +010069}
70
71static void post_flush_end_io(struct request *rq, int error)
72{
73 elv_completed_request(rq->q, rq);
Tejun Heodd4c1332010-09-03 11:56:16 +020074 blk_flush_complete_seq(rq->q, QUEUE_FSEQ_POSTFLUSH, error);
Jens Axboe86db1e22008-01-29 14:53:40 +010075}
76
Tejun Heo28e7d182010-09-03 11:56:16 +020077static void queue_flush(struct request_queue *q, struct request *rq,
78 rq_end_io_fn *end_io)
Jens Axboe86db1e22008-01-29 14:53:40 +010079{
FUJITA Tomonori2a4aa302008-04-29 09:54:36 +020080 blk_rq_init(q, rq);
FUJITA Tomonori28e18d02010-07-09 09:38:24 +090081 rq->cmd_type = REQ_TYPE_FS;
Tejun Heo28e7d182010-09-03 11:56:16 +020082 rq->cmd_flags = REQ_FLUSH;
Tejun Heodd4c1332010-09-03 11:56:16 +020083 rq->rq_disk = q->orig_flush_rq->rq_disk;
Jens Axboe86db1e22008-01-29 14:53:40 +010084 rq->end_io = end_io;
Jens Axboe86db1e22008-01-29 14:53:40 +010085
86 elv_insert(q, rq, ELEVATOR_INSERT_FRONT);
87}
88
Tejun Heodd4c1332010-09-03 11:56:16 +020089static struct request *queue_next_fseq(struct request_queue *q)
Tejun Heo28e7d182010-09-03 11:56:16 +020090{
Tejun Heo4fed9472010-09-03 11:56:17 +020091 struct request *orig_rq = q->orig_flush_rq;
Tejun Heodd4c1332010-09-03 11:56:16 +020092 struct request *rq = &q->flush_rq;
Tejun Heo28e7d182010-09-03 11:56:16 +020093
Tejun Heodd4c1332010-09-03 11:56:16 +020094 switch (blk_flush_cur_seq(q)) {
95 case QUEUE_FSEQ_PREFLUSH:
Tejun Heo28e7d182010-09-03 11:56:16 +020096 queue_flush(q, rq, pre_flush_end_io);
97 break;
98
Tejun Heodd4c1332010-09-03 11:56:16 +020099 case QUEUE_FSEQ_DATA:
Tejun Heo4fed9472010-09-03 11:56:17 +0200100 /* initialize proxy request, inherit FLUSH/FUA and queue it */
Tejun Heo28e7d182010-09-03 11:56:16 +0200101 blk_rq_init(q, rq);
Tejun Heo4fed9472010-09-03 11:56:17 +0200102 init_request_from_bio(rq, orig_rq->bio);
103 rq->cmd_flags &= ~(REQ_FLUSH | REQ_FUA);
104 rq->cmd_flags |= orig_rq->cmd_flags & (REQ_FLUSH | REQ_FUA);
Tejun Heodd4c1332010-09-03 11:56:16 +0200105 rq->end_io = flush_data_end_io;
Tejun Heo28e7d182010-09-03 11:56:16 +0200106
107 elv_insert(q, rq, ELEVATOR_INSERT_FRONT);
108 break;
109
Tejun Heodd4c1332010-09-03 11:56:16 +0200110 case QUEUE_FSEQ_POSTFLUSH:
Tejun Heo28e7d182010-09-03 11:56:16 +0200111 queue_flush(q, rq, post_flush_end_io);
112 break;
113
114 default:
115 BUG();
116 }
117 return rq;
118}
119
Tejun Heodd4c1332010-09-03 11:56:16 +0200120struct request *blk_do_flush(struct request_queue *q, struct request *rq)
Jens Axboe86db1e22008-01-29 14:53:40 +0100121{
Tejun Heo4fed9472010-09-03 11:56:17 +0200122 unsigned int fflags = q->flush_flags; /* may change, cache it */
123 bool has_flush = fflags & REQ_FLUSH, has_fua = fflags & REQ_FUA;
124 bool do_preflush = has_flush && (rq->cmd_flags & REQ_FLUSH);
125 bool do_postflush = has_flush && !has_fua && (rq->cmd_flags & REQ_FUA);
Tejun Heo8f11b3e2008-11-28 13:32:05 +0900126 unsigned skip = 0;
127
Tejun Heo4fed9472010-09-03 11:56:17 +0200128 /*
129 * Special case. If there's data but flush is not necessary,
130 * the request can be issued directly.
131 *
132 * Flush w/o data should be able to be issued directly too but
133 * currently some drivers assume that rq->bio contains
134 * non-zero data if it isn't NULL and empty FLUSH requests
135 * getting here usually have bio's without data.
136 */
137 if (blk_rq_sectors(rq) && !do_preflush && !do_postflush) {
138 rq->cmd_flags &= ~REQ_FLUSH;
139 if (!has_fua)
140 rq->cmd_flags &= ~REQ_FUA;
Tejun Heo28e7d182010-09-03 11:56:16 +0200141 return rq;
Tejun Heo28e7d182010-09-03 11:56:16 +0200142 }
143
Tejun Heo4fed9472010-09-03 11:56:17 +0200144 /*
145 * Sequenced flushes can't be processed in parallel. If
146 * another one is already in progress, queue for later
147 * processing.
148 */
149 if (q->flush_seq) {
150 list_move_tail(&rq->queuelist, &q->pending_flushes);
Tejun Heo28e7d182010-09-03 11:56:16 +0200151 return NULL;
152 }
153
154 /*
Tejun Heodd4c1332010-09-03 11:56:16 +0200155 * Start a new flush sequence
Tejun Heo28e7d182010-09-03 11:56:16 +0200156 */
Tejun Heodd4c1332010-09-03 11:56:16 +0200157 q->flush_err = 0;
Tejun Heodd4c1332010-09-03 11:56:16 +0200158 q->flush_seq |= QUEUE_FSEQ_STARTED;
Jens Axboe86db1e22008-01-29 14:53:40 +0100159
Tejun Heo4fed9472010-09-03 11:56:17 +0200160 /* adjust FLUSH/FUA of the original request and stash it away */
161 rq->cmd_flags &= ~REQ_FLUSH;
162 if (!has_fua)
163 rq->cmd_flags &= ~REQ_FUA;
Tejun Heo9934c8c2009-05-08 11:54:16 +0900164 blk_dequeue_request(rq);
Tejun Heodd4c1332010-09-03 11:56:16 +0200165 q->orig_flush_rq = rq;
Jens Axboe86db1e22008-01-29 14:53:40 +0100166
Tejun Heo4fed9472010-09-03 11:56:17 +0200167 /* skip unneded sequences and return the first one */
168 if (!do_preflush)
Tejun Heodd4c1332010-09-03 11:56:16 +0200169 skip |= QUEUE_FSEQ_PREFLUSH;
Tejun Heo4fed9472010-09-03 11:56:17 +0200170 if (!blk_rq_sectors(rq))
Tejun Heodd4c1332010-09-03 11:56:16 +0200171 skip |= QUEUE_FSEQ_DATA;
Tejun Heo4fed9472010-09-03 11:56:17 +0200172 if (!do_postflush)
Tejun Heodd4c1332010-09-03 11:56:16 +0200173 skip |= QUEUE_FSEQ_POSTFLUSH;
Tejun Heodd4c1332010-09-03 11:56:16 +0200174 return blk_flush_complete_seq(q, skip, 0);
Jens Axboe86db1e22008-01-29 14:53:40 +0100175}
176
177static void bio_end_empty_barrier(struct bio *bio, int err)
178{
Jens Axboecc66b452008-03-04 11:47:46 +0100179 if (err) {
180 if (err == -EOPNOTSUPP)
181 set_bit(BIO_EOPNOTSUPP, &bio->bi_flags);
Jens Axboe86db1e22008-01-29 14:53:40 +0100182 clear_bit(BIO_UPTODATE, &bio->bi_flags);
Jens Axboecc66b452008-03-04 11:47:46 +0100183 }
Dmitry Monakhovf17e2322010-04-28 17:55:07 +0400184 if (bio->bi_private)
185 complete(bio->bi_private);
186 bio_put(bio);
Jens Axboe86db1e22008-01-29 14:53:40 +0100187}
188
189/**
190 * blkdev_issue_flush - queue a flush
191 * @bdev: blockdev to issue flush for
Dmitry Monakhovfbd9b092010-04-28 17:55:06 +0400192 * @gfp_mask: memory allocation flags (for bio_alloc)
Jens Axboe86db1e22008-01-29 14:53:40 +0100193 * @error_sector: error sector
Dmitry Monakhovfbd9b092010-04-28 17:55:06 +0400194 * @flags: BLKDEV_IFL_* flags to control behaviour
Jens Axboe86db1e22008-01-29 14:53:40 +0100195 *
196 * Description:
197 * Issue a flush for the block device in question. Caller can supply
198 * room for storing the error offset in case of a flush error, if they
Dmitry Monakhovf17e2322010-04-28 17:55:07 +0400199 * wish to. If WAIT flag is not passed then caller may check only what
200 * request was pushed in some internal queue for later handling.
Jens Axboe86db1e22008-01-29 14:53:40 +0100201 */
Dmitry Monakhovfbd9b092010-04-28 17:55:06 +0400202int blkdev_issue_flush(struct block_device *bdev, gfp_t gfp_mask,
203 sector_t *error_sector, unsigned long flags)
Jens Axboe86db1e22008-01-29 14:53:40 +0100204{
205 DECLARE_COMPLETION_ONSTACK(wait);
206 struct request_queue *q;
207 struct bio *bio;
Dmitry Monakhovfbd9b092010-04-28 17:55:06 +0400208 int ret = 0;
Jens Axboe86db1e22008-01-29 14:53:40 +0100209
210 if (bdev->bd_disk == NULL)
211 return -ENXIO;
212
213 q = bdev_get_queue(bdev);
214 if (!q)
215 return -ENXIO;
216
Dave Chinnerf10d9f62010-07-13 17:50:50 +1000217 /*
218 * some block devices may not have their queue correctly set up here
219 * (e.g. loop device without a backing file) and so issuing a flush
220 * here will panic. Ensure there is a request function before issuing
221 * the barrier.
222 */
223 if (!q->make_request_fn)
224 return -ENXIO;
225
Dmitry Monakhovfbd9b092010-04-28 17:55:06 +0400226 bio = bio_alloc(gfp_mask, 0);
Jens Axboe86db1e22008-01-29 14:53:40 +0100227 bio->bi_end_io = bio_end_empty_barrier;
Jens Axboe86db1e22008-01-29 14:53:40 +0100228 bio->bi_bdev = bdev;
Dmitry Monakhovf17e2322010-04-28 17:55:07 +0400229 if (test_bit(BLKDEV_WAIT, &flags))
230 bio->bi_private = &wait;
231
232 bio_get(bio);
OGAWA Hirofumi2ebca852008-08-11 17:07:08 +0100233 submit_bio(WRITE_BARRIER, bio);
Dmitry Monakhovf17e2322010-04-28 17:55:07 +0400234 if (test_bit(BLKDEV_WAIT, &flags)) {
235 wait_for_completion(&wait);
236 /*
237 * The driver must store the error location in ->bi_sector, if
238 * it supports it. For non-stacked drivers, this should be
239 * copied from blk_rq_pos(rq).
240 */
241 if (error_sector)
242 *error_sector = bio->bi_sector;
243 }
Jens Axboe86db1e22008-01-29 14:53:40 +0100244
Jens Axboecc66b452008-03-04 11:47:46 +0100245 if (bio_flagged(bio, BIO_EOPNOTSUPP))
246 ret = -EOPNOTSUPP;
247 else if (!bio_flagged(bio, BIO_UPTODATE))
Jens Axboe86db1e22008-01-29 14:53:40 +0100248 ret = -EIO;
249
250 bio_put(bio);
251 return ret;
252}
Jens Axboe86db1e22008-01-29 14:53:40 +0100253EXPORT_SYMBOL(blkdev_issue_flush);