diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2011-06-20 08:58:53 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-06-20 08:58:53 -0700 |
commit | 90a800de0a29426ea900ecd53f2929d5f4bc4578 (patch) | |
tree | 22b4ec6119e438c73d695522042669b601672579 /fs/btrfs/inode.c | |
parent | 10e18e62309a882c513b4f516527055b6a60d668 (diff) | |
parent | e999376f094162aa425ae749aa1df95ab928d010 (diff) | |
download | kernel_goldelico_gta04-90a800de0a29426ea900ecd53f2929d5f4bc4578.zip kernel_goldelico_gta04-90a800de0a29426ea900ecd53f2929d5f4bc4578.tar.gz kernel_goldelico_gta04-90a800de0a29426ea900ecd53f2929d5f4bc4578.tar.bz2 |
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mason/btrfs-unstable
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mason/btrfs-unstable:
Btrfs: avoid delayed metadata items during commits
btrfs: fix uninitialized return value
btrfs: fix wrong reservation when doing delayed inode operations
btrfs: Remove unused sysfs code
btrfs: fix dereference of ERR_PTR value
Btrfs: fix relocation races
Btrfs: set no_trans_join after trying to expand the transaction
Btrfs: protect the pending_snapshots list with trans_lock
Btrfs: fix path leakage on subvol deletion
Btrfs: drop the delalloc_bytes check in shrink_delalloc
Btrfs: check the return value from set_anon_super
Diffstat (limited to 'fs/btrfs/inode.c')
-rw-r--r-- | fs/btrfs/inode.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/btrfs/inode.c b/fs/btrfs/inode.c index 751ddf8..0a9b10c 100644 --- a/fs/btrfs/inode.c +++ b/fs/btrfs/inode.c @@ -3076,6 +3076,7 @@ int btrfs_unlink_subvol(struct btrfs_trans_handle *trans, ret = btrfs_update_inode(trans, root, dir); BUG_ON(ret); + btrfs_free_path(path); return 0; } |