diff options
author | Ingo Molnar <mingo@elte.hu> | 2006-03-23 03:00:29 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-23 07:38:11 -0800 |
commit | d3be915fc5e7d19a2283ad9b0fe0782a74675d0a (patch) | |
tree | e03647affdee4e72dbff4a5da55bcf32bfa65901 /fs/ext3/super.c | |
parent | c039e3134ae62863bbc8e8429b29e3c43cf21b2a (diff) | |
download | op-kernel-dev-d3be915fc5e7d19a2283ad9b0fe0782a74675d0a.zip op-kernel-dev-d3be915fc5e7d19a2283ad9b0fe0782a74675d0a.tar.gz |
[PATCH] sem2mutex: quota
Semaphore to mutex conversion.
The conversion was generated via scripts, and the result was validated
automatically via a script as well.
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Cc: Jan Kara <jack@ucw.cz>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs/ext3/super.c')
-rw-r--r-- | fs/ext3/super.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/ext3/super.c b/fs/ext3/super.c index 56bf765..efa8320 100644 --- a/fs/ext3/super.c +++ b/fs/ext3/super.c @@ -2382,8 +2382,8 @@ static int ext3_statfs (struct super_block * sb, struct kstatfs * buf) * Process 1 Process 2 * ext3_create() quota_sync() * journal_start() write_dquot() - * DQUOT_INIT() down(dqio_sem) - * down(dqio_sem) journal_start() + * DQUOT_INIT() down(dqio_mutex) + * down(dqio_mutex) journal_start() * */ |