summaryrefslogtreecommitdiff
path: root/fs/ext4/mballoc.c
diff options
context:
space:
mode:
authorJan Kara <jack@suse.cz>2009-01-26 17:04:39 +0100
committerJan Kara <jack@suse.cz>2009-03-26 02:18:36 +0100
commita269eb18294d35874c53311acc2cd0b5ef477ce5 (patch)
tree4da256ba45385688bd7f1e8b638ce76f884c8313 /fs/ext4/mballoc.c
parent81a052273998f94b098945c4c313e05246956eb2 (diff)
downloadlinux-3.10-a269eb18294d35874c53311acc2cd0b5ef477ce5.tar.gz
linux-3.10-a269eb18294d35874c53311acc2cd0b5ef477ce5.tar.bz2
linux-3.10-a269eb18294d35874c53311acc2cd0b5ef477ce5.zip
ext4: 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> Acked-by: Mingming Cao <cmm@us.ibm.com> CC: linux-ext4@vger.kernel.org
Diffstat (limited to 'fs/ext4/mballoc.c')
-rw-r--r--fs/ext4/mballoc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/ext4/mballoc.c b/fs/ext4/mballoc.c
index 4de42090c41..b038188bd03 100644
--- a/fs/ext4/mballoc.c
+++ b/fs/ext4/mballoc.c
@@ -4587,7 +4587,7 @@ ext4_fsblk_t ext4_mb_new_blocks(handle_t *handle,
return 0;
}
reserv_blks = ar->len;
- while (ar->len && DQUOT_ALLOC_BLOCK(ar->inode, ar->len)) {
+ while (ar->len && vfs_dq_alloc_block(ar->inode, ar->len)) {
ar->flags |= EXT4_MB_HINT_NOPREALLOC;
ar->len--;
}
@@ -4663,7 +4663,7 @@ out2:
kmem_cache_free(ext4_ac_cachep, ac);
out1:
if (inquota && ar->len < inquota)
- DQUOT_FREE_BLOCK(ar->inode, inquota - ar->len);
+ vfs_dq_free_block(ar->inode, inquota - ar->len);
out3:
if (!ar->len) {
if (!EXT4_I(ar->inode)->i_delalloc_reserved_flag)