diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2011-06-27 16:32:14 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-06-27 16:32:14 -0400 |
commit | af4087e0e682df12bdffec5cfafc2fec9208716e (patch) | |
tree | 564622df71c8b5666be24cbfd93f58516791d180 /fs/btrfs/extent-tree.c | |
parent | 4699d4423c07a1db35ea9453eac3a07e818338f9 (diff) | |
parent | 2f7e33d432d097a2a7f467b031bf18be91cb3d49 (diff) |
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: fix inconsonant inode information
Btrfs: make sure to update total_bitmaps when freeing cache V3
Btrfs: fix type mismatch in find_free_extent()
Btrfs: make sure to record the transid in new inodes
Diffstat (limited to 'fs/btrfs/extent-tree.c')
-rw-r--r-- | fs/btrfs/extent-tree.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/btrfs/extent-tree.c b/fs/btrfs/extent-tree.c index 1f61bf5b4960..71cd456fdb60 100644 --- a/fs/btrfs/extent-tree.c +++ b/fs/btrfs/extent-tree.c | |||
@@ -4842,7 +4842,7 @@ static noinline int find_free_extent(struct btrfs_trans_handle *trans, | |||
4842 | u64 num_bytes, u64 empty_size, | 4842 | u64 num_bytes, u64 empty_size, |
4843 | u64 search_start, u64 search_end, | 4843 | u64 search_start, u64 search_end, |
4844 | u64 hint_byte, struct btrfs_key *ins, | 4844 | u64 hint_byte, struct btrfs_key *ins, |
4845 | int data) | 4845 | u64 data) |
4846 | { | 4846 | { |
4847 | int ret = 0; | 4847 | int ret = 0; |
4848 | struct btrfs_root *root = orig_root->fs_info->extent_root; | 4848 | struct btrfs_root *root = orig_root->fs_info->extent_root; |
@@ -4869,7 +4869,7 @@ static noinline int find_free_extent(struct btrfs_trans_handle *trans, | |||
4869 | 4869 | ||
4870 | space_info = __find_space_info(root->fs_info, data); | 4870 | space_info = __find_space_info(root->fs_info, data); |
4871 | if (!space_info) { | 4871 | if (!space_info) { |
4872 | printk(KERN_ERR "No space info for %d\n", data); | 4872 | printk(KERN_ERR "No space info for %llu\n", data); |
4873 | return -ENOSPC; | 4873 | return -ENOSPC; |
4874 | } | 4874 | } |
4875 | 4875 | ||