[PATCH] cfq-iosched: kill cfq_exit_lock
authorJens Axboe <axboe@suse.de>
Tue, 29 Aug 2006 07:05:44 +0000 (09:05 +0200)
committerJens Axboe <axboe@nelson.home.kernel.dk>
Sat, 30 Sep 2006 18:29:36 +0000 (20:29 +0200)
commitfc46379daf90dce57bf765c81d3b39f55150aac2
tree43aa28f0db6c73f137550b0b2e2ec29b9f9a1fc6
parent89850f7ee905410c89f9295e89dc4c33502a34ac
[PATCH] cfq-iosched: kill cfq_exit_lock

cfq_exit_lock is protecting two things now:

- The per-ioc rbtree of cfq_io_contexts

- The per-cfqd linked list of cfq_io_contexts

The per-cfqd linked list can be protected by the queue lock, as it is (by
definition) per cfqd as the queue lock is.

The per-ioc rbtree is mainly used and updated by the process itself only.
The only outside use is the io priority changing. If we move the
priority changing to not browsing the rbtree, we can remove any locking
from the rbtree updates and lookup completely. Let the sys_ioprio syscall
just mark processes as having the iopriority changed and lazily update
the private cfq io contexts the next time io is queued, and we can
remove this locking as well.

Signed-off-by: Jens Axboe <axboe@suse.de>
block/cfq-iosched.c
block/ll_rw_blk.c
fs/ioprio.c
include/linux/blkdev.h