blk-flush.c 5.9 KB
Newer Older
J
Jens Axboe 已提交
1 2 3 4 5 6 7
/*
 * Functions related to barrier IO handling
 */
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/bio.h>
#include <linux/blkdev.h>
8
#include <linux/gfp.h>
J
Jens Axboe 已提交
9 10 11

#include "blk.h"

12
static struct request *queue_next_fseq(struct request_queue *q);
13

14
unsigned blk_flush_cur_seq(struct request_queue *q)
J
Jens Axboe 已提交
15
{
16
	if (!q->flush_seq)
J
Jens Axboe 已提交
17
		return 0;
18
	return 1 << ffz(q->flush_seq);
J
Jens Axboe 已提交
19 20
}

21 22
static struct request *blk_flush_complete_seq(struct request_queue *q,
					      unsigned seq, int error)
J
Jens Axboe 已提交
23
{
24
	struct request *next_rq = NULL;
J
Jens Axboe 已提交
25

26 27
	if (error && !q->flush_err)
		q->flush_err = error;
J
Jens Axboe 已提交
28

29 30
	BUG_ON(q->flush_seq & seq);
	q->flush_seq |= seq;
J
Jens Axboe 已提交
31

32 33 34
	if (blk_flush_cur_seq(q) != QUEUE_FSEQ_DONE) {
		/* not complete yet, queue the next flush sequence */
		next_rq = queue_next_fseq(q);
35
	} else {
36 37 38 39 40 41 42 43
		/* complete this flush request */
		__blk_end_request_all(q->orig_flush_rq, q->flush_err);
		q->orig_flush_rq = NULL;
		q->flush_seq = 0;

		/* dispatch the next flush if there's one */
		if (!list_empty(&q->pending_flushes)) {
			next_rq = list_entry_rq(q->pending_flushes.next);
44 45 46 47
			list_move(&next_rq->queuelist, &q->queue_head);
		}
	}
	return next_rq;
J
Jens Axboe 已提交
48 49 50 51 52
}

static void pre_flush_end_io(struct request *rq, int error)
{
	elv_completed_request(rq->q, rq);
53
	blk_flush_complete_seq(rq->q, QUEUE_FSEQ_PREFLUSH, error);
J
Jens Axboe 已提交
54 55
}

56
static void flush_data_end_io(struct request *rq, int error)
J
Jens Axboe 已提交
57 58
{
	elv_completed_request(rq->q, rq);
59
	blk_flush_complete_seq(rq->q, QUEUE_FSEQ_DATA, error);
J
Jens Axboe 已提交
60 61 62 63 64
}

static void post_flush_end_io(struct request *rq, int error)
{
	elv_completed_request(rq->q, rq);
65
	blk_flush_complete_seq(rq->q, QUEUE_FSEQ_POSTFLUSH, error);
J
Jens Axboe 已提交
66 67
}

68 69
static void queue_flush(struct request_queue *q, struct request *rq,
			rq_end_io_fn *end_io)
J
Jens Axboe 已提交
70
{
71
	blk_rq_init(q, rq);
72
	rq->cmd_type = REQ_TYPE_FS;
73
	rq->cmd_flags = REQ_FLUSH;
74
	rq->rq_disk = q->orig_flush_rq->rq_disk;
J
Jens Axboe 已提交
75 76 77 78 79
	rq->end_io = end_io;

	elv_insert(q, rq, ELEVATOR_INSERT_FRONT);
}

80
static struct request *queue_next_fseq(struct request_queue *q)
J
Jens Axboe 已提交
81
{
82
	struct request *rq = &q->flush_rq;
J
Jens Axboe 已提交
83

84 85
	switch (blk_flush_cur_seq(q)) {
	case QUEUE_FSEQ_PREFLUSH:
86 87
		queue_flush(q, rq, pre_flush_end_io);
		break;
88

89
	case QUEUE_FSEQ_DATA:
90 91
		/* initialize proxy request and queue it */
		blk_rq_init(q, rq);
92
		init_request_from_bio(rq, q->orig_flush_rq->bio);
93
		rq->cmd_flags &= ~REQ_HARDBARRIER;
94 95
		if (q->ordered & QUEUE_ORDERED_DO_FUA)
			rq->cmd_flags |= REQ_FUA;
96
		rq->end_io = flush_data_end_io;
97 98

		elv_insert(q, rq, ELEVATOR_INSERT_FRONT);
99
		break;
J
Jens Axboe 已提交
100

101
	case QUEUE_FSEQ_POSTFLUSH:
102 103
		queue_flush(q, rq, post_flush_end_io);
		break;
J
Jens Axboe 已提交
104

105 106 107
	default:
		BUG();
	}
T
Tejun Heo 已提交
108
	return rq;
J
Jens Axboe 已提交
109 110
}

111
struct request *blk_do_flush(struct request_queue *q, struct request *rq)
J
Jens Axboe 已提交
112
{
113 114 115 116 117
	unsigned skip = 0;

	if (!(rq->cmd_flags & REQ_HARDBARRIER))
		return rq;

118
	if (q->flush_seq) {
119
		/*
120 121 122
		 * Sequenced flush is already in progress and they
		 * can't be processed in parallel.  Queue for later
		 * processing.
123
		 */
124
		list_move_tail(&rq->queuelist, &q->pending_flushes);
125 126 127 128 129 130 131 132 133 134 135
		return NULL;
	}

	if (unlikely(q->next_ordered == QUEUE_ORDERED_NONE)) {
		/*
		 * Queue ordering not supported.  Terminate
		 * with prejudice.
		 */
		blk_dequeue_request(rq);
		__blk_end_request_all(rq, -EOPNOTSUPP);
		return NULL;
J
Jens Axboe 已提交
136 137 138
	}

	/*
139
	 * Start a new flush sequence
J
Jens Axboe 已提交
140
	 */
141
	q->flush_err = 0;
142
	q->ordered = q->next_ordered;
143
	q->flush_seq |= QUEUE_FSEQ_STARTED;
J
Jens Axboe 已提交
144

145 146 147 148 149 150 151 152 153 154
	/*
	 * For an empty barrier, there's no actual BAR request, which
	 * in turn makes POSTFLUSH unnecessary.  Mask them off.
	 */
	if (!blk_rq_sectors(rq))
		q->ordered &= ~(QUEUE_ORDERED_DO_BAR |
				QUEUE_ORDERED_DO_POSTFLUSH);

	/* stash away the original request */
	blk_dequeue_request(rq);
155
	q->orig_flush_rq = rq;
J
Jens Axboe 已提交
156

157
	if (!(q->ordered & QUEUE_ORDERED_DO_PREFLUSH))
158
		skip |= QUEUE_FSEQ_PREFLUSH;
J
Jens Axboe 已提交
159

160
	if (!(q->ordered & QUEUE_ORDERED_DO_BAR))
161
		skip |= QUEUE_FSEQ_DATA;
162 163

	if (!(q->ordered & QUEUE_ORDERED_DO_POSTFLUSH))
164
		skip |= QUEUE_FSEQ_POSTFLUSH;
165 166

	/* complete skipped sequences and return the first sequence */
167
	return blk_flush_complete_seq(q, skip, 0);
J
Jens Axboe 已提交
168 169 170 171
}

static void bio_end_empty_barrier(struct bio *bio, int err)
{
172 173 174
	if (err) {
		if (err == -EOPNOTSUPP)
			set_bit(BIO_EOPNOTSUPP, &bio->bi_flags);
J
Jens Axboe 已提交
175
		clear_bit(BIO_UPTODATE, &bio->bi_flags);
176
	}
177 178 179
	if (bio->bi_private)
		complete(bio->bi_private);
	bio_put(bio);
J
Jens Axboe 已提交
180 181 182 183 184
}

/**
 * blkdev_issue_flush - queue a flush
 * @bdev:	blockdev to issue flush for
185
 * @gfp_mask:	memory allocation flags (for bio_alloc)
J
Jens Axboe 已提交
186
 * @error_sector:	error sector
187
 * @flags:	BLKDEV_IFL_* flags to control behaviour
J
Jens Axboe 已提交
188 189 190 191
 *
 * Description:
 *    Issue a flush for the block device in question. Caller can supply
 *    room for storing the error offset in case of a flush error, if they
192 193
 *    wish to. If WAIT flag is not passed then caller may check only what
 *    request was pushed in some internal queue for later handling.
J
Jens Axboe 已提交
194
 */
195 196
int blkdev_issue_flush(struct block_device *bdev, gfp_t gfp_mask,
		sector_t *error_sector, unsigned long flags)
J
Jens Axboe 已提交
197 198 199 200
{
	DECLARE_COMPLETION_ONSTACK(wait);
	struct request_queue *q;
	struct bio *bio;
201
	int ret = 0;
J
Jens Axboe 已提交
202 203 204 205 206 207 208 209

	if (bdev->bd_disk == NULL)
		return -ENXIO;

	q = bdev_get_queue(bdev);
	if (!q)
		return -ENXIO;

210 211 212 213 214 215 216 217 218
	/*
	 * 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 barrier.
	 */
	if (!q->make_request_fn)
		return -ENXIO;

219
	bio = bio_alloc(gfp_mask, 0);
J
Jens Axboe 已提交
220 221
	bio->bi_end_io = bio_end_empty_barrier;
	bio->bi_bdev = bdev;
222 223
	if (test_bit(BLKDEV_WAIT, &flags))
		bio->bi_private = &wait;
J
Jens Axboe 已提交
224

225 226 227 228 229 230 231 232 233 234 235 236
	bio_get(bio);
	submit_bio(WRITE_BARRIER, bio);
	if (test_bit(BLKDEV_WAIT, &flags)) {
		wait_for_completion(&wait);
		/*
		 * The driver must store the error location in ->bi_sector, if
		 * it supports it. For non-stacked drivers, this should be
		 * copied from blk_rq_pos(rq).
		 */
		if (error_sector)
			*error_sector = bio->bi_sector;
	}
J
Jens Axboe 已提交
237

238 239 240
	if (bio_flagged(bio, BIO_EOPNOTSUPP))
		ret = -EOPNOTSUPP;
	else if (!bio_flagged(bio, BIO_UPTODATE))
J
Jens Axboe 已提交
241 242 243 244 245 246
		ret = -EIO;

	bio_put(bio);
	return ret;
}
EXPORT_SYMBOL(blkdev_issue_flush);