diff options
author | Jan Kara <jack@suse.cz> | 2009-01-26 16:45:12 +0100 |
---|---|---|
committer | Jan Kara <jack@suse.cz> | 2009-03-26 02:18:35 +0100 |
commit | 9e3509e273ecc2a5f937c493f9bb71e5e41ac2e5 (patch) | |
tree | a7d9704e891f14b7196a275543b7f9c90f348b82 /fs/attr.c | |
parent | d26ac1a8128f6e1fc467f145acaa9f9bf9e16b75 (diff) |
vfs: 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: Alexander Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/attr.c')
-rw-r--r-- | fs/attr.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/attr.c b/fs/attr.c index f4360192a938..9fe1b1bd30a8 100644 --- a/fs/attr.c +++ b/fs/attr.c @@ -173,7 +173,8 @@ int notify_change(struct dentry * dentry, struct iattr * attr) if (!error) { if ((ia_valid & ATTR_UID && attr->ia_uid != inode->i_uid) || (ia_valid & ATTR_GID && attr->ia_gid != inode->i_gid)) - error = DQUOT_TRANSFER(inode, attr) ? -EDQUOT : 0; + error = vfs_dq_transfer(inode, attr) ? + -EDQUOT : 0; if (!error) error = inode_setattr(inode, attr); } |