diff options
author | Miao Xie <miaox@cn.fujitsu.com> | 2010-02-11 03:06:58 -0500 |
---|---|---|
committer | Chris Mason <chris.mason@oracle.com> | 2010-03-15 11:00:11 -0400 |
commit | 0be2e98173f8badd5ccc7c2e994891746ba1caf4 (patch) | |
tree | 97a8faa272d05e543ac8b26b0a4c6705ababb0c6 /fs/btrfs | |
parent | 0bdb1db297ab36865a63ee722d35ff0a1f0ae522 (diff) |
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/btrfs')
-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) | |||
4508 | err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid); | 4508 | err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid); |
4509 | if (err) { | 4509 | if (err) { |
4510 | err = -ENOSPC; | 4510 | err = -ENOSPC; |
4511 | goto out_unlock; | 4511 | goto out_fail; |
4512 | } | 4512 | } |
4513 | 4513 | ||
4514 | inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name, | 4514 | inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name, |