diff options
author | Ingo Molnar <mingo@elte.hu> | 2006-01-09 18:59:25 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@hera.kernel.org> | 2006-01-09 18:59:25 -0500 |
commit | 7892f2f48d165a34b0b8130c8a195dfd807b8cb6 (patch) | |
tree | 592b29350c168aa5758700820ab22fb56e72a567 /fs/ocfs2/super.c | |
parent | 1b1dcc1b57a49136f118a0f16367256ff9994a69 (diff) |
[PATCH] mutex subsystem, semaphore to mutex: VFS, sb->s_lock
This patch converts the superblock-lock semaphore to a mutex, affecting
lock_super()/unlock_super(). Tested on ext3 and XFS.
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'fs/ocfs2/super.c')
-rw-r--r-- | fs/ocfs2/super.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ocfs2/super.c b/fs/ocfs2/super.c index 48bf7f0ce544..364d64bd5f10 100644 --- a/fs/ocfs2/super.c +++ b/fs/ocfs2/super.c | |||
@@ -169,7 +169,7 @@ static match_table_t tokens = { | |||
169 | */ | 169 | */ |
170 | static void ocfs2_write_super(struct super_block *sb) | 170 | static void ocfs2_write_super(struct super_block *sb) |
171 | { | 171 | { |
172 | if (down_trylock(&sb->s_lock) == 0) | 172 | if (mutex_trylock(&sb->s_lock) != 0) |
173 | BUG(); | 173 | BUG(); |
174 | sb->s_dirt = 0; | 174 | sb->s_dirt = 0; |
175 | } | 175 | } |