summaryrefslogtreecommitdiffstats
path: root/fs/ext3/super.c
diff options
context:
space:
mode:
authorIngo Molnar2006-01-10 00:59:25 +0100
committerIngo Molnar2006-01-10 00:59:25 +0100
commit7892f2f48d165a34b0b8130c8a195dfd807b8cb6 (patch)
tree592b29350c168aa5758700820ab22fb56e72a567 /fs/ext3/super.c
parent[PATCH] mutex subsystem, semaphore to mutex: VFS, ->i_sem (diff)
downloadkernel-qcow2-linux-7892f2f48d165a34b0b8130c8a195dfd807b8cb6.tar.gz
kernel-qcow2-linux-7892f2f48d165a34b0b8130c8a195dfd807b8cb6.tar.xz
kernel-qcow2-linux-7892f2f48d165a34b0b8130c8a195dfd807b8cb6.zip
[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/ext3/super.c')
-rw-r--r--fs/ext3/super.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext3/super.c b/fs/ext3/super.c
index c3dbebdb9897..56bf76586019 100644
--- a/fs/ext3/super.c
+++ b/fs/ext3/super.c
@@ -2150,7 +2150,7 @@ int ext3_force_commit(struct super_block *sb)
static void ext3_write_super (struct super_block * sb)
{
- if (down_trylock(&sb->s_lock) == 0)
+ if (mutex_trylock(&sb->s_lock) != 0)
BUG();
sb->s_dirt = 0;
}