/*
* linux/drivers/block/elevator.c
*
* Block device elevator/IO-scheduler.
*
* Copyright (C) 2000 Andrea Arcangeli <andrea@suse.de> SuSE
*
* 30042000 Jens Axboe <axboe@suse.de> :
*
* Split the elevator a bit so that it is possible to choose a different
* one or even write a new "plug in". There are three pieces:
* - elevator_fn, inserts a new request in the queue list
* - elevator_merge_fn, decides whether a new buffer can be merged with
* an existing request
* - elevator_dequeue_fn, called when a request is taken off the active list
*
* 20082000 Dave Jones <davej@suse.de> :
* Removed tests for max-bomb-segments, which was breaking elvtune
* when run without -bN
*
*/
#include <linux/fs.h>
#include <linux/blkdev.h>
#include <linux/elevator.h>
#include <linux/blk.h>
#include <asm/uaccess.h>
/*
* Order ascending, but only allow a request to be skipped a certain
* number of times
*/
33 void elevator_linus(struct request *req, elevator_t *elevator,
struct list_head *real_head,
struct list_head *head, int orig_latency)
{
struct list_head *entry = real_head;
struct request *tmp;
req->elevator_sequence = orig_latency;
42 while ((entry = entry->prev) != head) {
tmp = blkdev_entry_to_request(entry);
44 if (IN_ORDER(tmp, req))
45 break;
46 if (!tmp->elevator_sequence)
47 break;
tmp->elevator_sequence--;
}
list_add(&req->queue, entry);
}
53 int elevator_linus_merge(request_queue_t *q, struct request **req,
struct buffer_head *bh, int rw,
int *max_sectors, int *max_segments)
{
struct list_head *entry, *head = &q->queue_head;
unsigned int count = bh->b_size >> 9, ret = ELEVATOR_NO_MERGE;
entry = head;
61 if (q->head_active && !q->plugged)
head = head->next;
64 while ((entry = entry->prev) != head) {
struct request *__rq = *req = blkdev_entry_to_request(entry);
66 if (__rq->sem)
67 continue;
68 if (__rq->cmd != rw)
69 continue;
70 if (__rq->nr_sectors + count > *max_sectors)
71 continue;
72 if (__rq->rq_dev != bh->b_rdev)
73 continue;
74 if (__rq->sector + __rq->nr_sectors == bh->b_rsector) {
ret = ELEVATOR_BACK_MERGE;
76 break;
}
78 if (!__rq->elevator_sequence)
79 break;
80 if (__rq->sector - count == bh->b_rsector) {
__rq->elevator_sequence--;
ret = ELEVATOR_FRONT_MERGE;
83 break;
}
}
/*
* second pass scan of requests that got passed over, if any
*/
90 if (ret != ELEVATOR_NO_MERGE && *req) {
91 while ((entry = entry->next) != &q->queue_head) {
struct request *tmp = blkdev_entry_to_request(entry);
tmp->elevator_sequence--;
}
}
97 return ret;
}
/*
* No request sorting, just add it to the back of the list
*/
103 void elevator_noop(struct request *req, elevator_t *elevator,
struct list_head *real_head, struct list_head *head,
int orig_latency)
{
list_add_tail(&req->queue, real_head);
}
/*
* See if we can find a request that is buffer can be coalesced with.
*/
113 int elevator_noop_merge(request_queue_t *q, struct request **req,
struct buffer_head *bh, int rw,
int *max_sectors, int *max_segments)
{
struct list_head *entry, *head = &q->queue_head;
unsigned int count = bh->b_size >> 9;
120 if (q->head_active && !q->plugged)
head = head->next;
entry = head;
124 while ((entry = entry->prev) != head) {
struct request *__rq = *req = blkdev_entry_to_request(entry);
126 if (__rq->sem)
127 continue;
128 if (__rq->cmd != rw)
129 continue;
130 if (__rq->nr_sectors + count > *max_sectors)
131 continue;
132 if (__rq->rq_dev != bh->b_rdev)
133 continue;
134 if (__rq->sector + __rq->nr_sectors == bh->b_rsector)
135 return ELEVATOR_BACK_MERGE;
136 if (__rq->sector - count == bh->b_rsector)
137 return ELEVATOR_FRONT_MERGE;
}
139 return ELEVATOR_NO_MERGE;
}
/*
* The noop "elevator" does not do any accounting
*/
145 void elevator_noop_dequeue(struct request *req) {}
147 int blkelvget_ioctl(elevator_t * elevator, blkelv_ioctl_arg_t * arg)
{
blkelv_ioctl_arg_t output;
output.queue_ID = elevator->queue_ID;
output.read_latency = elevator->read_latency;
output.write_latency = elevator->write_latency;
output.max_bomb_segments = 0;
156 if (copy_to_user(arg, &output, sizeof(blkelv_ioctl_arg_t)))
157 return -EFAULT;
159 return 0;
}
162 int blkelvset_ioctl(elevator_t * elevator, const blkelv_ioctl_arg_t * arg)
{
blkelv_ioctl_arg_t input;
166 if (copy_from_user(&input, arg, sizeof(blkelv_ioctl_arg_t)))
167 return -EFAULT;
169 if (input.read_latency < 0)
170 return -EINVAL;
171 if (input.write_latency < 0)
172 return -EINVAL;
elevator->read_latency = input.read_latency;
elevator->write_latency = input.write_latency;
176 return 0;
}
179 void elevator_init(elevator_t * elevator, elevator_t type)
{
static unsigned int queue_ID;
*elevator = type;
elevator->queue_ID = queue_ID++;
}