jfs: 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: Dave Kleikamp <shaggy@austin.ibm.com>
This commit is contained in:
Jan Kara
2009-01-26 17:22:32 +01:00
parent bacfb7c2e5
commit c94d2a22f2
8 changed files with 36 additions and 36 deletions

View File

@@ -233,7 +233,7 @@ int jfs_setattr(struct dentry *dentry, struct iattr *iattr)
if ((iattr->ia_valid & ATTR_UID && iattr->ia_uid != inode->i_uid) ||
(iattr->ia_valid & ATTR_GID && iattr->ia_gid != inode->i_gid)) {
if (DQUOT_TRANSFER(inode, iattr))
if (vfs_dq_transfer(inode, iattr))
return -EDQUOT;
}