diff options
author | Miao Xie <miaox@cn.fujitsu.com> | 2010-02-11 08:06:58 +0000 |
---|---|---|
committer | Chris Mason <chris.mason@oracle.com> | 2010-03-15 11:00:11 -0400 |
commit | 0be2e98173f8badd5ccc7c2e994891746ba1caf4 (patch) | |
tree | 97a8faa272d05e543ac8b26b0a4c6705ababb0c6 /fs | |
parent | 0bdb1db297ab36865a63ee722d35ff0a1f0ae522 (diff) | |
download | linux-0be2e98173f8badd5ccc7c2e994891746ba1caf4.tar.bz2 |
btrfs: fix btrfs_mkdir goto for no free objectids
btrfs_mkdir() must jump to the place of ending transaction after
btrfs_find_free_objectid() failed. Or this transaction can't end.
Signed-off-by: Miao Xie <miaox@cn.fujitsu.com>
Signed-off-by: Chris Mason <chris.mason@oracle.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/btrfs/inode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/inode.c b/fs/btrfs/inode.c index 3657925c2461..50ce8840a99b 100644 --- a/fs/btrfs/inode.c +++ b/fs/btrfs/inode.c @@ -4508,7 +4508,7 @@ static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, int mode) err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid); if (err) { err = -ENOSPC; - goto out_unlock; + goto out_fail; } inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name, |