aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ext3/super.c
diff options
context:
space:
mode:
authorJan Kara <jack@suse.cz>2009-01-26 10:58:01 -0500
committerJan Kara <jack@suse.cz>2009-03-25 21:18:36 -0400
commit81a052273998f94b098945c4c313e05246956eb2 (patch)
treec199d71543863ecd8bb45a9ef28b09a2340485ac /fs/ext3/super.c
parent6f90bee5062a8af24d8aa5c47182d15aa28a0f17 (diff)
ext3: Use lowercase names of quota functions
Use lowercase names of quota functions instead of old uppercase ones. Signed-off-by: Jan Kara <jack@suse.cz> CC: linux-ext4@vger.kernel.org
Diffstat (limited to 'fs/ext3/super.c')
-rw-r--r--fs/ext3/super.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/ext3/super.c b/fs/ext3/super.c
index 41e6ae605e0b..9e5b8e387e1e 100644
--- a/fs/ext3/super.c
+++ b/fs/ext3/super.c
@@ -1436,7 +1436,7 @@ static void ext3_orphan_cleanup (struct super_block * sb,
1436 } 1436 }
1437 1437
1438 list_add(&EXT3_I(inode)->i_orphan, &EXT3_SB(sb)->s_orphan); 1438 list_add(&EXT3_I(inode)->i_orphan, &EXT3_SB(sb)->s_orphan);
1439 DQUOT_INIT(inode); 1439 vfs_dq_init(inode);
1440 if (inode->i_nlink) { 1440 if (inode->i_nlink) {
1441 printk(KERN_DEBUG 1441 printk(KERN_DEBUG
1442 "%s: truncating inode %lu to %Ld bytes\n", 1442 "%s: truncating inode %lu to %Ld bytes\n",
@@ -2700,7 +2700,7 @@ static int ext3_statfs (struct dentry * dentry, struct kstatfs * buf)
2700 * Process 1 Process 2 2700 * Process 1 Process 2
2701 * ext3_create() quota_sync() 2701 * ext3_create() quota_sync()
2702 * journal_start() write_dquot() 2702 * journal_start() write_dquot()
2703 * DQUOT_INIT() down(dqio_mutex) 2703 * vfs_dq_init() down(dqio_mutex)
2704 * down(dqio_mutex) journal_start() 2704 * down(dqio_mutex) journal_start()
2705 * 2705 *
2706 */ 2706 */