diff options
Diffstat (limited to 'fs/ext3/ialloc.c')
| -rw-r--r-- | fs/ext3/ialloc.c | 10 | 
1 files changed, 5 insertions, 5 deletions
diff --git a/fs/ext3/ialloc.c b/fs/ext3/ialloc.c index b3999128513..8bf00e997c3 100644 --- a/fs/ext3/ialloc.c +++ b/fs/ext3/ialloc.c @@ -125,7 +125,7 @@ void ext3_free_inode (handle_t *handle, struct inode * inode)  	 */  	vfs_dq_init(inode);  	ext3_xattr_delete_inode(handle, inode); -	vfs_dq_free_inode(inode); +	dquot_free_inode(inode);  	vfs_dq_drop(inode);  	is_directory = S_ISDIR(inode->i_mode); @@ -588,10 +588,10 @@ got:  		sizeof(struct ext3_inode) - EXT3_GOOD_OLD_INODE_SIZE : 0;  	ret = inode; -	if (vfs_dq_alloc_inode(inode)) { -		err = -EDQUOT; +	vfs_dq_init(inode); +	err = dquot_alloc_inode(inode); +	if (err)  		goto fail_drop; -	}  	err = ext3_init_acl(handle, inode, dir);  	if (err) @@ -619,7 +619,7 @@ really_out:  	return ret;  fail_free_drop: -	vfs_dq_free_inode(inode); +	dquot_free_inode(inode);  fail_drop:  	vfs_dq_drop(inode);  |