diff options
author | Jan Kara <jack@suse.cz> | 2005-07-27 22:43:40 +0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-07-28 03:25:50 +0400 |
commit | ab6862e6dab813ecde9ae7da506188dc1e9f11bb (patch) | |
tree | 3b8dfa48fdb1f7678e9a973efffeefc982a2fa92 /fs | |
parent | c7e9a52ef0089492bba457dfb8eba1a54e19f24a (diff) | |
download | linux-ab6862e6dab813ecde9ae7da506188dc1e9f11bb.tar.xz |
[PATCH] ext3: drop quota references 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>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/ext3/ialloc.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/ext3/ialloc.c b/fs/ext3/ialloc.c index 1e6f3ea28713..6981bd014ede 100644 --- a/fs/ext3/ialloc.c +++ b/fs/ext3/ialloc.c @@ -604,12 +604,14 @@ got: err = ext3_init_acl(handle, inode, dir); if (err) { DQUOT_FREE_INODE(inode); + DQUOT_DROP(inode); goto fail2; } err = ext3_mark_inode_dirty(handle, inode); if (err) { ext3_std_error(sb, err); DQUOT_FREE_INODE(inode); + DQUOT_DROP(inode); goto fail2; } |