vfs: revert per-cpu nr_unused counters for dentry and inodes
authorNick Piggin <npiggin@kernel.dk>
Fri, 7 Jan 2011 06:49:18 +0000 (17:49 +1100)
committerNick Piggin <npiggin@kernel.dk>
Fri, 7 Jan 2011 06:50:17 +0000 (17:50 +1100)
commit86c8749ede0c59e590de9267066932a26f1ce796
tree316517d7c03d9caf0577acc517532ed2bc1801cc
parentccd35fb9f4da856b105ea0f1e0cab3702e8ae6ba
vfs: revert per-cpu nr_unused counters for dentry and inodes

The nr_unused counters count the number of objects on an LRU, and as such they
are synchronized with LRU object insertion and removal and scanning, and
protected under the LRU lock.

Making it per-cpu does not actually get any concurrency improvements because of
this lock, and summing the counter is much slower, and
incrementing/decrementing it costs more code size and is slower too.

These counters should stay per-LRU, which currently means global.

Signed-off-by: Nick Piggin <npiggin@kernel.dk>
fs/dcache.c
fs/inode.c