Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / fs / ufs / ialloc.c
index 6f5dcf0060960c9999397fe64820a8db86c31c6d..3527c00fef0d7ebfc8a3df39a96618073ff6d883 100644 (file)
@@ -95,8 +95,8 @@ void ufs_free_inode (struct inode * inode)
 
        is_directory = S_ISDIR(inode->i_mode);
 
-       DQUOT_FREE_INODE(inode);
-       DQUOT_DROP(inode);
+       vfs_dq_free_inode(inode);
+       vfs_dq_drop(inode);
 
        clear_inode (inode);
 
@@ -355,8 +355,8 @@ cg_found:
 
        unlock_super (sb);
 
-       if (DQUOT_ALLOC_INODE(inode)) {
-               DQUOT_DROP(inode);
+       if (vfs_dq_alloc_inode(inode)) {
+               vfs_dq_drop(inode);
                err = -EDQUOT;
                goto fail_without_unlock;
        }