]> bbs.cooldavid.org Git - net-next-2.6.git/commit
fscache: convert operation to use workqueue instead of slow-work
authorTejun Heo <tj@kernel.org>
Tue, 20 Jul 2010 20:09:01 +0000 (22:09 +0200)
committerTejun Heo <tj@kernel.org>
Thu, 22 Jul 2010 20:58:47 +0000 (22:58 +0200)
commit8af7c12436803291c90295259db23d371a7ad9cc
tree5e75360876ac5783a3e64bd35a1715847d90e9ce
parent8b8edefa2fffbff97f9eec8b70e78ae23abad1a0
fscache: convert operation to use workqueue instead of slow-work

Make fscache operation to use only workqueue instead of combination of
workqueue and slow-work.  FSCACHE_OP_SLOW is dropped and
FSCACHE_OP_FAST is renamed to FSCACHE_OP_ASYNC and uses newly added
fscache_op_wq workqueue to execute op->processor().
fscache_operation_init_slow() is dropped and fscache_operation_init()
now takes @processor argument directly.

* Unbound workqueue is used.

* fscache_retrieval_work() is no longer necessary as OP_ASYNC now does
  the equivalent thing.

* sysctl fscache.operation_max_active added to control concurrency.
  The default value is nr_cpus clamped between 2 and
  WQ_UNBOUND_MAX_ACTIVE.

* debugfs support is dropped for now.  Tracing API based debug
  facility is planned to be added.

Signed-off-by: Tejun Heo <tj@kernel.org>
Acked-by: David Howells <dhowells@redhat.com>
fs/cachefiles/rdwr.c
fs/fscache/internal.h
fs/fscache/main.c
fs/fscache/operation.c
fs/fscache/page.c
include/linux/fscache-cache.h