2005-04-16 18:20:36 -04:00
|
|
|
#ifndef _LINUX_ELEVATOR_H
|
|
|
|
#define _LINUX_ELEVATOR_H
|
|
|
|
|
2006-07-22 09:37:43 -04:00
|
|
|
#include <linux/percpu.h>
|
|
|
|
|
[PATCH] BLOCK: Make it possible to disable the block layer [try #6]
Make it possible to disable the block layer. Not all embedded devices require
it, some can make do with just JFFS2, NFS, ramfs, etc - none of which require
the block layer to be present.
This patch does the following:
(*) Introduces CONFIG_BLOCK to disable the block layer, buffering and blockdev
support.
(*) Adds dependencies on CONFIG_BLOCK to any configuration item that controls
an item that uses the block layer. This includes:
(*) Block I/O tracing.
(*) Disk partition code.
(*) All filesystems that are block based, eg: Ext3, ReiserFS, ISOFS.
(*) The SCSI layer. As far as I can tell, even SCSI chardevs use the
block layer to do scheduling. Some drivers that use SCSI facilities -
such as USB storage - end up disabled indirectly from this.
(*) Various block-based device drivers, such as IDE and the old CDROM
drivers.
(*) MTD blockdev handling and FTL.
(*) JFFS - which uses set_bdev_super(), something it could avoid doing by
taking a leaf out of JFFS2's book.
(*) Makes most of the contents of linux/blkdev.h, linux/buffer_head.h and
linux/elevator.h contingent on CONFIG_BLOCK being set. sector_div() is,
however, still used in places, and so is still available.
(*) Also made contingent are the contents of linux/mpage.h, linux/genhd.h and
parts of linux/fs.h.
(*) Makes a number of files in fs/ contingent on CONFIG_BLOCK.
(*) Makes mm/bounce.c (bounce buffering) contingent on CONFIG_BLOCK.
(*) set_page_dirty() doesn't call __set_page_dirty_buffers() if CONFIG_BLOCK
is not enabled.
(*) fs/no-block.c is created to hold out-of-line stubs and things that are
required when CONFIG_BLOCK is not set:
(*) Default blockdev file operations (to give error ENODEV on opening).
(*) Makes some /proc changes:
(*) /proc/devices does not list any blockdevs.
(*) /proc/diskstats and /proc/partitions are contingent on CONFIG_BLOCK.
(*) Makes some compat ioctl handling contingent on CONFIG_BLOCK.
(*) If CONFIG_BLOCK is not defined, makes sys_quotactl() return -ENODEV if
given command other than Q_SYNC or if a special device is specified.
(*) In init/do_mounts.c, no reference is made to the blockdev routines if
CONFIG_BLOCK is not defined. This does not prohibit NFS roots or JFFS2.
(*) The bdflush, ioprio_set and ioprio_get syscalls can now be absent (return
error ENOSYS by way of cond_syscall if so).
(*) The seclvl_bd_claim() and seclvl_bd_release() security calls do nothing if
CONFIG_BLOCK is not set, since they can't then happen.
Signed-Off-By: David Howells <dhowells@redhat.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
2006-09-30 14:45:40 -04:00
|
|
|
#ifdef CONFIG_BLOCK
|
|
|
|
|
2005-04-16 18:20:36 -04:00
|
|
|
typedef int (elevator_merge_fn) (request_queue_t *, struct request **,
|
|
|
|
struct bio *);
|
|
|
|
|
|
|
|
typedef void (elevator_merge_req_fn) (request_queue_t *, struct request *, struct request *);
|
|
|
|
|
2006-07-13 05:55:04 -04:00
|
|
|
typedef void (elevator_merged_fn) (request_queue_t *, struct request *, int);
|
2005-04-16 18:20:36 -04:00
|
|
|
|
2006-12-20 05:04:12 -05:00
|
|
|
typedef int (elevator_allow_merge_fn) (request_queue_t *, struct request *, struct bio *);
|
|
|
|
|
2005-10-20 10:23:44 -04:00
|
|
|
typedef int (elevator_dispatch_fn) (request_queue_t *, int);
|
2005-04-16 18:20:36 -04:00
|
|
|
|
2005-10-20 10:23:44 -04:00
|
|
|
typedef void (elevator_add_req_fn) (request_queue_t *, struct request *);
|
2005-04-16 18:20:36 -04:00
|
|
|
typedef int (elevator_queue_empty_fn) (request_queue_t *);
|
|
|
|
typedef struct request *(elevator_request_list_fn) (request_queue_t *, struct request *);
|
|
|
|
typedef void (elevator_completed_req_fn) (request_queue_t *, struct request *);
|
2006-07-28 03:32:57 -04:00
|
|
|
typedef int (elevator_may_queue_fn) (request_queue_t *, int);
|
2005-04-16 18:20:36 -04:00
|
|
|
|
2006-07-28 03:32:57 -04:00
|
|
|
typedef int (elevator_set_req_fn) (request_queue_t *, struct request *, gfp_t);
|
2006-12-01 04:42:33 -05:00
|
|
|
typedef void (elevator_put_req_fn) (struct request *);
|
2005-10-20 10:23:44 -04:00
|
|
|
typedef void (elevator_activate_req_fn) (request_queue_t *, struct request *);
|
2005-04-16 18:20:36 -04:00
|
|
|
typedef void (elevator_deactivate_req_fn) (request_queue_t *, struct request *);
|
|
|
|
|
2006-12-01 04:42:33 -05:00
|
|
|
typedef void *(elevator_init_fn) (request_queue_t *);
|
2005-04-16 18:20:36 -04:00
|
|
|
typedef void (elevator_exit_fn) (elevator_t *);
|
|
|
|
|
|
|
|
struct elevator_ops
|
|
|
|
{
|
|
|
|
elevator_merge_fn *elevator_merge_fn;
|
|
|
|
elevator_merged_fn *elevator_merged_fn;
|
|
|
|
elevator_merge_req_fn *elevator_merge_req_fn;
|
2006-12-20 05:04:12 -05:00
|
|
|
elevator_allow_merge_fn *elevator_allow_merge_fn;
|
2005-04-16 18:20:36 -04:00
|
|
|
|
2005-10-20 10:23:44 -04:00
|
|
|
elevator_dispatch_fn *elevator_dispatch_fn;
|
2005-04-16 18:20:36 -04:00
|
|
|
elevator_add_req_fn *elevator_add_req_fn;
|
2005-10-20 10:23:44 -04:00
|
|
|
elevator_activate_req_fn *elevator_activate_req_fn;
|
2005-04-16 18:20:36 -04:00
|
|
|
elevator_deactivate_req_fn *elevator_deactivate_req_fn;
|
|
|
|
|
|
|
|
elevator_queue_empty_fn *elevator_queue_empty_fn;
|
|
|
|
elevator_completed_req_fn *elevator_completed_req_fn;
|
|
|
|
|
|
|
|
elevator_request_list_fn *elevator_former_req_fn;
|
|
|
|
elevator_request_list_fn *elevator_latter_req_fn;
|
|
|
|
|
|
|
|
elevator_set_req_fn *elevator_set_req_fn;
|
|
|
|
elevator_put_req_fn *elevator_put_req_fn;
|
|
|
|
|
|
|
|
elevator_may_queue_fn *elevator_may_queue_fn;
|
|
|
|
|
|
|
|
elevator_init_fn *elevator_init_fn;
|
|
|
|
elevator_exit_fn *elevator_exit_fn;
|
2006-03-18 13:21:20 -05:00
|
|
|
void (*trim)(struct io_context *);
|
2005-04-16 18:20:36 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#define ELV_NAME_MAX (16)
|
|
|
|
|
2006-03-18 22:27:18 -05:00
|
|
|
struct elv_fs_entry {
|
|
|
|
struct attribute attr;
|
|
|
|
ssize_t (*show)(elevator_t *, char *);
|
|
|
|
ssize_t (*store)(elevator_t *, const char *, size_t);
|
|
|
|
};
|
|
|
|
|
2005-04-16 18:20:36 -04:00
|
|
|
/*
|
|
|
|
* identifies an elevator type, such as AS or deadline
|
|
|
|
*/
|
|
|
|
struct elevator_type
|
|
|
|
{
|
|
|
|
struct list_head list;
|
|
|
|
struct elevator_ops ops;
|
2006-03-18 22:27:18 -05:00
|
|
|
struct elv_fs_entry *elevator_attrs;
|
2005-04-16 18:20:36 -04:00
|
|
|
char elevator_name[ELV_NAME_MAX];
|
|
|
|
struct module *elevator_owner;
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
2006-01-09 18:09:36 -05:00
|
|
|
* each queue has an elevator_queue associated with it
|
2005-04-16 18:20:36 -04:00
|
|
|
*/
|
|
|
|
struct elevator_queue
|
|
|
|
{
|
|
|
|
struct elevator_ops *ops;
|
|
|
|
void *elevator_data;
|
|
|
|
struct kobject kobj;
|
|
|
|
struct elevator_type *elevator_type;
|
2006-03-18 18:35:43 -05:00
|
|
|
struct mutex sysfs_lock;
|
2006-07-28 03:23:08 -04:00
|
|
|
struct hlist_head *hash;
|
2005-04-16 18:20:36 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* block elevator interface
|
|
|
|
*/
|
2005-10-20 10:37:00 -04:00
|
|
|
extern void elv_dispatch_sort(request_queue_t *, struct request *);
|
2006-07-28 03:23:08 -04:00
|
|
|
extern void elv_dispatch_add_tail(request_queue_t *, struct request *);
|
2005-04-16 18:20:36 -04:00
|
|
|
extern void elv_add_request(request_queue_t *, struct request *, int, int);
|
|
|
|
extern void __elv_add_request(request_queue_t *, struct request *, int, int);
|
2006-02-08 04:01:31 -05:00
|
|
|
extern void elv_insert(request_queue_t *, struct request *, int);
|
2005-04-16 18:20:36 -04:00
|
|
|
extern int elv_merge(request_queue_t *, struct request **, struct bio *);
|
|
|
|
extern void elv_merge_requests(request_queue_t *, struct request *,
|
|
|
|
struct request *);
|
2006-07-13 05:55:04 -04:00
|
|
|
extern void elv_merged_request(request_queue_t *, struct request *, int);
|
2005-10-20 10:23:44 -04:00
|
|
|
extern void elv_dequeue_request(request_queue_t *, struct request *);
|
2005-04-16 18:20:36 -04:00
|
|
|
extern void elv_requeue_request(request_queue_t *, struct request *);
|
|
|
|
extern int elv_queue_empty(request_queue_t *);
|
|
|
|
extern struct request *elv_next_request(struct request_queue *q);
|
|
|
|
extern struct request *elv_former_request(request_queue_t *, struct request *);
|
|
|
|
extern struct request *elv_latter_request(request_queue_t *, struct request *);
|
|
|
|
extern int elv_register_queue(request_queue_t *q);
|
|
|
|
extern void elv_unregister_queue(request_queue_t *q);
|
2006-07-28 03:32:57 -04:00
|
|
|
extern int elv_may_queue(request_queue_t *, int);
|
2005-04-16 18:20:36 -04:00
|
|
|
extern void elv_completed_request(request_queue_t *, struct request *);
|
2006-07-28 03:32:57 -04:00
|
|
|
extern int elv_set_request(request_queue_t *, struct request *, gfp_t);
|
2005-04-16 18:20:36 -04:00
|
|
|
extern void elv_put_request(request_queue_t *, struct request *);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* io scheduler registration
|
|
|
|
*/
|
|
|
|
extern int elv_register(struct elevator_type *);
|
|
|
|
extern void elv_unregister(struct elevator_type *);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* io scheduler sysfs switching
|
|
|
|
*/
|
|
|
|
extern ssize_t elv_iosched_show(request_queue_t *, char *);
|
|
|
|
extern ssize_t elv_iosched_store(request_queue_t *, const char *, size_t);
|
|
|
|
|
|
|
|
extern int elevator_init(request_queue_t *, char *);
|
|
|
|
extern void elevator_exit(elevator_t *);
|
|
|
|
extern int elv_rq_merge_ok(struct request *, struct bio *);
|
|
|
|
|
2006-07-13 05:55:04 -04:00
|
|
|
/*
|
|
|
|
* Helper functions.
|
|
|
|
*/
|
|
|
|
extern struct request *elv_rb_former_request(request_queue_t *, struct request *);
|
|
|
|
extern struct request *elv_rb_latter_request(request_queue_t *, struct request *);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* rb support functions.
|
|
|
|
*/
|
|
|
|
extern struct request *elv_rb_add(struct rb_root *, struct request *);
|
|
|
|
extern void elv_rb_del(struct rb_root *, struct request *);
|
|
|
|
extern struct request *elv_rb_find(struct rb_root *, sector_t);
|
|
|
|
|
2005-04-16 18:20:36 -04:00
|
|
|
/*
|
|
|
|
* Return values from elevator merger
|
|
|
|
*/
|
|
|
|
#define ELEVATOR_NO_MERGE 0
|
|
|
|
#define ELEVATOR_FRONT_MERGE 1
|
|
|
|
#define ELEVATOR_BACK_MERGE 2
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Insertion selection
|
|
|
|
*/
|
|
|
|
#define ELEVATOR_INSERT_FRONT 1
|
|
|
|
#define ELEVATOR_INSERT_BACK 2
|
|
|
|
#define ELEVATOR_INSERT_SORT 3
|
2006-01-06 03:51:03 -05:00
|
|
|
#define ELEVATOR_INSERT_REQUEUE 4
|
2005-04-16 18:20:36 -04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* return values from elevator_may_queue_fn
|
|
|
|
*/
|
|
|
|
enum {
|
|
|
|
ELV_MQUEUE_MAY,
|
|
|
|
ELV_MQUEUE_NO,
|
|
|
|
ELV_MQUEUE_MUST,
|
|
|
|
};
|
|
|
|
|
2005-10-20 10:37:00 -04:00
|
|
|
#define rq_end_sector(rq) ((rq)->sector + (rq)->nr_sectors)
|
2006-07-13 05:55:04 -04:00
|
|
|
#define rb_entry_rq(node) rb_entry((node), struct request, rb_node)
|
2005-10-20 10:37:00 -04:00
|
|
|
|
2006-07-11 15:49:15 -04:00
|
|
|
/*
|
|
|
|
* Hack to reuse the donelist list_head as the fifo time holder while
|
|
|
|
* the request is in the io scheduler. Saves an unsigned long in rq.
|
|
|
|
*/
|
|
|
|
#define rq_fifo_time(rq) ((unsigned long) (rq)->donelist.next)
|
|
|
|
#define rq_set_fifo_time(rq,exp) ((rq)->donelist.next = (void *) (exp))
|
|
|
|
#define rq_entry_fifo(ptr) list_entry((ptr), struct request, queuelist)
|
|
|
|
#define rq_fifo_clear(rq) do { \
|
|
|
|
list_del_init(&(rq)->queuelist); \
|
|
|
|
INIT_LIST_HEAD(&(rq)->donelist); \
|
|
|
|
} while (0)
|
|
|
|
|
2006-07-22 09:37:43 -04:00
|
|
|
/*
|
|
|
|
* io context count accounting
|
|
|
|
*/
|
|
|
|
#define elv_ioc_count_mod(name, __val) \
|
|
|
|
do { \
|
|
|
|
preempt_disable(); \
|
|
|
|
__get_cpu_var(name) += (__val); \
|
|
|
|
preempt_enable(); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define elv_ioc_count_inc(name) elv_ioc_count_mod(name, 1)
|
|
|
|
#define elv_ioc_count_dec(name) elv_ioc_count_mod(name, -1)
|
|
|
|
|
|
|
|
#define elv_ioc_count_read(name) \
|
|
|
|
({ \
|
|
|
|
unsigned long __val = 0; \
|
|
|
|
int __cpu; \
|
|
|
|
smp_wmb(); \
|
|
|
|
for_each_possible_cpu(__cpu) \
|
|
|
|
__val += per_cpu(name, __cpu); \
|
|
|
|
__val; \
|
|
|
|
})
|
|
|
|
|
[PATCH] BLOCK: Make it possible to disable the block layer [try #6]
Make it possible to disable the block layer. Not all embedded devices require
it, some can make do with just JFFS2, NFS, ramfs, etc - none of which require
the block layer to be present.
This patch does the following:
(*) Introduces CONFIG_BLOCK to disable the block layer, buffering and blockdev
support.
(*) Adds dependencies on CONFIG_BLOCK to any configuration item that controls
an item that uses the block layer. This includes:
(*) Block I/O tracing.
(*) Disk partition code.
(*) All filesystems that are block based, eg: Ext3, ReiserFS, ISOFS.
(*) The SCSI layer. As far as I can tell, even SCSI chardevs use the
block layer to do scheduling. Some drivers that use SCSI facilities -
such as USB storage - end up disabled indirectly from this.
(*) Various block-based device drivers, such as IDE and the old CDROM
drivers.
(*) MTD blockdev handling and FTL.
(*) JFFS - which uses set_bdev_super(), something it could avoid doing by
taking a leaf out of JFFS2's book.
(*) Makes most of the contents of linux/blkdev.h, linux/buffer_head.h and
linux/elevator.h contingent on CONFIG_BLOCK being set. sector_div() is,
however, still used in places, and so is still available.
(*) Also made contingent are the contents of linux/mpage.h, linux/genhd.h and
parts of linux/fs.h.
(*) Makes a number of files in fs/ contingent on CONFIG_BLOCK.
(*) Makes mm/bounce.c (bounce buffering) contingent on CONFIG_BLOCK.
(*) set_page_dirty() doesn't call __set_page_dirty_buffers() if CONFIG_BLOCK
is not enabled.
(*) fs/no-block.c is created to hold out-of-line stubs and things that are
required when CONFIG_BLOCK is not set:
(*) Default blockdev file operations (to give error ENODEV on opening).
(*) Makes some /proc changes:
(*) /proc/devices does not list any blockdevs.
(*) /proc/diskstats and /proc/partitions are contingent on CONFIG_BLOCK.
(*) Makes some compat ioctl handling contingent on CONFIG_BLOCK.
(*) If CONFIG_BLOCK is not defined, makes sys_quotactl() return -ENODEV if
given command other than Q_SYNC or if a special device is specified.
(*) In init/do_mounts.c, no reference is made to the blockdev routines if
CONFIG_BLOCK is not defined. This does not prohibit NFS roots or JFFS2.
(*) The bdflush, ioprio_set and ioprio_get syscalls can now be absent (return
error ENOSYS by way of cond_syscall if so).
(*) The seclvl_bd_claim() and seclvl_bd_release() security calls do nothing if
CONFIG_BLOCK is not set, since they can't then happen.
Signed-Off-By: David Howells <dhowells@redhat.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
2006-09-30 14:45:40 -04:00
|
|
|
#endif /* CONFIG_BLOCK */
|
2005-04-16 18:20:36 -04:00
|
|
|
#endif
|