diff options
author | Dave Chinner <dchinner@redhat.com> | 2011-07-08 00:14:40 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2011-07-20 01:44:36 -0400 |
commit | 09cc9fc7a7c3d872065426d7fb0f0ad6d3eb90fc (patch) | |
tree | 79f6f835dd009ac34bd35ee3ee61e616ec2b255a /fs/super.c | |
parent | 98b745c647a5a90c3c21ea43cbfad9a47b0dfad7 (diff) |
inode: move to per-sb LRU locks
With the inode LRUs moving to per-sb structures, there is no longer
a need for a global inode_lru_lock. The locking can be made more
fine-grained by moving to a per-sb LRU lock, isolating the LRU
operations of different filesytsems completely from each other.
Signed-off-by: Dave Chinner <dchinner@redhat.com>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/super.c')
-rw-r--r-- | fs/super.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/super.c b/fs/super.c index e8e6dbfefe8c..73ab9f9b3571 100644 --- a/fs/super.c +++ b/fs/super.c | |||
@@ -78,6 +78,7 @@ static struct super_block *alloc_super(struct file_system_type *type) | |||
78 | INIT_LIST_HEAD(&s->s_inodes); | 78 | INIT_LIST_HEAD(&s->s_inodes); |
79 | INIT_LIST_HEAD(&s->s_dentry_lru); | 79 | INIT_LIST_HEAD(&s->s_dentry_lru); |
80 | INIT_LIST_HEAD(&s->s_inode_lru); | 80 | INIT_LIST_HEAD(&s->s_inode_lru); |
81 | spin_lock_init(&s->s_inode_lru_lock); | ||
81 | init_rwsem(&s->s_umount); | 82 | init_rwsem(&s->s_umount); |
82 | mutex_init(&s->s_lock); | 83 | mutex_init(&s->s_lock); |
83 | lockdep_set_class(&s->s_umount, &type->s_umount_key); | 84 | lockdep_set_class(&s->s_umount, &type->s_umount_key); |