[PATCH] ext2: drop quota reference before releasing inode

We must drop references to quota structures before releasing the inode.

Signed-off-by: Jan Kara <jack@suse.cz>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
Jan Kara 2005-07-27 11:43:39 -07:00 committed by Linus Torvalds
parent b3bb8afd96
commit c7e9a52ef0

View file

@ -612,6 +612,7 @@ got:
err = ext2_init_acl(inode, dir); err = ext2_init_acl(inode, dir);
if (err) { if (err) {
DQUOT_FREE_INODE(inode); DQUOT_FREE_INODE(inode);
DQUOT_DROP(inode);
goto fail2; goto fail2;
} }
mark_inode_dirty(inode); mark_inode_dirty(inode);