blob: c48fa670d221342f223d196ab12e17d67452fe89 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Anticipatory & deadline i/o scheduler.
3 *
Jens Axboe0fe23472006-09-04 15:41:16 +02004 * Copyright (C) 2002 Jens Axboe <axboe@kernel.dk>
Nick Pigginf5b3db02005-11-07 00:59:53 -08005 * Nick Piggin <nickpiggin@yahoo.com.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
7 */
8#include <linux/kernel.h>
9#include <linux/fs.h>
10#include <linux/blkdev.h>
11#include <linux/elevator.h>
12#include <linux/bio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/module.h>
14#include <linux/slab.h>
15#include <linux/init.h>
16#include <linux/compiler.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/rbtree.h>
18#include <linux/interrupt.h>
19
Linus Torvalds1da177e2005-04-16 15:20:36 -070020/*
21 * See Documentation/block/as-iosched.txt
22 */
23
24/*
25 * max time before a read is submitted.
26 */
27#define default_read_expire (HZ / 8)
28
29/*
30 * ditto for writes, these limits are not hard, even
31 * if the disk is capable of satisfying them.
32 */
33#define default_write_expire (HZ / 4)
34
35/*
36 * read_batch_expire describes how long we will allow a stream of reads to
37 * persist before looking to see whether it is time to switch over to writes.
38 */
39#define default_read_batch_expire (HZ / 2)
40
41/*
42 * write_batch_expire describes how long we want a stream of writes to run for.
43 * This is not a hard limit, but a target we set for the auto-tuning thingy.
44 * See, the problem is: we can send a lot of writes to disk cache / TCQ in
45 * a short amount of time...
46 */
47#define default_write_batch_expire (HZ / 8)
48
49/*
50 * max time we may wait to anticipate a read (default around 6ms)
51 */
52#define default_antic_expire ((HZ / 150) ? HZ / 150 : 1)
53
54/*
55 * Keep track of up to 20ms thinktimes. We can go as big as we like here,
56 * however huge values tend to interfere and not decay fast enough. A program
57 * might be in a non-io phase of operation. Waiting on user input for example,
58 * or doing a lengthy computation. A small penalty can be justified there, and
59 * will still catch out those processes that constantly have large thinktimes.
60 */
61#define MAX_THINKTIME (HZ/50UL)
62
63/* Bits in as_io_context.state */
64enum as_io_states {
Nick Pigginf5b3db02005-11-07 00:59:53 -080065 AS_TASK_RUNNING=0, /* Process has not exited */
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 AS_TASK_IOSTARTED, /* Process has started some IO */
67 AS_TASK_IORUNNING, /* Process has completed some IO */
68};
69
70enum anticipation_status {
71 ANTIC_OFF=0, /* Not anticipating (normal operation) */
72 ANTIC_WAIT_REQ, /* The last read has not yet completed */
73 ANTIC_WAIT_NEXT, /* Currently anticipating a request vs
74 last read (which has completed) */
75 ANTIC_FINISHED, /* Anticipating but have found a candidate
76 * or timed out */
77};
78
79struct as_data {
80 /*
81 * run time data
82 */
83
84 struct request_queue *q; /* the "owner" queue */
85
86 /*
87 * requests (as_rq s) are present on both sort_list and fifo_list
88 */
89 struct rb_root sort_list[2];
90 struct list_head fifo_list[2];
91
Jens Axboe8a8e6742006-07-18 21:07:29 +020092 struct request *next_rq[2]; /* next in sort order */
Jens Axboe1d6bfbd2009-04-08 11:02:08 +020093 sector_t last_sector[2]; /* last SYNC & ASYNC sectors */
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
95 unsigned long exit_prob; /* probability a task will exit while
96 being waited on */
Nick Pigginf5b3db02005-11-07 00:59:53 -080097 unsigned long exit_no_coop; /* probablility an exited task will
98 not be part of a later cooperating
99 request */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 unsigned long new_ttime_total; /* mean thinktime on new proc */
101 unsigned long new_ttime_mean;
102 u64 new_seek_total; /* mean seek on new proc */
103 sector_t new_seek_mean;
104
105 unsigned long current_batch_expires;
106 unsigned long last_check_fifo[2];
107 int changed_batch; /* 1: waiting for old batch to end */
108 int new_batch; /* 1: waiting on first read complete */
Jens Axboe1d6bfbd2009-04-08 11:02:08 +0200109 int batch_data_dir; /* current batch SYNC / ASYNC */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 int write_batch_count; /* max # of reqs in a write batch */
111 int current_write_count; /* how many requests left this batch */
112 int write_batch_idled; /* has the write batch gone idle? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
114 enum anticipation_status antic_status;
115 unsigned long antic_start; /* jiffies: when it started */
116 struct timer_list antic_timer; /* anticipatory scheduling timer */
117 struct work_struct antic_work; /* Deferred unplugging */
118 struct io_context *io_context; /* Identify the expected process */
119 int ioc_finished; /* IO associated with io_context is finished */
120 int nr_dispatched;
121
122 /*
123 * settings that change how the i/o scheduler behaves
124 */
125 unsigned long fifo_expire[2];
126 unsigned long batch_expire[2];
127 unsigned long antic_expire;
128};
129
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130/*
131 * per-request data.
132 */
133enum arq_state {
134 AS_RQ_NEW=0, /* New - not referenced and not on any lists */
135 AS_RQ_QUEUED, /* In the request queue. It belongs to the
136 scheduler */
137 AS_RQ_DISPATCHED, /* On the dispatch list. It belongs to the
138 driver now */
139 AS_RQ_PRESCHED, /* Debug poisoning for requests being used */
140 AS_RQ_REMOVED,
141 AS_RQ_MERGED,
142 AS_RQ_POSTSCHED, /* when they shouldn't be */
143};
144
Jens Axboe8a8e6742006-07-18 21:07:29 +0200145#define RQ_IOC(rq) ((struct io_context *) (rq)->elevator_private)
146#define RQ_STATE(rq) ((enum arq_state)(rq)->elevator_private2)
147#define RQ_SET_STATE(rq, state) ((rq)->elevator_private2 = (void *) state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Jens Axboee4313dd2006-07-19 05:10:01 +0200149static DEFINE_PER_CPU(unsigned long, ioc_count);
Al Viro334e94d2006-03-18 15:05:53 -0500150static struct completion *ioc_gone;
Jens Axboe863fddc2008-05-29 09:35:22 +0200151static DEFINE_SPINLOCK(ioc_gone_lock);
Al Viro334e94d2006-03-18 15:05:53 -0500152
Jens Axboe8a8e6742006-07-18 21:07:29 +0200153static void as_move_to_dispatch(struct as_data *ad, struct request *rq);
Tejun Heoef9be1d2005-11-11 14:27:09 +0100154static void as_antic_stop(struct as_data *ad);
155
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156/*
157 * IO Context helper functions
158 */
159
160/* Called to deallocate the as_io_context */
161static void free_as_io_context(struct as_io_context *aic)
162{
163 kfree(aic);
Jens Axboee4313dd2006-07-19 05:10:01 +0200164 elv_ioc_count_dec(ioc_count);
Jens Axboe863fddc2008-05-29 09:35:22 +0200165 if (ioc_gone) {
166 /*
167 * AS scheduler is exiting, grab exit lock and check
168 * the pending io context count. If it hits zero,
169 * complete ioc_gone and set it back to NULL.
170 */
171 spin_lock(&ioc_gone_lock);
172 if (ioc_gone && !elv_ioc_count_read(ioc_count)) {
173 complete(ioc_gone);
174 ioc_gone = NULL;
175 }
176 spin_unlock(&ioc_gone_lock);
177 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178}
179
Al Viroe17a9482006-03-18 13:21:20 -0500180static void as_trim(struct io_context *ioc)
181{
Jens Axboe8bdd3f82008-02-01 09:44:28 +0100182 spin_lock_irq(&ioc->lock);
Al Viro334e94d2006-03-18 15:05:53 -0500183 if (ioc->aic)
184 free_as_io_context(ioc->aic);
Al Viroe17a9482006-03-18 13:21:20 -0500185 ioc->aic = NULL;
Jens Axboe8bdd3f82008-02-01 09:44:28 +0100186 spin_unlock_irq(&ioc->lock);
Al Viroe17a9482006-03-18 13:21:20 -0500187}
188
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189/* Called when the task exits */
190static void exit_as_io_context(struct as_io_context *aic)
191{
192 WARN_ON(!test_bit(AS_TASK_RUNNING, &aic->state));
193 clear_bit(AS_TASK_RUNNING, &aic->state);
194}
195
196static struct as_io_context *alloc_as_io_context(void)
197{
198 struct as_io_context *ret;
199
200 ret = kmalloc(sizeof(*ret), GFP_ATOMIC);
201 if (ret) {
202 ret->dtor = free_as_io_context;
203 ret->exit = exit_as_io_context;
204 ret->state = 1 << AS_TASK_RUNNING;
205 atomic_set(&ret->nr_queued, 0);
206 atomic_set(&ret->nr_dispatched, 0);
207 spin_lock_init(&ret->lock);
208 ret->ttime_total = 0;
209 ret->ttime_samples = 0;
210 ret->ttime_mean = 0;
211 ret->seek_total = 0;
212 ret->seek_samples = 0;
213 ret->seek_mean = 0;
Jens Axboee4313dd2006-07-19 05:10:01 +0200214 elv_ioc_count_inc(ioc_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 }
216
217 return ret;
218}
219
220/*
221 * If the current task has no AS IO context then create one and initialise it.
222 * Then take a ref on the task's io context and return it.
223 */
Jens Axboeb5deef92006-07-19 23:39:40 +0200224static struct io_context *as_get_io_context(int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225{
Jens Axboeb5deef92006-07-19 23:39:40 +0200226 struct io_context *ioc = get_io_context(GFP_ATOMIC, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 if (ioc && !ioc->aic) {
228 ioc->aic = alloc_as_io_context();
229 if (!ioc->aic) {
230 put_io_context(ioc);
231 ioc = NULL;
232 }
233 }
234 return ioc;
235}
236
Jens Axboe8a8e6742006-07-18 21:07:29 +0200237static void as_put_io_context(struct request *rq)
Jens Axboeb4878f22005-10-20 16:42:29 +0200238{
239 struct as_io_context *aic;
240
Jens Axboe8a8e6742006-07-18 21:07:29 +0200241 if (unlikely(!RQ_IOC(rq)))
Jens Axboeb4878f22005-10-20 16:42:29 +0200242 return;
243
Jens Axboe8a8e6742006-07-18 21:07:29 +0200244 aic = RQ_IOC(rq)->aic;
Jens Axboeb4878f22005-10-20 16:42:29 +0200245
Jens Axboe8a8e6742006-07-18 21:07:29 +0200246 if (rq_is_sync(rq) && aic) {
Jens Axboe8bdd3f82008-02-01 09:44:28 +0100247 unsigned long flags;
248
249 spin_lock_irqsave(&aic->lock, flags);
Jens Axboeb4878f22005-10-20 16:42:29 +0200250 set_bit(AS_TASK_IORUNNING, &aic->state);
251 aic->last_end_request = jiffies;
Jens Axboe8bdd3f82008-02-01 09:44:28 +0100252 spin_unlock_irqrestore(&aic->lock, flags);
Jens Axboeb4878f22005-10-20 16:42:29 +0200253 }
254
Jens Axboe8a8e6742006-07-18 21:07:29 +0200255 put_io_context(RQ_IOC(rq));
Jens Axboeb4878f22005-10-20 16:42:29 +0200256}
257
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 * rb tree support functions
260 */
Jens Axboe9e2585a2006-07-28 09:26:13 +0200261#define RQ_RB_ROOT(ad, rq) (&(ad)->sort_list[rq_is_sync((rq))])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
Jens Axboe8a8e6742006-07-18 21:07:29 +0200263static void as_add_rq_rb(struct as_data *ad, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264{
Jens Axboee37f3462006-07-18 21:06:01 +0200265 struct request *alias;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
Jens Axboe9e2585a2006-07-28 09:26:13 +0200267 while ((unlikely(alias = elv_rb_add(RQ_RB_ROOT(ad, rq), rq)))) {
Jens Axboe8a8e6742006-07-18 21:07:29 +0200268 as_move_to_dispatch(ad, alias);
Tejun Heoef9be1d2005-11-11 14:27:09 +0100269 as_antic_stop(ad);
270 }
271}
272
Jens Axboe8a8e6742006-07-18 21:07:29 +0200273static inline void as_del_rq_rb(struct as_data *ad, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274{
Jens Axboe9e2585a2006-07-28 09:26:13 +0200275 elv_rb_del(RQ_RB_ROOT(ad, rq), rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276}
277
278/*
279 * IO Scheduler proper
280 */
281
282#define MAXBACK (1024 * 1024) /*
283 * Maximum distance the disk will go backward
284 * for a request.
285 */
286
287#define BACK_PENALTY 2
288
289/*
290 * as_choose_req selects the preferred one of two requests of the same data_dir
291 * ignoring time - eg. timeouts, which is the job of as_dispatch_request
292 */
Jens Axboe8a8e6742006-07-18 21:07:29 +0200293static struct request *
294as_choose_req(struct as_data *ad, struct request *rq1, struct request *rq2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295{
296 int data_dir;
297 sector_t last, s1, s2, d1, d2;
298 int r1_wrap=0, r2_wrap=0; /* requests are behind the disk head */
299 const sector_t maxback = MAXBACK;
300
Jens Axboe8a8e6742006-07-18 21:07:29 +0200301 if (rq1 == NULL || rq1 == rq2)
302 return rq2;
303 if (rq2 == NULL)
304 return rq1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
Jens Axboe8a8e6742006-07-18 21:07:29 +0200306 data_dir = rq_is_sync(rq1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
308 last = ad->last_sector[data_dir];
Jens Axboe8a8e6742006-07-18 21:07:29 +0200309 s1 = rq1->sector;
310 s2 = rq2->sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
Jens Axboe8a8e6742006-07-18 21:07:29 +0200312 BUG_ON(data_dir != rq_is_sync(rq2));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
314 /*
315 * Strict one way elevator _except_ in the case where we allow
316 * short backward seeks which are biased as twice the cost of a
317 * similar forward seek.
318 */
319 if (s1 >= last)
320 d1 = s1 - last;
321 else if (s1+maxback >= last)
322 d1 = (last - s1)*BACK_PENALTY;
323 else {
324 r1_wrap = 1;
325 d1 = 0; /* shut up, gcc */
326 }
327
328 if (s2 >= last)
329 d2 = s2 - last;
330 else if (s2+maxback >= last)
331 d2 = (last - s2)*BACK_PENALTY;
332 else {
333 r2_wrap = 1;
334 d2 = 0;
335 }
336
337 /* Found required data */
338 if (!r1_wrap && r2_wrap)
Jens Axboe8a8e6742006-07-18 21:07:29 +0200339 return rq1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 else if (!r2_wrap && r1_wrap)
Jens Axboe8a8e6742006-07-18 21:07:29 +0200341 return rq2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 else if (r1_wrap && r2_wrap) {
343 /* both behind the head */
344 if (s1 <= s2)
Jens Axboe8a8e6742006-07-18 21:07:29 +0200345 return rq1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 else
Jens Axboe8a8e6742006-07-18 21:07:29 +0200347 return rq2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 }
349
350 /* Both requests in front of the head */
351 if (d1 < d2)
Jens Axboe8a8e6742006-07-18 21:07:29 +0200352 return rq1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 else if (d2 < d1)
Jens Axboe8a8e6742006-07-18 21:07:29 +0200354 return rq2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 else {
356 if (s1 >= s2)
Jens Axboe8a8e6742006-07-18 21:07:29 +0200357 return rq1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 else
Jens Axboe8a8e6742006-07-18 21:07:29 +0200359 return rq2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 }
361}
362
363/*
Jens Axboe8a8e6742006-07-18 21:07:29 +0200364 * as_find_next_rq finds the next request after @prev in elevator order.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 * this with as_choose_req form the basis for how the scheduler chooses
366 * what request to process next. Anticipation works on top of this.
367 */
Jens Axboe8a8e6742006-07-18 21:07:29 +0200368static struct request *
369as_find_next_rq(struct as_data *ad, struct request *last)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 struct rb_node *rbnext = rb_next(&last->rb_node);
372 struct rb_node *rbprev = rb_prev(&last->rb_node);
Jens Axboe8a8e6742006-07-18 21:07:29 +0200373 struct request *next = NULL, *prev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
Jens Axboee37f3462006-07-18 21:06:01 +0200375 BUG_ON(RB_EMPTY_NODE(&last->rb_node));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
377 if (rbprev)
Jens Axboe8a8e6742006-07-18 21:07:29 +0200378 prev = rb_entry_rq(rbprev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
380 if (rbnext)
Jens Axboe8a8e6742006-07-18 21:07:29 +0200381 next = rb_entry_rq(rbnext);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 else {
Jens Axboe9e2585a2006-07-28 09:26:13 +0200383 const int data_dir = rq_is_sync(last);
Jens Axboee37f3462006-07-18 21:06:01 +0200384
385 rbnext = rb_first(&ad->sort_list[data_dir]);
386 if (rbnext && rbnext != &last->rb_node)
Jens Axboe8a8e6742006-07-18 21:07:29 +0200387 next = rb_entry_rq(rbnext);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 }
389
Jens Axboee37f3462006-07-18 21:06:01 +0200390 return as_choose_req(ad, next, prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391}
392
393/*
394 * anticipatory scheduling functions follow
395 */
396
397/*
398 * as_antic_expired tells us when we have anticipated too long.
399 * The funny "absolute difference" math on the elapsed time is to handle
400 * jiffy wraps, and disks which have been idle for 0x80000000 jiffies.
401 */
402static int as_antic_expired(struct as_data *ad)
403{
404 long delta_jif;
405
406 delta_jif = jiffies - ad->antic_start;
407 if (unlikely(delta_jif < 0))
408 delta_jif = -delta_jif;
409 if (delta_jif < ad->antic_expire)
410 return 0;
411
412 return 1;
413}
414
415/*
416 * as_antic_waitnext starts anticipating that a nice request will soon be
417 * submitted. See also as_antic_waitreq
418 */
419static void as_antic_waitnext(struct as_data *ad)
420{
421 unsigned long timeout;
422
423 BUG_ON(ad->antic_status != ANTIC_OFF
424 && ad->antic_status != ANTIC_WAIT_REQ);
425
426 timeout = ad->antic_start + ad->antic_expire;
427
428 mod_timer(&ad->antic_timer, timeout);
429
430 ad->antic_status = ANTIC_WAIT_NEXT;
431}
432
433/*
434 * as_antic_waitreq starts anticipating. We don't start timing the anticipation
435 * until the request that we're anticipating on has finished. This means we
436 * are timing from when the candidate process wakes up hopefully.
437 */
438static void as_antic_waitreq(struct as_data *ad)
439{
440 BUG_ON(ad->antic_status == ANTIC_FINISHED);
441 if (ad->antic_status == ANTIC_OFF) {
442 if (!ad->io_context || ad->ioc_finished)
443 as_antic_waitnext(ad);
444 else
445 ad->antic_status = ANTIC_WAIT_REQ;
446 }
447}
448
449/*
450 * This is called directly by the functions in this file to stop anticipation.
451 * We kill the timer and schedule a call to the request_fn asap.
452 */
453static void as_antic_stop(struct as_data *ad)
454{
455 int status = ad->antic_status;
456
457 if (status == ANTIC_WAIT_REQ || status == ANTIC_WAIT_NEXT) {
458 if (status == ANTIC_WAIT_NEXT)
459 del_timer(&ad->antic_timer);
460 ad->antic_status = ANTIC_FINISHED;
461 /* see as_work_handler */
Jens Axboe18887ad2008-07-28 13:08:45 +0200462 kblockd_schedule_work(ad->q, &ad->antic_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 }
464}
465
466/*
467 * as_antic_timeout is the timer function set by as_antic_waitnext.
468 */
469static void as_antic_timeout(unsigned long data)
470{
471 struct request_queue *q = (struct request_queue *)data;
472 struct as_data *ad = q->elevator->elevator_data;
473 unsigned long flags;
474
475 spin_lock_irqsave(q->queue_lock, flags);
476 if (ad->antic_status == ANTIC_WAIT_REQ
477 || ad->antic_status == ANTIC_WAIT_NEXT) {
Jens Axboe521f3bbd2008-01-21 20:03:12 +0100478 struct as_io_context *aic;
479 spin_lock(&ad->io_context->lock);
480 aic = ad->io_context->aic;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
482 ad->antic_status = ANTIC_FINISHED;
Jens Axboe18887ad2008-07-28 13:08:45 +0200483 kblockd_schedule_work(q, &ad->antic_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
485 if (aic->ttime_samples == 0) {
Nick Pigginf5b3db02005-11-07 00:59:53 -0800486 /* process anticipated on has exited or timed out*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 ad->exit_prob = (7*ad->exit_prob + 256)/8;
488 }
Nick Pigginf5b3db02005-11-07 00:59:53 -0800489 if (!test_bit(AS_TASK_RUNNING, &aic->state)) {
490 /* process not "saved" by a cooperating request */
491 ad->exit_no_coop = (7*ad->exit_no_coop + 256)/8;
492 }
Jens Axboe521f3bbd2008-01-21 20:03:12 +0100493 spin_unlock(&ad->io_context->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 }
495 spin_unlock_irqrestore(q->queue_lock, flags);
496}
497
Nick Pigginf5b3db02005-11-07 00:59:53 -0800498static void as_update_thinktime(struct as_data *ad, struct as_io_context *aic,
499 unsigned long ttime)
500{
501 /* fixed point: 1.0 == 1<<8 */
502 if (aic->ttime_samples == 0) {
503 ad->new_ttime_total = (7*ad->new_ttime_total + 256*ttime) / 8;
504 ad->new_ttime_mean = ad->new_ttime_total / 256;
505
506 ad->exit_prob = (7*ad->exit_prob)/8;
507 }
508 aic->ttime_samples = (7*aic->ttime_samples + 256) / 8;
509 aic->ttime_total = (7*aic->ttime_total + 256*ttime) / 8;
510 aic->ttime_mean = (aic->ttime_total + 128) / aic->ttime_samples;
511}
512
513static void as_update_seekdist(struct as_data *ad, struct as_io_context *aic,
514 sector_t sdist)
515{
516 u64 total;
517
518 if (aic->seek_samples == 0) {
519 ad->new_seek_total = (7*ad->new_seek_total + 256*(u64)sdist)/8;
520 ad->new_seek_mean = ad->new_seek_total / 256;
521 }
522
523 /*
524 * Don't allow the seek distance to get too large from the
525 * odd fragment, pagein, etc
526 */
527 if (aic->seek_samples <= 60) /* second&third seek */
528 sdist = min(sdist, (aic->seek_mean * 4) + 2*1024*1024);
529 else
530 sdist = min(sdist, (aic->seek_mean * 4) + 2*1024*64);
531
532 aic->seek_samples = (7*aic->seek_samples + 256) / 8;
533 aic->seek_total = (7*aic->seek_total + (u64)256*sdist) / 8;
534 total = aic->seek_total + (aic->seek_samples/2);
535 do_div(total, aic->seek_samples);
536 aic->seek_mean = (sector_t)total;
537}
538
539/*
540 * as_update_iohist keeps a decaying histogram of IO thinktimes, and
541 * updates @aic->ttime_mean based on that. It is called when a new
542 * request is queued.
543 */
544static void as_update_iohist(struct as_data *ad, struct as_io_context *aic,
545 struct request *rq)
546{
Jens Axboe9e2585a2006-07-28 09:26:13 +0200547 int data_dir = rq_is_sync(rq);
Nick Pigginf5b3db02005-11-07 00:59:53 -0800548 unsigned long thinktime = 0;
549 sector_t seek_dist;
550
551 if (aic == NULL)
552 return;
553
Jens Axboe1d6bfbd2009-04-08 11:02:08 +0200554 if (data_dir == BLK_RW_SYNC) {
Nick Pigginf5b3db02005-11-07 00:59:53 -0800555 unsigned long in_flight = atomic_read(&aic->nr_queued)
556 + atomic_read(&aic->nr_dispatched);
557 spin_lock(&aic->lock);
558 if (test_bit(AS_TASK_IORUNNING, &aic->state) ||
559 test_bit(AS_TASK_IOSTARTED, &aic->state)) {
560 /* Calculate read -> read thinktime */
561 if (test_bit(AS_TASK_IORUNNING, &aic->state)
562 && in_flight == 0) {
563 thinktime = jiffies - aic->last_end_request;
564 thinktime = min(thinktime, MAX_THINKTIME-1);
565 }
566 as_update_thinktime(ad, aic, thinktime);
567
568 /* Calculate read -> read seek distance */
569 if (aic->last_request_pos < rq->sector)
570 seek_dist = rq->sector - aic->last_request_pos;
571 else
572 seek_dist = aic->last_request_pos - rq->sector;
573 as_update_seekdist(ad, aic, seek_dist);
574 }
575 aic->last_request_pos = rq->sector + rq->nr_sectors;
576 set_bit(AS_TASK_IOSTARTED, &aic->state);
577 spin_unlock(&aic->lock);
578 }
579}
580
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581/*
582 * as_close_req decides if one request is considered "close" to the
583 * previous one issued.
584 */
Nick Pigginf5b3db02005-11-07 00:59:53 -0800585static int as_close_req(struct as_data *ad, struct as_io_context *aic,
Jens Axboe8a8e6742006-07-18 21:07:29 +0200586 struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587{
Nick Pigginc6a632a2007-05-08 00:26:34 -0700588 unsigned long delay; /* jiffies */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 sector_t last = ad->last_sector[ad->batch_data_dir];
Jens Axboe8a8e6742006-07-18 21:07:29 +0200590 sector_t next = rq->sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 sector_t delta; /* acceptable close offset (in sectors) */
Nick Pigginf5b3db02005-11-07 00:59:53 -0800592 sector_t s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
594 if (ad->antic_status == ANTIC_OFF || !ad->ioc_finished)
595 delay = 0;
596 else
Nick Pigginc6a632a2007-05-08 00:26:34 -0700597 delay = jiffies - ad->antic_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
Nick Pigginf5b3db02005-11-07 00:59:53 -0800599 if (delay == 0)
600 delta = 8192;
Nick Pigginc6a632a2007-05-08 00:26:34 -0700601 else if (delay <= (20 * HZ / 1000) && delay <= ad->antic_expire)
Nick Pigginf5b3db02005-11-07 00:59:53 -0800602 delta = 8192 << delay;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 else
604 return 1;
605
Nick Pigginf5b3db02005-11-07 00:59:53 -0800606 if ((last <= next + (delta>>1)) && (next <= last + delta))
607 return 1;
608
609 if (last < next)
610 s = next - last;
611 else
612 s = last - next;
613
614 if (aic->seek_samples == 0) {
615 /*
616 * Process has just started IO. Use past statistics to
617 * gauge success possibility
618 */
619 if (ad->new_seek_mean > s) {
620 /* this request is better than what we're expecting */
621 return 1;
622 }
623
624 } else {
625 if (aic->seek_mean > s) {
626 /* this request is better than what we're expecting */
627 return 1;
628 }
629 }
630
631 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632}
633
634/*
635 * as_can_break_anticipation returns true if we have been anticipating this
636 * request.
637 *
638 * It also returns true if the process against which we are anticipating
639 * submits a write - that's presumably an fsync, O_SYNC write, etc. We want to
640 * dispatch it ASAP, because we know that application will not be submitting
641 * any new reads.
642 *
Nick Pigginf5b3db02005-11-07 00:59:53 -0800643 * If the task which has submitted the request has exited, break anticipation.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 *
645 * If this task has queued some other IO, do not enter enticipation.
646 */
Jens Axboe8a8e6742006-07-18 21:07:29 +0200647static int as_can_break_anticipation(struct as_data *ad, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648{
649 struct io_context *ioc;
650 struct as_io_context *aic;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
652 ioc = ad->io_context;
653 BUG_ON(!ioc);
Jens Axboe521f3bbd2008-01-21 20:03:12 +0100654 spin_lock(&ioc->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
Jens Axboe8a8e6742006-07-18 21:07:29 +0200656 if (rq && ioc == RQ_IOC(rq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 /* request from same process */
Jens Axboe521f3bbd2008-01-21 20:03:12 +0100658 spin_unlock(&ioc->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 return 1;
660 }
661
662 if (ad->ioc_finished && as_antic_expired(ad)) {
663 /*
664 * In this situation status should really be FINISHED,
665 * however the timer hasn't had the chance to run yet.
666 */
Jens Axboe521f3bbd2008-01-21 20:03:12 +0100667 spin_unlock(&ioc->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 return 1;
669 }
670
671 aic = ioc->aic;
Jens Axboe521f3bbd2008-01-21 20:03:12 +0100672 if (!aic) {
673 spin_unlock(&ioc->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 return 0;
Jens Axboe521f3bbd2008-01-21 20:03:12 +0100675 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 if (atomic_read(&aic->nr_queued) > 0) {
678 /* process has more requests queued */
Jens Axboe521f3bbd2008-01-21 20:03:12 +0100679 spin_unlock(&ioc->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 return 1;
681 }
682
683 if (atomic_read(&aic->nr_dispatched) > 0) {
684 /* process has more requests dispatched */
Jens Axboe521f3bbd2008-01-21 20:03:12 +0100685 spin_unlock(&ioc->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 return 1;
687 }
688
Jens Axboe8a8e6742006-07-18 21:07:29 +0200689 if (rq && rq_is_sync(rq) && as_close_req(ad, aic, rq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 /*
691 * Found a close request that is not one of ours.
692 *
Nick Pigginf5b3db02005-11-07 00:59:53 -0800693 * This makes close requests from another process update
694 * our IO history. Is generally useful when there are
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 * two or more cooperating processes working in the same
696 * area.
697 */
Nick Pigginf5b3db02005-11-07 00:59:53 -0800698 if (!test_bit(AS_TASK_RUNNING, &aic->state)) {
699 if (aic->ttime_samples == 0)
700 ad->exit_prob = (7*ad->exit_prob + 256)/8;
701
702 ad->exit_no_coop = (7*ad->exit_no_coop)/8;
703 }
704
Jens Axboe8a8e6742006-07-18 21:07:29 +0200705 as_update_iohist(ad, aic, rq);
Jens Axboe521f3bbd2008-01-21 20:03:12 +0100706 spin_unlock(&ioc->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 return 1;
708 }
709
Nick Pigginf5b3db02005-11-07 00:59:53 -0800710 if (!test_bit(AS_TASK_RUNNING, &aic->state)) {
711 /* process anticipated on has exited */
712 if (aic->ttime_samples == 0)
713 ad->exit_prob = (7*ad->exit_prob + 256)/8;
714
Jens Axboe521f3bbd2008-01-21 20:03:12 +0100715 if (ad->exit_no_coop > 128) {
716 spin_unlock(&ioc->lock);
Nick Pigginf5b3db02005-11-07 00:59:53 -0800717 return 1;
Jens Axboe521f3bbd2008-01-21 20:03:12 +0100718 }
Nick Pigginf5b3db02005-11-07 00:59:53 -0800719 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
721 if (aic->ttime_samples == 0) {
Jens Axboe521f3bbd2008-01-21 20:03:12 +0100722 if (ad->new_ttime_mean > ad->antic_expire) {
723 spin_unlock(&ioc->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 return 1;
Jens Axboe521f3bbd2008-01-21 20:03:12 +0100725 }
726 if (ad->exit_prob * ad->exit_no_coop > 128*256) {
727 spin_unlock(&ioc->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 return 1;
Jens Axboe521f3bbd2008-01-21 20:03:12 +0100729 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 } else if (aic->ttime_mean > ad->antic_expire) {
731 /* the process thinks too much between requests */
Jens Axboe521f3bbd2008-01-21 20:03:12 +0100732 spin_unlock(&ioc->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 return 1;
734 }
Jens Axboe521f3bbd2008-01-21 20:03:12 +0100735 spin_unlock(&ioc->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 return 0;
737}
738
739/*
Jens Axboe8a8e6742006-07-18 21:07:29 +0200740 * as_can_anticipate indicates whether we should either run rq
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 * or keep anticipating a better request.
742 */
Jens Axboe8a8e6742006-07-18 21:07:29 +0200743static int as_can_anticipate(struct as_data *ad, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744{
Jens Axboef7d7b7a2008-09-25 11:37:50 +0200745#if 0 /* disable for now, we need to check tag level as well */
Jens Axboea68bbdd2008-09-24 13:03:33 +0200746 /*
747 * SSD device without seek penalty, disable idling
748 */
Jens Axboef7d7b7a2008-09-25 11:37:50 +0200749 if (blk_queue_nonrot(ad->q)) axman
Jens Axboea68bbdd2008-09-24 13:03:33 +0200750 return 0;
Jens Axboef7d7b7a2008-09-25 11:37:50 +0200751#endif
Jens Axboea68bbdd2008-09-24 13:03:33 +0200752
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 if (!ad->io_context)
754 /*
755 * Last request submitted was a write
756 */
757 return 0;
758
759 if (ad->antic_status == ANTIC_FINISHED)
760 /*
761 * Don't restart if we have just finished. Run the next request
762 */
763 return 0;
764
Jens Axboe8a8e6742006-07-18 21:07:29 +0200765 if (as_can_break_anticipation(ad, rq))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 /*
767 * This request is a good candidate. Don't keep anticipating,
768 * run it.
769 */
770 return 0;
771
772 /*
773 * OK from here, we haven't finished, and don't have a decent request!
774 * Status is either ANTIC_OFF so start waiting,
775 * ANTIC_WAIT_REQ so continue waiting for request to finish
776 * or ANTIC_WAIT_NEXT so continue waiting for an acceptable request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 */
778
779 return 1;
780}
781
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782/*
Jens Axboe8a8e6742006-07-18 21:07:29 +0200783 * as_update_rq must be called whenever a request (rq) is added to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 * the sort_list. This function keeps caches up to date, and checks if the
785 * request might be one we are "anticipating"
786 */
Jens Axboe8a8e6742006-07-18 21:07:29 +0200787static void as_update_rq(struct as_data *ad, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788{
Jens Axboe8a8e6742006-07-18 21:07:29 +0200789 const int data_dir = rq_is_sync(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790
Jens Axboe8a8e6742006-07-18 21:07:29 +0200791 /* keep the next_rq cache up to date */
792 ad->next_rq[data_dir] = as_choose_req(ad, rq, ad->next_rq[data_dir]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793
794 /*
795 * have we been anticipating this request?
796 * or does it come from the same process as the one we are anticipating
797 * for?
798 */
799 if (ad->antic_status == ANTIC_WAIT_REQ
800 || ad->antic_status == ANTIC_WAIT_NEXT) {
Jens Axboe8a8e6742006-07-18 21:07:29 +0200801 if (as_can_break_anticipation(ad, rq))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 as_antic_stop(ad);
803 }
804}
805
806/*
807 * Gathers timings and resizes the write batch automatically
808 */
809static void update_write_batch(struct as_data *ad)
810{
Jens Axboe1d6bfbd2009-04-08 11:02:08 +0200811 unsigned long batch = ad->batch_expire[BLK_RW_ASYNC];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 long write_time;
813
814 write_time = (jiffies - ad->current_batch_expires) + batch;
815 if (write_time < 0)
816 write_time = 0;
817
818 if (write_time > batch && !ad->write_batch_idled) {
819 if (write_time > batch * 3)
820 ad->write_batch_count /= 2;
821 else
822 ad->write_batch_count--;
823 } else if (write_time < batch && ad->current_write_count == 0) {
824 if (batch > write_time * 3)
825 ad->write_batch_count *= 2;
826 else
827 ad->write_batch_count++;
828 }
829
830 if (ad->write_batch_count < 1)
831 ad->write_batch_count = 1;
832}
833
834/*
835 * as_completed_request is to be called when a request has completed and
836 * returned something to the requesting process, be it an error or data.
837 */
Jens Axboe165125e2007-07-24 09:28:11 +0200838static void as_completed_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839{
840 struct as_data *ad = q->elevator->elevator_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
842 WARN_ON(!list_empty(&rq->queuelist));
843
Jens Axboe8a8e6742006-07-18 21:07:29 +0200844 if (RQ_STATE(rq) != AS_RQ_REMOVED) {
Arjan van de Ven12e00362008-07-25 19:45:38 -0700845 WARN(1, "rq->state %d\n", RQ_STATE(rq));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 goto out;
847 }
848
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 if (ad->changed_batch && ad->nr_dispatched == 1) {
Divyesh Shahd585d0b2008-06-16 18:37:08 +0200850 ad->current_batch_expires = jiffies +
851 ad->batch_expire[ad->batch_data_dir];
Jens Axboe18887ad2008-07-28 13:08:45 +0200852 kblockd_schedule_work(q, &ad->antic_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 ad->changed_batch = 0;
854
Jens Axboe1d6bfbd2009-04-08 11:02:08 +0200855 if (ad->batch_data_dir == BLK_RW_SYNC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 ad->new_batch = 1;
857 }
858 WARN_ON(ad->nr_dispatched == 0);
859 ad->nr_dispatched--;
860
861 /*
862 * Start counting the batch from when a request of that direction is
863 * actually serviced. This should help devices with big TCQ windows
864 * and writeback caches
865 */
Jens Axboe9e2585a2006-07-28 09:26:13 +0200866 if (ad->new_batch && ad->batch_data_dir == rq_is_sync(rq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 update_write_batch(ad);
868 ad->current_batch_expires = jiffies +
Jens Axboe1d6bfbd2009-04-08 11:02:08 +0200869 ad->batch_expire[BLK_RW_SYNC];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 ad->new_batch = 0;
871 }
872
Jens Axboe8a8e6742006-07-18 21:07:29 +0200873 if (ad->io_context == RQ_IOC(rq) && ad->io_context) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 ad->antic_start = jiffies;
875 ad->ioc_finished = 1;
876 if (ad->antic_status == ANTIC_WAIT_REQ) {
877 /*
878 * We were waiting on this request, now anticipate
879 * the next one
880 */
881 as_antic_waitnext(ad);
882 }
883 }
884
Jens Axboe8a8e6742006-07-18 21:07:29 +0200885 as_put_io_context(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886out:
Jens Axboe8a8e6742006-07-18 21:07:29 +0200887 RQ_SET_STATE(rq, AS_RQ_POSTSCHED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888}
889
890/*
891 * as_remove_queued_request removes a request from the pre dispatch queue
892 * without updating refcounts. It is expected the caller will drop the
893 * reference unless it replaces the request at somepart of the elevator
894 * (ie. the dispatch queue)
895 */
Jens Axboe165125e2007-07-24 09:28:11 +0200896static void as_remove_queued_request(struct request_queue *q,
897 struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898{
Jens Axboe9e2585a2006-07-28 09:26:13 +0200899 const int data_dir = rq_is_sync(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 struct as_data *ad = q->elevator->elevator_data;
Jens Axboe8a8e6742006-07-18 21:07:29 +0200901 struct io_context *ioc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902
Jens Axboe8a8e6742006-07-18 21:07:29 +0200903 WARN_ON(RQ_STATE(rq) != AS_RQ_QUEUED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904
Jens Axboe8a8e6742006-07-18 21:07:29 +0200905 ioc = RQ_IOC(rq);
906 if (ioc && ioc->aic) {
907 BUG_ON(!atomic_read(&ioc->aic->nr_queued));
908 atomic_dec(&ioc->aic->nr_queued);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 }
910
911 /*
Jens Axboe8a8e6742006-07-18 21:07:29 +0200912 * Update the "next_rq" cache if we are about to remove its
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 * entry
914 */
Jens Axboe8a8e6742006-07-18 21:07:29 +0200915 if (ad->next_rq[data_dir] == rq)
916 ad->next_rq[data_dir] = as_find_next_rq(ad, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917
Jens Axboed4f2f462006-07-13 09:12:14 +0200918 rq_fifo_clear(rq);
Jens Axboe8a8e6742006-07-18 21:07:29 +0200919 as_del_rq_rb(ad, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920}
921
922/*
Aaron Carroll8896f3c2007-12-05 21:06:50 +1100923 * as_fifo_expired returns 0 if there are no expired requests on the fifo,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 * 1 otherwise. It is ratelimited so that we only perform the check once per
925 * `fifo_expire' interval. Otherwise a large number of expired requests
926 * would create a hopeless seekstorm.
927 *
928 * See as_antic_expired comment.
929 */
930static int as_fifo_expired(struct as_data *ad, int adir)
931{
Jens Axboed4f2f462006-07-13 09:12:14 +0200932 struct request *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 long delta_jif;
934
935 delta_jif = jiffies - ad->last_check_fifo[adir];
936 if (unlikely(delta_jif < 0))
937 delta_jif = -delta_jif;
938 if (delta_jif < ad->fifo_expire[adir])
939 return 0;
940
941 ad->last_check_fifo[adir] = jiffies;
942
943 if (list_empty(&ad->fifo_list[adir]))
944 return 0;
945
Jens Axboed4f2f462006-07-13 09:12:14 +0200946 rq = rq_entry_fifo(ad->fifo_list[adir].next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947
Jens Axboed4f2f462006-07-13 09:12:14 +0200948 return time_after(jiffies, rq_fifo_time(rq));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949}
950
951/*
952 * as_batch_expired returns true if the current batch has expired. A batch
953 * is a set of reads or a set of writes.
954 */
955static inline int as_batch_expired(struct as_data *ad)
956{
957 if (ad->changed_batch || ad->new_batch)
958 return 0;
959
Jens Axboe1d6bfbd2009-04-08 11:02:08 +0200960 if (ad->batch_data_dir == BLK_RW_SYNC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 /* TODO! add a check so a complete fifo gets written? */
962 return time_after(jiffies, ad->current_batch_expires);
963
964 return time_after(jiffies, ad->current_batch_expires)
965 || ad->current_write_count == 0;
966}
967
968/*
969 * move an entry to dispatch queue
970 */
Jens Axboe8a8e6742006-07-18 21:07:29 +0200971static void as_move_to_dispatch(struct as_data *ad, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972{
Jens Axboe9e2585a2006-07-28 09:26:13 +0200973 const int data_dir = rq_is_sync(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974
Jens Axboee37f3462006-07-18 21:06:01 +0200975 BUG_ON(RB_EMPTY_NODE(&rq->rb_node));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976
977 as_antic_stop(ad);
978 ad->antic_status = ANTIC_OFF;
979
980 /*
981 * This has to be set in order to be correctly updated by
Jens Axboe8a8e6742006-07-18 21:07:29 +0200982 * as_find_next_rq
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 */
984 ad->last_sector[data_dir] = rq->sector + rq->nr_sectors;
985
Jens Axboe1d6bfbd2009-04-08 11:02:08 +0200986 if (data_dir == BLK_RW_SYNC) {
Jens Axboe8a8e6742006-07-18 21:07:29 +0200987 struct io_context *ioc = RQ_IOC(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 /* In case we have to anticipate after this */
Jens Axboe8a8e6742006-07-18 21:07:29 +0200989 copy_io_context(&ad->io_context, &ioc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 } else {
991 if (ad->io_context) {
992 put_io_context(ad->io_context);
993 ad->io_context = NULL;
994 }
995
996 if (ad->current_write_count != 0)
997 ad->current_write_count--;
998 }
999 ad->ioc_finished = 0;
1000
Jens Axboe8a8e6742006-07-18 21:07:29 +02001001 ad->next_rq[data_dir] = as_find_next_rq(ad, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002
1003 /*
1004 * take it off the sort and fifo list, add to dispatch queue
1005 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 as_remove_queued_request(ad->q, rq);
Jens Axboe8a8e6742006-07-18 21:07:29 +02001007 WARN_ON(RQ_STATE(rq) != AS_RQ_QUEUED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008
Jens Axboeb4878f22005-10-20 16:42:29 +02001009 elv_dispatch_sort(ad->q, rq);
1010
Jens Axboe8a8e6742006-07-18 21:07:29 +02001011 RQ_SET_STATE(rq, AS_RQ_DISPATCHED);
1012 if (RQ_IOC(rq) && RQ_IOC(rq)->aic)
1013 atomic_inc(&RQ_IOC(rq)->aic->nr_dispatched);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 ad->nr_dispatched++;
1015}
1016
1017/*
1018 * as_dispatch_request selects the best request according to
1019 * read/write expire, batch expire, etc, and moves it to the dispatch
1020 * queue. Returns 1 if a request was found, 0 otherwise.
1021 */
Jens Axboe165125e2007-07-24 09:28:11 +02001022static int as_dispatch_request(struct request_queue *q, int force)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023{
Jens Axboeb4878f22005-10-20 16:42:29 +02001024 struct as_data *ad = q->elevator->elevator_data;
Jens Axboe1d6bfbd2009-04-08 11:02:08 +02001025 const int reads = !list_empty(&ad->fifo_list[BLK_RW_SYNC]);
1026 const int writes = !list_empty(&ad->fifo_list[BLK_RW_ASYNC]);
Jens Axboe8a8e6742006-07-18 21:07:29 +02001027 struct request *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028
Jens Axboeb4878f22005-10-20 16:42:29 +02001029 if (unlikely(force)) {
1030 /*
1031 * Forced dispatch, accounting is useless. Reset
1032 * accounting states and dump fifo_lists. Note that
Jens Axboe1d6bfbd2009-04-08 11:02:08 +02001033 * batch_data_dir is reset to BLK_RW_SYNC to avoid
Jens Axboeb4878f22005-10-20 16:42:29 +02001034 * screwing write batch accounting as write batch
1035 * accounting occurs on W->R transition.
1036 */
1037 int dispatched = 0;
1038
Jens Axboe1d6bfbd2009-04-08 11:02:08 +02001039 ad->batch_data_dir = BLK_RW_SYNC;
Jens Axboeb4878f22005-10-20 16:42:29 +02001040 ad->changed_batch = 0;
1041 ad->new_batch = 0;
1042
Jens Axboe1d6bfbd2009-04-08 11:02:08 +02001043 while (ad->next_rq[BLK_RW_SYNC]) {
1044 as_move_to_dispatch(ad, ad->next_rq[BLK_RW_SYNC]);
Jens Axboeb4878f22005-10-20 16:42:29 +02001045 dispatched++;
1046 }
Jens Axboe1d6bfbd2009-04-08 11:02:08 +02001047 ad->last_check_fifo[BLK_RW_SYNC] = jiffies;
Jens Axboeb4878f22005-10-20 16:42:29 +02001048
Jens Axboe1d6bfbd2009-04-08 11:02:08 +02001049 while (ad->next_rq[BLK_RW_ASYNC]) {
1050 as_move_to_dispatch(ad, ad->next_rq[BLK_RW_ASYNC]);
Jens Axboeb4878f22005-10-20 16:42:29 +02001051 dispatched++;
1052 }
Jens Axboe1d6bfbd2009-04-08 11:02:08 +02001053 ad->last_check_fifo[BLK_RW_ASYNC] = jiffies;
Jens Axboeb4878f22005-10-20 16:42:29 +02001054
1055 return dispatched;
1056 }
1057
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 /* Signal that the write batch was uncontended, so we can't time it */
Jens Axboe1d6bfbd2009-04-08 11:02:08 +02001059 if (ad->batch_data_dir == BLK_RW_ASYNC && !reads) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 if (ad->current_write_count == 0 || !writes)
1061 ad->write_batch_idled = 1;
1062 }
1063
1064 if (!(reads || writes)
1065 || ad->antic_status == ANTIC_WAIT_REQ
1066 || ad->antic_status == ANTIC_WAIT_NEXT
1067 || ad->changed_batch)
1068 return 0;
1069
Nick Pigginf5b3db02005-11-07 00:59:53 -08001070 if (!(reads && writes && as_batch_expired(ad))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 /*
1072 * batch is still running or no reads or no writes
1073 */
Jens Axboe8a8e6742006-07-18 21:07:29 +02001074 rq = ad->next_rq[ad->batch_data_dir];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075
Jens Axboe1d6bfbd2009-04-08 11:02:08 +02001076 if (ad->batch_data_dir == BLK_RW_SYNC && ad->antic_expire) {
1077 if (as_fifo_expired(ad, BLK_RW_SYNC))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 goto fifo_expired;
1079
Jens Axboe8a8e6742006-07-18 21:07:29 +02001080 if (as_can_anticipate(ad, rq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 as_antic_waitreq(ad);
1082 return 0;
1083 }
1084 }
1085
Jens Axboe8a8e6742006-07-18 21:07:29 +02001086 if (rq) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 /* we have a "next request" */
1088 if (reads && !writes)
1089 ad->current_batch_expires =
Jens Axboe1d6bfbd2009-04-08 11:02:08 +02001090 jiffies + ad->batch_expire[BLK_RW_SYNC];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 goto dispatch_request;
1092 }
1093 }
1094
1095 /*
1096 * at this point we are not running a batch. select the appropriate
1097 * data direction (read / write)
1098 */
1099
1100 if (reads) {
Jens Axboe1d6bfbd2009-04-08 11:02:08 +02001101 BUG_ON(RB_EMPTY_ROOT(&ad->sort_list[BLK_RW_SYNC]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102
Jens Axboe1d6bfbd2009-04-08 11:02:08 +02001103 if (writes && ad->batch_data_dir == BLK_RW_SYNC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 /*
1105 * Last batch was a read, switch to writes
1106 */
1107 goto dispatch_writes;
1108
Jens Axboe1d6bfbd2009-04-08 11:02:08 +02001109 if (ad->batch_data_dir == BLK_RW_ASYNC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 WARN_ON(ad->new_batch);
1111 ad->changed_batch = 1;
1112 }
Jens Axboe1d6bfbd2009-04-08 11:02:08 +02001113 ad->batch_data_dir = BLK_RW_SYNC;
1114 rq = rq_entry_fifo(ad->fifo_list[BLK_RW_SYNC].next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 ad->last_check_fifo[ad->batch_data_dir] = jiffies;
1116 goto dispatch_request;
1117 }
1118
1119 /*
1120 * the last batch was a read
1121 */
1122
1123 if (writes) {
1124dispatch_writes:
Jens Axboe1d6bfbd2009-04-08 11:02:08 +02001125 BUG_ON(RB_EMPTY_ROOT(&ad->sort_list[BLK_RW_ASYNC]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126
Jens Axboe1d6bfbd2009-04-08 11:02:08 +02001127 if (ad->batch_data_dir == BLK_RW_SYNC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 ad->changed_batch = 1;
1129
1130 /*
1131 * new_batch might be 1 when the queue runs out of
1132 * reads. A subsequent submission of a write might
1133 * cause a change of batch before the read is finished.
1134 */
1135 ad->new_batch = 0;
1136 }
Jens Axboe1d6bfbd2009-04-08 11:02:08 +02001137 ad->batch_data_dir = BLK_RW_ASYNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 ad->current_write_count = ad->write_batch_count;
1139 ad->write_batch_idled = 0;
Jens Axboe1d6bfbd2009-04-08 11:02:08 +02001140 rq = rq_entry_fifo(ad->fifo_list[BLK_RW_ASYNC].next);
1141 ad->last_check_fifo[BLK_RW_ASYNC] = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 goto dispatch_request;
1143 }
1144
1145 BUG();
1146 return 0;
1147
1148dispatch_request:
1149 /*
1150 * If a request has expired, service it.
1151 */
1152
1153 if (as_fifo_expired(ad, ad->batch_data_dir)) {
1154fifo_expired:
Jens Axboe8a8e6742006-07-18 21:07:29 +02001155 rq = rq_entry_fifo(ad->fifo_list[ad->batch_data_dir].next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 }
1157
1158 if (ad->changed_batch) {
1159 WARN_ON(ad->new_batch);
1160
1161 if (ad->nr_dispatched)
1162 return 0;
1163
Jens Axboe1d6bfbd2009-04-08 11:02:08 +02001164 if (ad->batch_data_dir == BLK_RW_ASYNC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 ad->current_batch_expires = jiffies +
Jens Axboe1d6bfbd2009-04-08 11:02:08 +02001166 ad->batch_expire[BLK_RW_ASYNC];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 else
1168 ad->new_batch = 1;
1169
1170 ad->changed_batch = 0;
1171 }
1172
1173 /*
Jens Axboe8a8e6742006-07-18 21:07:29 +02001174 * rq is the selected appropriate request.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 */
Jens Axboe8a8e6742006-07-18 21:07:29 +02001176 as_move_to_dispatch(ad, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177
1178 return 1;
1179}
1180
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181/*
Jens Axboe8a8e6742006-07-18 21:07:29 +02001182 * add rq to rbtree and fifo
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 */
Jens Axboe165125e2007-07-24 09:28:11 +02001184static void as_add_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185{
Jens Axboeb4878f22005-10-20 16:42:29 +02001186 struct as_data *ad = q->elevator->elevator_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 int data_dir;
1188
Jens Axboe8a8e6742006-07-18 21:07:29 +02001189 RQ_SET_STATE(rq, AS_RQ_NEW);
Jens Axboeb4878f22005-10-20 16:42:29 +02001190
Jens Axboe9e2585a2006-07-28 09:26:13 +02001191 data_dir = rq_is_sync(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192
Jens Axboeb5deef92006-07-19 23:39:40 +02001193 rq->elevator_private = as_get_io_context(q->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194
Jens Axboe8a8e6742006-07-18 21:07:29 +02001195 if (RQ_IOC(rq)) {
1196 as_update_iohist(ad, RQ_IOC(rq)->aic, rq);
1197 atomic_inc(&RQ_IOC(rq)->aic->nr_queued);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 }
1199
Jens Axboe8a8e6742006-07-18 21:07:29 +02001200 as_add_rq_rb(ad, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201
Tejun Heoef9be1d2005-11-11 14:27:09 +01001202 /*
Aaron Carroll8896f3c2007-12-05 21:06:50 +11001203 * set expire time and add to fifo list
Tejun Heoef9be1d2005-11-11 14:27:09 +01001204 */
Jens Axboed4f2f462006-07-13 09:12:14 +02001205 rq_set_fifo_time(rq, jiffies + ad->fifo_expire[data_dir]);
1206 list_add_tail(&rq->queuelist, &ad->fifo_list[data_dir]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207
Jens Axboe8a8e6742006-07-18 21:07:29 +02001208 as_update_rq(ad, rq); /* keep state machine up to date */
1209 RQ_SET_STATE(rq, AS_RQ_QUEUED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210}
1211
Jens Axboe165125e2007-07-24 09:28:11 +02001212static void as_activate_request(struct request_queue *q, struct request *rq)
Jens Axboeb4878f22005-10-20 16:42:29 +02001213{
Jens Axboe8a8e6742006-07-18 21:07:29 +02001214 WARN_ON(RQ_STATE(rq) != AS_RQ_DISPATCHED);
1215 RQ_SET_STATE(rq, AS_RQ_REMOVED);
1216 if (RQ_IOC(rq) && RQ_IOC(rq)->aic)
1217 atomic_dec(&RQ_IOC(rq)->aic->nr_dispatched);
Jens Axboeb4878f22005-10-20 16:42:29 +02001218}
1219
Jens Axboe165125e2007-07-24 09:28:11 +02001220static void as_deactivate_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221{
Jens Axboe8a8e6742006-07-18 21:07:29 +02001222 WARN_ON(RQ_STATE(rq) != AS_RQ_REMOVED);
1223 RQ_SET_STATE(rq, AS_RQ_DISPATCHED);
1224 if (RQ_IOC(rq) && RQ_IOC(rq)->aic)
1225 atomic_inc(&RQ_IOC(rq)->aic->nr_dispatched);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226}
1227
1228/*
1229 * as_queue_empty tells us if there are requests left in the device. It may
1230 * not be the case that a driver can get the next request even if the queue
1231 * is not empty - it is used in the block layer to check for plugging and
1232 * merging opportunities
1233 */
Jens Axboe165125e2007-07-24 09:28:11 +02001234static int as_queue_empty(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235{
1236 struct as_data *ad = q->elevator->elevator_data;
1237
Jens Axboe1d6bfbd2009-04-08 11:02:08 +02001238 return list_empty(&ad->fifo_list[BLK_RW_ASYNC])
1239 && list_empty(&ad->fifo_list[BLK_RW_SYNC]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240}
1241
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242static int
Jens Axboe165125e2007-07-24 09:28:11 +02001243as_merge(struct request_queue *q, struct request **req, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244{
1245 struct as_data *ad = q->elevator->elevator_data;
1246 sector_t rb_key = bio->bi_sector + bio_sectors(bio);
1247 struct request *__rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248
1249 /*
1250 * check for front merge
1251 */
Jens Axboee37f3462006-07-18 21:06:01 +02001252 __rq = elv_rb_find(&ad->sort_list[bio_data_dir(bio)], rb_key);
Jens Axboe98170642006-07-28 09:23:08 +02001253 if (__rq && elv_rq_merge_ok(__rq, bio)) {
1254 *req = __rq;
1255 return ELEVATOR_FRONT_MERGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 }
1257
1258 return ELEVATOR_NO_MERGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259}
1260
Jens Axboe165125e2007-07-24 09:28:11 +02001261static void as_merged_request(struct request_queue *q, struct request *req,
1262 int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263{
1264 struct as_data *ad = q->elevator->elevator_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265
1266 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 * if the merge was a front merge, we need to reposition request
1268 */
Jens Axboee37f3462006-07-18 21:06:01 +02001269 if (type == ELEVATOR_FRONT_MERGE) {
Jens Axboe8a8e6742006-07-18 21:07:29 +02001270 as_del_rq_rb(ad, req);
1271 as_add_rq_rb(ad, req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 /*
1273 * Note! At this stage of this and the next function, our next
1274 * request may not be optimal - eg the request may have "grown"
1275 * behind the disk head. We currently don't bother adjusting.
1276 */
1277 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278}
1279
Jens Axboe165125e2007-07-24 09:28:11 +02001280static void as_merged_requests(struct request_queue *q, struct request *req,
Nick Pigginf5b3db02005-11-07 00:59:53 -08001281 struct request *next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 /*
Jens Axboe8a8e6742006-07-18 21:07:29 +02001284 * if next expires before rq, assign its expire time to arq
1285 * and move into next position (next will be deleted) in fifo
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 */
Jens Axboed4f2f462006-07-13 09:12:14 +02001287 if (!list_empty(&req->queuelist) && !list_empty(&next->queuelist)) {
1288 if (time_before(rq_fifo_time(next), rq_fifo_time(req))) {
1289 list_move(&req->queuelist, &next->queuelist);
1290 rq_set_fifo_time(req, rq_fifo_time(next));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 }
1292 }
1293
1294 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 * kill knowledge of next, this one is a goner
1296 */
1297 as_remove_queued_request(q, next);
Jens Axboe8a8e6742006-07-18 21:07:29 +02001298 as_put_io_context(next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299
Jens Axboe8a8e6742006-07-18 21:07:29 +02001300 RQ_SET_STATE(next, AS_RQ_MERGED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301}
1302
1303/*
1304 * This is executed in a "deferred" process context, by kblockd. It calls the
1305 * driver's request_fn so the driver can submit that request.
1306 *
1307 * IMPORTANT! This guy will reenter the elevator, so set up all queue global
1308 * state before calling, and don't rely on any state over calls.
1309 *
1310 * FIXME! dispatch queue is not a queue at all!
1311 */
David Howells65f27f32006-11-22 14:55:48 +00001312static void as_work_handler(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313{
David Howells65f27f32006-11-22 14:55:48 +00001314 struct as_data *ad = container_of(work, struct as_data, antic_work);
1315 struct request_queue *q = ad->q;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 unsigned long flags;
1317
1318 spin_lock_irqsave(q->queue_lock, flags);
Jens Axboedc72ef42006-07-20 14:54:05 +02001319 blk_start_queueing(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 spin_unlock_irqrestore(q->queue_lock, flags);
1321}
1322
Jens Axboe165125e2007-07-24 09:28:11 +02001323static int as_may_queue(struct request_queue *q, int rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324{
1325 int ret = ELV_MQUEUE_MAY;
1326 struct as_data *ad = q->elevator->elevator_data;
1327 struct io_context *ioc;
1328 if (ad->antic_status == ANTIC_WAIT_REQ ||
1329 ad->antic_status == ANTIC_WAIT_NEXT) {
Jens Axboeb5deef92006-07-19 23:39:40 +02001330 ioc = as_get_io_context(q->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 if (ad->io_context == ioc)
1332 ret = ELV_MQUEUE_MUST;
1333 put_io_context(ioc);
1334 }
1335
1336 return ret;
1337}
1338
Jens Axboeb374d182008-10-31 10:05:07 +01001339static void as_exit_queue(struct elevator_queue *e)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340{
1341 struct as_data *ad = e->elevator_data;
1342
1343 del_timer_sync(&ad->antic_timer);
Cheng Renquan64d01dc2008-12-03 12:41:39 +01001344 cancel_work_sync(&ad->antic_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345
Jens Axboe1d6bfbd2009-04-08 11:02:08 +02001346 BUG_ON(!list_empty(&ad->fifo_list[BLK_RW_SYNC]));
1347 BUG_ON(!list_empty(&ad->fifo_list[BLK_RW_ASYNC]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 put_io_context(ad->io_context);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 kfree(ad);
1351}
1352
1353/*
Jens Axboe8a8e6742006-07-18 21:07:29 +02001354 * initialize elevator private data (as_data).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 */
Jens Axboe165125e2007-07-24 09:28:11 +02001356static void *as_init_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357{
1358 struct as_data *ad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359
Christoph Lameter94f60302007-07-17 04:03:29 -07001360 ad = kmalloc_node(sizeof(*ad), GFP_KERNEL | __GFP_ZERO, q->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 if (!ad)
Jens Axboebc1c1162006-06-08 08:49:06 +02001362 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363
1364 ad->q = q; /* Identify what queue the data belongs to */
1365
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 /* anticipatory scheduling helpers */
1367 ad->antic_timer.function = as_antic_timeout;
1368 ad->antic_timer.data = (unsigned long)q;
1369 init_timer(&ad->antic_timer);
David Howells65f27f32006-11-22 14:55:48 +00001370 INIT_WORK(&ad->antic_work, as_work_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371
Jens Axboe1d6bfbd2009-04-08 11:02:08 +02001372 INIT_LIST_HEAD(&ad->fifo_list[BLK_RW_SYNC]);
1373 INIT_LIST_HEAD(&ad->fifo_list[BLK_RW_ASYNC]);
1374 ad->sort_list[BLK_RW_SYNC] = RB_ROOT;
1375 ad->sort_list[BLK_RW_ASYNC] = RB_ROOT;
1376 ad->fifo_expire[BLK_RW_SYNC] = default_read_expire;
1377 ad->fifo_expire[BLK_RW_ASYNC] = default_write_expire;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 ad->antic_expire = default_antic_expire;
Jens Axboe1d6bfbd2009-04-08 11:02:08 +02001379 ad->batch_expire[BLK_RW_SYNC] = default_read_batch_expire;
1380 ad->batch_expire[BLK_RW_ASYNC] = default_write_batch_expire;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381
Jens Axboe1d6bfbd2009-04-08 11:02:08 +02001382 ad->current_batch_expires = jiffies + ad->batch_expire[BLK_RW_SYNC];
1383 ad->write_batch_count = ad->batch_expire[BLK_RW_ASYNC] / 10;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 if (ad->write_batch_count < 2)
1385 ad->write_batch_count = 2;
1386
Jens Axboebc1c1162006-06-08 08:49:06 +02001387 return ad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388}
1389
1390/*
1391 * sysfs parts below
1392 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393
1394static ssize_t
1395as_var_show(unsigned int var, char *page)
1396{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 return sprintf(page, "%d\n", var);
1398}
1399
1400static ssize_t
1401as_var_store(unsigned long *var, const char *page, size_t count)
1402{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 char *p = (char *) page;
1404
Jens Axboec9b3ad62005-07-27 11:43:37 -07001405 *var = simple_strtoul(p, &p, 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 return count;
1407}
1408
Jens Axboeb374d182008-10-31 10:05:07 +01001409static ssize_t est_time_show(struct elevator_queue *e, char *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410{
Al Viro3d1ab402006-03-18 18:35:43 -05001411 struct as_data *ad = e->elevator_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 int pos = 0;
1413
Nick Pigginf5b3db02005-11-07 00:59:53 -08001414 pos += sprintf(page+pos, "%lu %% exit probability\n",
1415 100*ad->exit_prob/256);
1416 pos += sprintf(page+pos, "%lu %% probability of exiting without a "
1417 "cooperating process submitting IO\n",
1418 100*ad->exit_no_coop/256);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 pos += sprintf(page+pos, "%lu ms new thinktime\n", ad->new_ttime_mean);
Nick Pigginf5b3db02005-11-07 00:59:53 -08001420 pos += sprintf(page+pos, "%llu sectors new seek distance\n",
1421 (unsigned long long)ad->new_seek_mean);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422
1423 return pos;
1424}
1425
1426#define SHOW_FUNCTION(__FUNC, __VAR) \
Jens Axboeb374d182008-10-31 10:05:07 +01001427static ssize_t __FUNC(struct elevator_queue *e, char *page) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428{ \
Al Viro3d1ab402006-03-18 18:35:43 -05001429 struct as_data *ad = e->elevator_data; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 return as_var_show(jiffies_to_msecs((__VAR)), (page)); \
1431}
Jens Axboe1d6bfbd2009-04-08 11:02:08 +02001432SHOW_FUNCTION(as_read_expire_show, ad->fifo_expire[BLK_RW_SYNC]);
1433SHOW_FUNCTION(as_write_expire_show, ad->fifo_expire[BLK_RW_ASYNC]);
Al Viroe572ec72006-03-18 22:27:18 -05001434SHOW_FUNCTION(as_antic_expire_show, ad->antic_expire);
Jens Axboe1d6bfbd2009-04-08 11:02:08 +02001435SHOW_FUNCTION(as_read_batch_expire_show, ad->batch_expire[BLK_RW_SYNC]);
1436SHOW_FUNCTION(as_write_batch_expire_show, ad->batch_expire[BLK_RW_ASYNC]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437#undef SHOW_FUNCTION
1438
1439#define STORE_FUNCTION(__FUNC, __PTR, MIN, MAX) \
Jens Axboeb374d182008-10-31 10:05:07 +01001440static ssize_t __FUNC(struct elevator_queue *e, const char *page, size_t count) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441{ \
Al Viro3d1ab402006-03-18 18:35:43 -05001442 struct as_data *ad = e->elevator_data; \
1443 int ret = as_var_store(__PTR, (page), count); \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 if (*(__PTR) < (MIN)) \
1445 *(__PTR) = (MIN); \
1446 else if (*(__PTR) > (MAX)) \
1447 *(__PTR) = (MAX); \
1448 *(__PTR) = msecs_to_jiffies(*(__PTR)); \
1449 return ret; \
1450}
Jens Axboe1d6bfbd2009-04-08 11:02:08 +02001451STORE_FUNCTION(as_read_expire_store, &ad->fifo_expire[BLK_RW_SYNC], 0, INT_MAX);
1452STORE_FUNCTION(as_write_expire_store,
1453 &ad->fifo_expire[BLK_RW_ASYNC], 0, INT_MAX);
Al Viroe572ec72006-03-18 22:27:18 -05001454STORE_FUNCTION(as_antic_expire_store, &ad->antic_expire, 0, INT_MAX);
1455STORE_FUNCTION(as_read_batch_expire_store,
Jens Axboe1d6bfbd2009-04-08 11:02:08 +02001456 &ad->batch_expire[BLK_RW_SYNC], 0, INT_MAX);
Al Viroe572ec72006-03-18 22:27:18 -05001457STORE_FUNCTION(as_write_batch_expire_store,
Jens Axboe1d6bfbd2009-04-08 11:02:08 +02001458 &ad->batch_expire[BLK_RW_ASYNC], 0, INT_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459#undef STORE_FUNCTION
1460
Al Viroe572ec72006-03-18 22:27:18 -05001461#define AS_ATTR(name) \
1462 __ATTR(name, S_IRUGO|S_IWUSR, as_##name##_show, as_##name##_store)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463
Al Viroe572ec72006-03-18 22:27:18 -05001464static struct elv_fs_entry as_attrs[] = {
1465 __ATTR_RO(est_time),
1466 AS_ATTR(read_expire),
1467 AS_ATTR(write_expire),
1468 AS_ATTR(antic_expire),
1469 AS_ATTR(read_batch_expire),
1470 AS_ATTR(write_batch_expire),
1471 __ATTR_NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472};
1473
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474static struct elevator_type iosched_as = {
1475 .ops = {
1476 .elevator_merge_fn = as_merge,
1477 .elevator_merged_fn = as_merged_request,
1478 .elevator_merge_req_fn = as_merged_requests,
Jens Axboeb4878f22005-10-20 16:42:29 +02001479 .elevator_dispatch_fn = as_dispatch_request,
1480 .elevator_add_req_fn = as_add_request,
1481 .elevator_activate_req_fn = as_activate_request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 .elevator_deactivate_req_fn = as_deactivate_request,
1483 .elevator_queue_empty_fn = as_queue_empty,
1484 .elevator_completed_req_fn = as_completed_request,
Jens Axboee37f3462006-07-18 21:06:01 +02001485 .elevator_former_req_fn = elv_rb_former_request,
1486 .elevator_latter_req_fn = elv_rb_latter_request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 .elevator_may_queue_fn = as_may_queue,
1488 .elevator_init_fn = as_init_queue,
1489 .elevator_exit_fn = as_exit_queue,
Al Viroe17a9482006-03-18 13:21:20 -05001490 .trim = as_trim,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 },
1492
Al Viro3d1ab402006-03-18 18:35:43 -05001493 .elevator_attrs = as_attrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 .elevator_name = "anticipatory",
1495 .elevator_owner = THIS_MODULE,
1496};
1497
1498static int __init as_init(void)
1499{
Adrian Bunk2fdd82b2007-12-12 18:51:56 +01001500 elv_register(&iosched_as);
1501
1502 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503}
1504
1505static void __exit as_exit(void)
1506{
Peter Zijlstra6e9a4732006-09-30 23:28:10 -07001507 DECLARE_COMPLETION_ONSTACK(all_gone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 elv_unregister(&iosched_as);
Al Viro334e94d2006-03-18 15:05:53 -05001509 ioc_gone = &all_gone;
OGAWA Hirofumifba82272006-04-18 09:44:06 +02001510 /* ioc_gone's update must be visible before reading ioc_count */
1511 smp_wmb();
Jens Axboee4313dd2006-07-19 05:10:01 +02001512 if (elv_ioc_count_read(ioc_count))
Jens Axboe863fddc2008-05-29 09:35:22 +02001513 wait_for_completion(&all_gone);
Al Viro334e94d2006-03-18 15:05:53 -05001514 synchronize_rcu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515}
1516
1517module_init(as_init);
1518module_exit(as_exit);
1519
1520MODULE_AUTHOR("Nick Piggin");
1521MODULE_LICENSE("GPL");
1522MODULE_DESCRIPTION("anticipatory IO scheduler");