diff options
author | Jan Kara <jack@suse.cz> | 2009-01-26 19:20:46 +0300 |
---|---|---|
committer | Jan Kara <jack@suse.cz> | 2009-03-26 04:18:36 +0300 |
commit | bacfb7c2e5d10f40f7adb23aeeffc824b839eaa8 (patch) | |
tree | 83f5f87bec2ed05d651765ac82085d4add52b7dc /fs/udf/ialloc.c | |
parent | 5f5fa796c6b0158b50a2d5d2f80a926466ea87b3 (diff) | |
download | linux-bacfb7c2e5d10f40f7adb23aeeffc824b839eaa8.tar.xz |
udf: 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>
Diffstat (limited to 'fs/udf/ialloc.c')
-rw-r--r-- | fs/udf/ialloc.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/fs/udf/ialloc.c b/fs/udf/ialloc.c index 31fc84297ddb..47dbe5613f90 100644 --- a/fs/udf/ialloc.c +++ b/fs/udf/ialloc.c @@ -36,8 +36,8 @@ void udf_free_inode(struct inode *inode) * Note: we must free any quota before locking the superblock, * as writing the quota to disk may need the lock as well. */ - DQUOT_FREE_INODE(inode); - DQUOT_DROP(inode); + vfs_dq_free_inode(inode); + vfs_dq_drop(inode); clear_inode(inode); @@ -154,8 +154,8 @@ struct inode *udf_new_inode(struct inode *dir, int mode, int *err) insert_inode_hash(inode); mark_inode_dirty(inode); - if (DQUOT_ALLOC_INODE(inode)) { - DQUOT_DROP(inode); + if (vfs_dq_alloc_inode(inode)) { + vfs_dq_drop(inode); inode->i_flags |= S_NOQUOTA; inode->i_nlink = 0; iput(inode); |