X-Git-Url: http://pilppa.org/gitweb/?a=blobdiff_plain;f=fs%2Freiserfs%2Fnamei.c;h=efd4d720718ec789bc32a98c7902e3e36d55983d;hb=e1c502482853f84606928f5a2f2eb6da1993cda1;hp=9d1070e741fc6366c9b36d2aa944016cc20c2261;hpb=ee93961be1faddf9e9a638bc519145c20f0cfeba;p=linux-2.6-omap-h63xx.git diff --git a/fs/reiserfs/namei.c b/fs/reiserfs/namei.c index 9d1070e741f..efd4d720718 100644 --- a/fs/reiserfs/namei.c +++ b/fs/reiserfs/namei.c @@ -552,7 +552,7 @@ static int reiserfs_add_entry(struct reiserfs_transaction_handle *th, */ static int drop_new_inode(struct inode *inode) { - DQUOT_DROP(inode); + vfs_dq_drop(inode); make_bad_inode(inode); inode->i_flags |= S_NOQUOTA; iput(inode); @@ -560,7 +560,7 @@ static int drop_new_inode(struct inode *inode) } /* utility function that does setup for reiserfs_new_inode. -** DQUOT_INIT needs lots of credits so it's better to have it +** vfs_dq_init needs lots of credits so it's better to have it ** outside of a transaction, so we had to pull some bits of ** reiserfs_new_inode out into this func. */ @@ -583,7 +583,7 @@ static int new_inode_init(struct inode *inode, struct inode *dir, int mode) } else { inode->i_gid = current_fsgid(); } - DQUOT_INIT(inode); + vfs_dq_init(inode); return 0; }