diff options
author | Jens Axboe <jens.axboe@oracle.com> | 2009-12-04 10:06:35 +0100 |
---|---|---|
committer | Jens Axboe <jens.axboe@oracle.com> | 2009-12-04 10:06:35 +0100 |
commit | f2eecb91522686edf8199947b77f435a4031d92f (patch) | |
tree | e584c9d81971fb741508c176d74ef51ff45a4bcc /block/cfq-iosched.h | |
parent | cfq-iosched: fix compile problem with !CONFIG_CGROUP (diff) | |
download | linux-f2eecb91522686edf8199947b77f435a4031d92f.tar.xz linux-f2eecb91522686edf8199947b77f435a4031d92f.zip |
cfq-iosched: move IO controller declerations to a header file
They should not be declared inside some other file that's not related
to CFQ.
Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
Diffstat (limited to 'block/cfq-iosched.h')
-rw-r--r-- | block/cfq-iosched.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/block/cfq-iosched.h b/block/cfq-iosched.h new file mode 100644 index 000000000000..ef7b4798a349 --- /dev/null +++ b/block/cfq-iosched.h @@ -0,0 +1,7 @@ +#ifndef CFQ_IOSCHED_H +#define CFQ_IOSCHED_H + +void cfq_unlink_blkio_group(void *, struct blkio_group *); +void cfq_update_blkio_group_weight(struct blkio_group *, unsigned int); + +#endif |