blob: 96a61e029ce5e7858d2e024c08eff817b5a998d6 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Block device elevator/IO-scheduler.
3 *
4 * Copyright (C) 2000 Andrea Arcangeli <andrea@suse.de> SuSE
5 *
6 * 30042000 Jens Axboe <axboe@suse.de> :
7 *
8 * Split the elevator a bit so that it is possible to choose a different
9 * one or even write a new "plug in". There are three pieces:
10 * - elevator_fn, inserts a new request in the queue list
11 * - elevator_merge_fn, decides whether a new buffer can be merged with
12 * an existing request
13 * - elevator_dequeue_fn, called when a request is taken off the active list
14 *
15 * 20082000 Dave Jones <davej@suse.de> :
16 * Removed tests for max-bomb-segments, which was breaking elvtune
17 * when run without -bN
18 *
19 * Jens:
20 * - Rework again to work with bio instead of buffer_heads
21 * - loose bi_dev comparisons, partition handling is right now
22 * - completely modularize elevator setup and teardown
23 *
24 */
25#include <linux/kernel.h>
26#include <linux/fs.h>
27#include <linux/blkdev.h>
28#include <linux/elevator.h>
29#include <linux/bio.h>
30#include <linux/config.h>
31#include <linux/module.h>
32#include <linux/slab.h>
33#include <linux/init.h>
34#include <linux/compiler.h>
Tejun Heocb98fc82005-10-28 08:29:39 +020035#include <linux/delay.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
37#include <asm/uaccess.h>
38
39static DEFINE_SPINLOCK(elv_list_lock);
40static LIST_HEAD(elv_list);
41
42/*
43 * can we safely merge with this request?
44 */
45inline int elv_rq_merge_ok(struct request *rq, struct bio *bio)
46{
47 if (!rq_mergeable(rq))
48 return 0;
49
50 /*
51 * different data direction or already started, don't merge
52 */
53 if (bio_data_dir(bio) != rq_data_dir(rq))
54 return 0;
55
56 /*
57 * same device and no special stuff set, merge is ok
58 */
59 if (rq->rq_disk == bio->bi_bdev->bd_disk &&
60 !rq->waiting && !rq->special)
61 return 1;
62
63 return 0;
64}
65EXPORT_SYMBOL(elv_rq_merge_ok);
66
Coywolf Qi Hunt769db452005-12-28 10:55:49 +010067static inline int elv_try_merge(struct request *__rq, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -070068{
69 int ret = ELEVATOR_NO_MERGE;
70
71 /*
72 * we can merge and sequence is ok, check if it's possible
73 */
74 if (elv_rq_merge_ok(__rq, bio)) {
75 if (__rq->sector + __rq->nr_sectors == bio->bi_sector)
76 ret = ELEVATOR_BACK_MERGE;
77 else if (__rq->sector - bio_sectors(bio) == bio->bi_sector)
78 ret = ELEVATOR_FRONT_MERGE;
79 }
80
81 return ret;
82}
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
Linus Torvalds1da177e2005-04-16 15:20:36 -070084static struct elevator_type *elevator_find(const char *name)
85{
86 struct elevator_type *e = NULL;
87 struct list_head *entry;
88
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 list_for_each(entry, &elv_list) {
90 struct elevator_type *__e;
91
92 __e = list_entry(entry, struct elevator_type, list);
93
94 if (!strcmp(__e->elevator_name, name)) {
95 e = __e;
96 break;
97 }
98 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
100 return e;
101}
102
103static void elevator_put(struct elevator_type *e)
104{
105 module_put(e->elevator_owner);
106}
107
108static struct elevator_type *elevator_get(const char *name)
109{
Tejun Heo2824bc932005-10-20 10:56:41 +0200110 struct elevator_type *e;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
Tejun Heo2824bc932005-10-20 10:56:41 +0200112 spin_lock_irq(&elv_list_lock);
113
114 e = elevator_find(name);
115 if (e && !try_module_get(e->elevator_owner))
116 e = NULL;
117
118 spin_unlock_irq(&elv_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
120 return e;
121}
122
123static int elevator_attach(request_queue_t *q, struct elevator_type *e,
124 struct elevator_queue *eq)
125{
126 int ret = 0;
127
128 memset(eq, 0, sizeof(*eq));
129 eq->ops = &e->ops;
130 eq->elevator_type = e;
131
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 q->elevator = eq;
133
134 if (eq->ops->elevator_init_fn)
135 ret = eq->ops->elevator_init_fn(q, eq);
136
137 return ret;
138}
139
140static char chosen_elevator[16];
141
Nate Diller5f003972006-01-24 10:07:58 +0100142static int __init elevator_setup(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143{
Chuck Ebbert752a3b72006-01-16 09:47:37 +0100144 /*
145 * Be backwards-compatible with previous kernels, so users
146 * won't get the wrong elevator.
147 */
Nate Diller5f003972006-01-24 10:07:58 +0100148 if (!strcmp(str, "as"))
Chuck Ebbert752a3b72006-01-16 09:47:37 +0100149 strcpy(chosen_elevator, "anticipatory");
Zachary Amsdencff3ba22005-11-09 13:24:20 +0100150 else
Nate Diller5f003972006-01-24 10:07:58 +0100151 strncpy(chosen_elevator, str, sizeof(chosen_elevator) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 return 0;
153}
154
155__setup("elevator=", elevator_setup);
156
157int elevator_init(request_queue_t *q, char *name)
158{
159 struct elevator_type *e = NULL;
160 struct elevator_queue *eq;
161 int ret = 0;
162
Tejun Heocb98fc82005-10-28 08:29:39 +0200163 INIT_LIST_HEAD(&q->queue_head);
164 q->last_merge = NULL;
165 q->end_sector = 0;
166 q->boundary_rq = NULL;
Tejun Heocb98fc82005-10-28 08:29:39 +0200167
Nate Diller5f003972006-01-24 10:07:58 +0100168 if (name && !(e = elevator_get(name)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 return -EINVAL;
170
Nate Diller248d5ca2006-01-24 10:09:14 +0100171 if (!e && *chosen_elevator && !(e = elevator_get(chosen_elevator)))
172 printk("I/O scheduler %s not found\n", chosen_elevator);
173
174 if (!e && !(e = elevator_get(CONFIG_DEFAULT_IOSCHED))) {
175 printk("Default I/O scheduler not found, using no-op\n");
176 e = elevator_get("noop");
Nate Diller5f003972006-01-24 10:07:58 +0100177 }
178
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 eq = kmalloc(sizeof(struct elevator_queue), GFP_KERNEL);
180 if (!eq) {
Zachary Amsdenb8ea2cb2005-11-09 13:23:01 +0100181 elevator_put(e);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 return -ENOMEM;
183 }
184
185 ret = elevator_attach(q, e, eq);
186 if (ret) {
187 kfree(eq);
Zachary Amsdenb8ea2cb2005-11-09 13:23:01 +0100188 elevator_put(e);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 }
190
191 return ret;
192}
193
194void elevator_exit(elevator_t *e)
195{
196 if (e->ops->elevator_exit_fn)
197 e->ops->elevator_exit_fn(e);
198
199 elevator_put(e->elevator_type);
200 e->elevator_type = NULL;
201 kfree(e);
202}
203
Tejun Heo8922e162005-10-20 16:23:44 +0200204/*
205 * Insert rq into dispatch queue of q. Queue lock must be held on
206 * entry. If sort != 0, rq is sort-inserted; otherwise, rq will be
207 * appended to the dispatch queue. To be used by specific elevators.
208 */
Jens Axboe1b47f532005-10-20 16:37:00 +0200209void elv_dispatch_sort(request_queue_t *q, struct request *rq)
Tejun Heo8922e162005-10-20 16:23:44 +0200210{
211 sector_t boundary;
Tejun Heo8922e162005-10-20 16:23:44 +0200212 struct list_head *entry;
213
Tejun Heo06b86242005-10-20 16:46:23 +0200214 if (q->last_merge == rq)
215 q->last_merge = NULL;
Tejun Heo15853af2005-11-10 08:52:05 +0100216 q->nr_sorted--;
Tejun Heo06b86242005-10-20 16:46:23 +0200217
Jens Axboe1b47f532005-10-20 16:37:00 +0200218 boundary = q->end_sector;
Tejun Heocb198332005-10-24 08:35:58 +0200219
Tejun Heo8922e162005-10-20 16:23:44 +0200220 list_for_each_prev(entry, &q->queue_head) {
221 struct request *pos = list_entry_rq(entry);
222
223 if (pos->flags & (REQ_SOFTBARRIER|REQ_HARDBARRIER|REQ_STARTED))
224 break;
225 if (rq->sector >= boundary) {
226 if (pos->sector < boundary)
227 continue;
228 } else {
229 if (pos->sector >= boundary)
230 break;
231 }
232 if (rq->sector >= pos->sector)
233 break;
234 }
235
236 list_add(&rq->queuelist, entry);
237}
238
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239int elv_merge(request_queue_t *q, struct request **req, struct bio *bio)
240{
241 elevator_t *e = q->elevator;
Tejun Heo06b86242005-10-20 16:46:23 +0200242 int ret;
243
244 if (q->last_merge) {
245 ret = elv_try_merge(q->last_merge, bio);
246 if (ret != ELEVATOR_NO_MERGE) {
247 *req = q->last_merge;
248 return ret;
249 }
250 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
252 if (e->ops->elevator_merge_fn)
253 return e->ops->elevator_merge_fn(q, req, bio);
254
255 return ELEVATOR_NO_MERGE;
256}
257
258void elv_merged_request(request_queue_t *q, struct request *rq)
259{
260 elevator_t *e = q->elevator;
261
262 if (e->ops->elevator_merged_fn)
263 e->ops->elevator_merged_fn(q, rq);
Tejun Heo06b86242005-10-20 16:46:23 +0200264
265 q->last_merge = rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266}
267
268void elv_merge_requests(request_queue_t *q, struct request *rq,
269 struct request *next)
270{
271 elevator_t *e = q->elevator;
272
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 if (e->ops->elevator_merge_req_fn)
274 e->ops->elevator_merge_req_fn(q, rq, next);
Tejun Heo15853af2005-11-10 08:52:05 +0100275 q->nr_sorted--;
Tejun Heo06b86242005-10-20 16:46:23 +0200276
277 q->last_merge = rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278}
279
Tejun Heo8922e162005-10-20 16:23:44 +0200280void elv_requeue_request(request_queue_t *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281{
282 elevator_t *e = q->elevator;
283
284 /*
285 * it already went through dequeue, we need to decrement the
286 * in_flight count again
287 */
Tejun Heo8922e162005-10-20 16:23:44 +0200288 if (blk_account_rq(rq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 q->in_flight--;
Tejun Heo8922e162005-10-20 16:23:44 +0200290 if (blk_sorted_rq(rq) && e->ops->elevator_deactivate_req_fn)
291 e->ops->elevator_deactivate_req_fn(q, rq);
292 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
294 rq->flags &= ~REQ_STARTED;
295
Tejun Heo797e7db2006-01-06 09:51:03 +0100296 __elv_add_request(q, rq, ELEVATOR_INSERT_REQUEUE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297}
298
Tejun Heo15853af2005-11-10 08:52:05 +0100299static void elv_drain_elevator(request_queue_t *q)
300{
301 static int printed;
302 while (q->elevator->ops->elevator_dispatch_fn(q, 1))
303 ;
304 if (q->nr_sorted == 0)
305 return;
306 if (printed++ < 10) {
307 printk(KERN_ERR "%s: forced dispatching is broken "
308 "(nr_sorted=%u), please report this\n",
309 q->elevator->elevator_type->elevator_name, q->nr_sorted);
310 }
311}
312
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313void __elv_add_request(request_queue_t *q, struct request *rq, int where,
314 int plug)
315{
Tejun Heo797e7db2006-01-06 09:51:03 +0100316 struct list_head *pos;
317 unsigned ordseq;
318
319 if (q->ordcolor)
320 rq->flags |= REQ_ORDERED_COLOR;
321
Tejun Heo8922e162005-10-20 16:23:44 +0200322 if (rq->flags & (REQ_SOFTBARRIER | REQ_HARDBARRIER)) {
323 /*
Tejun Heo797e7db2006-01-06 09:51:03 +0100324 * toggle ordered color
325 */
326 q->ordcolor ^= 1;
327
328 /*
Tejun Heo8922e162005-10-20 16:23:44 +0200329 * barriers implicitly indicate back insertion
330 */
331 if (where == ELEVATOR_INSERT_SORT)
332 where = ELEVATOR_INSERT_BACK;
333
334 /*
Jens Axboe1b47f532005-10-20 16:37:00 +0200335 * this request is scheduling boundary, update end_sector
Tejun Heo8922e162005-10-20 16:23:44 +0200336 */
337 if (blk_fs_request(rq)) {
Jens Axboe1b47f532005-10-20 16:37:00 +0200338 q->end_sector = rq_end_sector(rq);
Tejun Heo8922e162005-10-20 16:23:44 +0200339 q->boundary_rq = rq;
340 }
Tejun Heocb98fc82005-10-28 08:29:39 +0200341 } else if (!(rq->flags & REQ_ELVPRIV) && where == ELEVATOR_INSERT_SORT)
342 where = ELEVATOR_INSERT_BACK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
344 if (plug)
345 blk_plug_device(q);
346
347 rq->q = q;
348
Tejun Heo8922e162005-10-20 16:23:44 +0200349 switch (where) {
350 case ELEVATOR_INSERT_FRONT:
351 rq->flags |= REQ_SOFTBARRIER;
352
353 list_add(&rq->queuelist, &q->queue_head);
354 break;
355
356 case ELEVATOR_INSERT_BACK:
357 rq->flags |= REQ_SOFTBARRIER;
Tejun Heo15853af2005-11-10 08:52:05 +0100358 elv_drain_elevator(q);
Tejun Heo8922e162005-10-20 16:23:44 +0200359 list_add_tail(&rq->queuelist, &q->queue_head);
360 /*
361 * We kick the queue here for the following reasons.
362 * - The elevator might have returned NULL previously
363 * to delay requests and returned them now. As the
364 * queue wasn't empty before this request, ll_rw_blk
365 * won't run the queue on return, resulting in hang.
366 * - Usually, back inserted requests won't be merged
367 * with anything. There's no point in delaying queue
368 * processing.
369 */
370 blk_remove_plug(q);
371 q->request_fn(q);
372 break;
373
374 case ELEVATOR_INSERT_SORT:
375 BUG_ON(!blk_fs_request(rq));
376 rq->flags |= REQ_SORTED;
Tejun Heo15853af2005-11-10 08:52:05 +0100377 q->nr_sorted++;
Tejun Heo06b86242005-10-20 16:46:23 +0200378 if (q->last_merge == NULL && rq_mergeable(rq))
379 q->last_merge = rq;
Tejun Heoca235092005-11-01 17:23:49 +0900380 /*
381 * Some ioscheds (cfq) run q->request_fn directly, so
382 * rq cannot be accessed after calling
383 * elevator_add_req_fn.
384 */
385 q->elevator->ops->elevator_add_req_fn(q, rq);
Tejun Heo8922e162005-10-20 16:23:44 +0200386 break;
387
Tejun Heo797e7db2006-01-06 09:51:03 +0100388 case ELEVATOR_INSERT_REQUEUE:
389 /*
390 * If ordered flush isn't in progress, we do front
391 * insertion; otherwise, requests should be requeued
392 * in ordseq order.
393 */
394 rq->flags |= REQ_SOFTBARRIER;
395
396 if (q->ordseq == 0) {
397 list_add(&rq->queuelist, &q->queue_head);
398 break;
399 }
400
401 ordseq = blk_ordered_req_seq(rq);
402
403 list_for_each(pos, &q->queue_head) {
404 struct request *pos_rq = list_entry_rq(pos);
405 if (ordseq <= blk_ordered_req_seq(pos_rq))
406 break;
407 }
408
409 list_add_tail(&rq->queuelist, pos);
410 break;
411
Tejun Heo8922e162005-10-20 16:23:44 +0200412 default:
413 printk(KERN_ERR "%s: bad insertion point %d\n",
414 __FUNCTION__, where);
415 BUG();
416 }
417
418 if (blk_queue_plugged(q)) {
419 int nrq = q->rq.count[READ] + q->rq.count[WRITE]
420 - q->in_flight;
421
422 if (nrq >= q->unplug_thresh)
423 __generic_unplug_device(q);
424 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425}
426
427void elv_add_request(request_queue_t *q, struct request *rq, int where,
428 int plug)
429{
430 unsigned long flags;
431
432 spin_lock_irqsave(q->queue_lock, flags);
433 __elv_add_request(q, rq, where, plug);
434 spin_unlock_irqrestore(q->queue_lock, flags);
435}
436
437static inline struct request *__elv_next_request(request_queue_t *q)
438{
Tejun Heo8922e162005-10-20 16:23:44 +0200439 struct request *rq;
440
Tejun Heo797e7db2006-01-06 09:51:03 +0100441 while (1) {
442 while (!list_empty(&q->queue_head)) {
443 rq = list_entry_rq(q->queue_head.next);
444 if (blk_do_ordered(q, &rq))
445 return rq;
446 }
Tejun Heo8922e162005-10-20 16:23:44 +0200447
Tejun Heo797e7db2006-01-06 09:51:03 +0100448 if (!q->elevator->ops->elevator_dispatch_fn(q, 0))
449 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451}
452
453struct request *elv_next_request(request_queue_t *q)
454{
455 struct request *rq;
456 int ret;
457
458 while ((rq = __elv_next_request(q)) != NULL) {
Tejun Heo8922e162005-10-20 16:23:44 +0200459 if (!(rq->flags & REQ_STARTED)) {
460 elevator_t *e = q->elevator;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461
Tejun Heo8922e162005-10-20 16:23:44 +0200462 /*
463 * This is the first time the device driver
464 * sees this request (possibly after
465 * requeueing). Notify IO scheduler.
466 */
467 if (blk_sorted_rq(rq) &&
468 e->ops->elevator_activate_req_fn)
469 e->ops->elevator_activate_req_fn(q, rq);
470
471 /*
472 * just mark as started even if we don't start
473 * it, a request that has been delayed should
474 * not be passed by new incoming requests
475 */
476 rq->flags |= REQ_STARTED;
477 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
Tejun Heo8922e162005-10-20 16:23:44 +0200479 if (!q->boundary_rq || q->boundary_rq == rq) {
Jens Axboe1b47f532005-10-20 16:37:00 +0200480 q->end_sector = rq_end_sector(rq);
Tejun Heo8922e162005-10-20 16:23:44 +0200481 q->boundary_rq = NULL;
482 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
484 if ((rq->flags & REQ_DONTPREP) || !q->prep_rq_fn)
485 break;
486
487 ret = q->prep_rq_fn(q, rq);
488 if (ret == BLKPREP_OK) {
489 break;
490 } else if (ret == BLKPREP_DEFER) {
Tejun Heo 2e759cd2005-04-24 02:04:21 -0500491 /*
492 * the request may have been (partially) prepped.
493 * we need to keep this request in the front to
Tejun Heo8922e162005-10-20 16:23:44 +0200494 * avoid resource deadlock. REQ_STARTED will
495 * prevent other fs requests from passing this one.
Tejun Heo 2e759cd2005-04-24 02:04:21 -0500496 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 rq = NULL;
498 break;
499 } else if (ret == BLKPREP_KILL) {
500 int nr_bytes = rq->hard_nr_sectors << 9;
501
502 if (!nr_bytes)
503 nr_bytes = rq->data_len;
504
505 blkdev_dequeue_request(rq);
506 rq->flags |= REQ_QUIET;
507 end_that_request_chunk(rq, 0, nr_bytes);
Tejun Heo8ffdc652006-01-06 09:49:03 +0100508 end_that_request_last(rq, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 } else {
510 printk(KERN_ERR "%s: bad return=%d\n", __FUNCTION__,
511 ret);
512 break;
513 }
514 }
515
516 return rq;
517}
518
Tejun Heo8922e162005-10-20 16:23:44 +0200519void elv_dequeue_request(request_queue_t *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520{
Tejun Heo8922e162005-10-20 16:23:44 +0200521 BUG_ON(list_empty(&rq->queuelist));
522
523 list_del_init(&rq->queuelist);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
525 /*
526 * the time frame between a request being removed from the lists
527 * and to it is freed is accounted as io that is in progress at
Tejun Heo8922e162005-10-20 16:23:44 +0200528 * the driver side.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 */
530 if (blk_account_rq(rq))
531 q->in_flight++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532}
533
534int elv_queue_empty(request_queue_t *q)
535{
536 elevator_t *e = q->elevator;
537
Tejun Heo8922e162005-10-20 16:23:44 +0200538 if (!list_empty(&q->queue_head))
539 return 0;
540
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 if (e->ops->elevator_queue_empty_fn)
542 return e->ops->elevator_queue_empty_fn(q);
543
Tejun Heo8922e162005-10-20 16:23:44 +0200544 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545}
546
547struct request *elv_latter_request(request_queue_t *q, struct request *rq)
548{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 elevator_t *e = q->elevator;
550
551 if (e->ops->elevator_latter_req_fn)
552 return e->ops->elevator_latter_req_fn(q, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 return NULL;
554}
555
556struct request *elv_former_request(request_queue_t *q, struct request *rq)
557{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 elevator_t *e = q->elevator;
559
560 if (e->ops->elevator_former_req_fn)
561 return e->ops->elevator_former_req_fn(q, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 return NULL;
563}
564
Jens Axboe22e2c502005-06-27 10:55:12 +0200565int elv_set_request(request_queue_t *q, struct request *rq, struct bio *bio,
Al Viro8267e262005-10-21 03:20:53 -0400566 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567{
568 elevator_t *e = q->elevator;
569
570 if (e->ops->elevator_set_req_fn)
Jens Axboe22e2c502005-06-27 10:55:12 +0200571 return e->ops->elevator_set_req_fn(q, rq, bio, gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
573 rq->elevator_private = NULL;
574 return 0;
575}
576
577void elv_put_request(request_queue_t *q, struct request *rq)
578{
579 elevator_t *e = q->elevator;
580
581 if (e->ops->elevator_put_req_fn)
582 e->ops->elevator_put_req_fn(q, rq);
583}
584
Jens Axboe22e2c502005-06-27 10:55:12 +0200585int elv_may_queue(request_queue_t *q, int rw, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586{
587 elevator_t *e = q->elevator;
588
589 if (e->ops->elevator_may_queue_fn)
Jens Axboe22e2c502005-06-27 10:55:12 +0200590 return e->ops->elevator_may_queue_fn(q, rw, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
592 return ELV_MQUEUE_MAY;
593}
594
595void elv_completed_request(request_queue_t *q, struct request *rq)
596{
597 elevator_t *e = q->elevator;
598
599 /*
600 * request is released from the driver, io must be done
601 */
Tejun Heo8922e162005-10-20 16:23:44 +0200602 if (blk_account_rq(rq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 q->in_flight--;
Tejun Heo1bc691d2006-01-12 15:39:26 +0100604 if (blk_sorted_rq(rq) && e->ops->elevator_completed_req_fn)
605 e->ops->elevator_completed_req_fn(q, rq);
606 }
Tejun Heo797e7db2006-01-06 09:51:03 +0100607
Tejun Heo1bc691d2006-01-12 15:39:26 +0100608 /*
609 * Check if the queue is waiting for fs requests to be
610 * drained for flush sequence.
611 */
612 if (unlikely(q->ordseq)) {
613 struct request *first_rq = list_entry_rq(q->queue_head.next);
614 if (q->in_flight == 0 &&
Tejun Heo797e7db2006-01-06 09:51:03 +0100615 blk_ordered_cur_seq(q) == QUEUE_ORDSEQ_DRAIN &&
616 blk_ordered_req_seq(first_rq) > QUEUE_ORDSEQ_DRAIN) {
617 blk_ordered_complete_seq(q, QUEUE_ORDSEQ_DRAIN, 0);
618 q->request_fn(q);
619 }
Tejun Heo8922e162005-10-20 16:23:44 +0200620 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621}
622
623int elv_register_queue(struct request_queue *q)
624{
625 elevator_t *e = q->elevator;
626
627 e->kobj.parent = kobject_get(&q->kobj);
628 if (!e->kobj.parent)
629 return -EBUSY;
630
631 snprintf(e->kobj.name, KOBJ_NAME_LEN, "%s", "iosched");
632 e->kobj.ktype = e->elevator_type->elevator_ktype;
633
634 return kobject_register(&e->kobj);
635}
636
637void elv_unregister_queue(struct request_queue *q)
638{
639 if (q) {
640 elevator_t *e = q->elevator;
641 kobject_unregister(&e->kobj);
642 kobject_put(&q->kobj);
643 }
644}
645
646int elv_register(struct elevator_type *e)
647{
Tejun Heo2824bc932005-10-20 10:56:41 +0200648 spin_lock_irq(&elv_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 if (elevator_find(e->elevator_name))
650 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 list_add_tail(&e->list, &elv_list);
652 spin_unlock_irq(&elv_list_lock);
653
654 printk(KERN_INFO "io scheduler %s registered", e->elevator_name);
Nate Diller5f003972006-01-24 10:07:58 +0100655 if (!strcmp(e->elevator_name, chosen_elevator) ||
656 (!*chosen_elevator &&
657 !strcmp(e->elevator_name, CONFIG_DEFAULT_IOSCHED)))
658 printk(" (default)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 printk("\n");
660 return 0;
661}
662EXPORT_SYMBOL_GPL(elv_register);
663
664void elv_unregister(struct elevator_type *e)
665{
Christoph Hellwig83521d32005-10-30 15:01:39 -0800666 struct task_struct *g, *p;
667
668 /*
669 * Iterate every thread in the process to remove the io contexts.
670 */
671 read_lock(&tasklist_lock);
672 do_each_thread(g, p) {
673 struct io_context *ioc = p->io_context;
674 if (ioc && ioc->cic) {
675 ioc->cic->exit(ioc->cic);
676 ioc->cic->dtor(ioc->cic);
677 ioc->cic = NULL;
678 }
679 if (ioc && ioc->aic) {
680 ioc->aic->exit(ioc->aic);
681 ioc->aic->dtor(ioc->aic);
682 ioc->aic = NULL;
683 }
684 } while_each_thread(g, p);
685 read_unlock(&tasklist_lock);
686
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 spin_lock_irq(&elv_list_lock);
688 list_del_init(&e->list);
689 spin_unlock_irq(&elv_list_lock);
690}
691EXPORT_SYMBOL_GPL(elv_unregister);
692
693/*
694 * switch to new_e io scheduler. be careful not to introduce deadlocks -
695 * we don't free the old io scheduler, before we have allocated what we
696 * need for the new one. this way we have a chance of going back to the old
Tejun Heocb98fc82005-10-28 08:29:39 +0200697 * one, if the new one fails init for some reason.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 */
699static void elevator_switch(request_queue_t *q, struct elevator_type *new_e)
700{
Tejun Heocb98fc82005-10-28 08:29:39 +0200701 elevator_t *old_elevator, *e;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
Tejun Heocb98fc82005-10-28 08:29:39 +0200703 /*
704 * Allocate new elevator
705 */
706 e = kmalloc(sizeof(elevator_t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 if (!e)
708 goto error;
709
710 /*
Tejun Heocb98fc82005-10-28 08:29:39 +0200711 * Turn on BYPASS and drain all requests w/ elevator private data
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 */
Tejun Heocb98fc82005-10-28 08:29:39 +0200713 spin_lock_irq(q->queue_lock);
714
Jens Axboe64521d12005-10-28 08:30:39 +0200715 set_bit(QUEUE_FLAG_ELVSWITCH, &q->queue_flags);
Tejun Heocb98fc82005-10-28 08:29:39 +0200716
Tejun Heo15853af2005-11-10 08:52:05 +0100717 elv_drain_elevator(q);
Tejun Heocb98fc82005-10-28 08:29:39 +0200718
719 while (q->rq.elvpriv) {
Tejun Heo407df2a2005-11-10 08:48:21 +0100720 blk_remove_plug(q);
721 q->request_fn(q);
Tejun Heocb98fc82005-10-28 08:29:39 +0200722 spin_unlock_irq(q->queue_lock);
Jens Axboe64521d12005-10-28 08:30:39 +0200723 msleep(10);
Tejun Heocb98fc82005-10-28 08:29:39 +0200724 spin_lock_irq(q->queue_lock);
Tejun Heo15853af2005-11-10 08:52:05 +0100725 elv_drain_elevator(q);
Tejun Heocb98fc82005-10-28 08:29:39 +0200726 }
727
728 spin_unlock_irq(q->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
730 /*
731 * unregister old elevator data
732 */
733 elv_unregister_queue(q);
734 old_elevator = q->elevator;
735
736 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 * attach and start new elevator
738 */
739 if (elevator_attach(q, new_e, e))
740 goto fail;
741
742 if (elv_register_queue(q))
743 goto fail_register;
744
745 /*
Tejun Heocb98fc82005-10-28 08:29:39 +0200746 * finally exit old elevator and turn off BYPASS.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 */
748 elevator_exit(old_elevator);
Jens Axboe64521d12005-10-28 08:30:39 +0200749 clear_bit(QUEUE_FLAG_ELVSWITCH, &q->queue_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 return;
751
752fail_register:
753 /*
754 * switch failed, exit the new io scheduler and reattach the old
755 * one again (along with re-adding the sysfs dir)
756 */
757 elevator_exit(e);
Tejun Heocb98fc82005-10-28 08:29:39 +0200758 e = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759fail:
760 q->elevator = old_elevator;
761 elv_register_queue(q);
Jens Axboe64521d12005-10-28 08:30:39 +0200762 clear_bit(QUEUE_FLAG_ELVSWITCH, &q->queue_flags);
Tejun Heocb98fc82005-10-28 08:29:39 +0200763 kfree(e);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 elevator_put(new_e);
766 printk(KERN_ERR "elevator: switch to %s failed\n",new_e->elevator_name);
767}
768
769ssize_t elv_iosched_store(request_queue_t *q, const char *name, size_t count)
770{
771 char elevator_name[ELV_NAME_MAX];
Tejun Heobe561232005-11-10 08:55:01 +0100772 size_t len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 struct elevator_type *e;
774
Tejun Heobe561232005-11-10 08:55:01 +0100775 elevator_name[sizeof(elevator_name) - 1] = '\0';
776 strncpy(elevator_name, name, sizeof(elevator_name) - 1);
777 len = strlen(elevator_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778
Tejun Heobe561232005-11-10 08:55:01 +0100779 if (len && elevator_name[len - 1] == '\n')
780 elevator_name[len - 1] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
782 e = elevator_get(elevator_name);
783 if (!e) {
784 printk(KERN_ERR "elevator: type %s not found\n", elevator_name);
785 return -EINVAL;
786 }
787
Nate Diller2ca7d932005-10-30 15:02:24 -0800788 if (!strcmp(elevator_name, q->elevator->elevator_type->elevator_name)) {
789 elevator_put(e);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 return count;
Nate Diller2ca7d932005-10-30 15:02:24 -0800791 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792
793 elevator_switch(q, e);
794 return count;
795}
796
797ssize_t elv_iosched_show(request_queue_t *q, char *name)
798{
799 elevator_t *e = q->elevator;
800 struct elevator_type *elv = e->elevator_type;
801 struct list_head *entry;
802 int len = 0;
803
804 spin_lock_irq(q->queue_lock);
805 list_for_each(entry, &elv_list) {
806 struct elevator_type *__e;
807
808 __e = list_entry(entry, struct elevator_type, list);
809 if (!strcmp(elv->elevator_name, __e->elevator_name))
810 len += sprintf(name+len, "[%s] ", elv->elevator_name);
811 else
812 len += sprintf(name+len, "%s ", __e->elevator_name);
813 }
814 spin_unlock_irq(q->queue_lock);
815
816 len += sprintf(len+name, "\n");
817 return len;
818}
819
Jens Axboe1b47f532005-10-20 16:37:00 +0200820EXPORT_SYMBOL(elv_dispatch_sort);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821EXPORT_SYMBOL(elv_add_request);
822EXPORT_SYMBOL(__elv_add_request);
823EXPORT_SYMBOL(elv_requeue_request);
824EXPORT_SYMBOL(elv_next_request);
Tejun Heo8922e162005-10-20 16:23:44 +0200825EXPORT_SYMBOL(elv_dequeue_request);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826EXPORT_SYMBOL(elv_queue_empty);
827EXPORT_SYMBOL(elv_completed_request);
828EXPORT_SYMBOL(elevator_exit);
829EXPORT_SYMBOL(elevator_init);