aboutsummaryrefslogtreecommitdiffstats
path: root/fs/btrfs/relocation.c
diff options
context:
space:
mode:
authorWang Shilong <wangsl.fnst@cn.fujitsu.com>2013-10-25 18:52:08 +0800
committerChris Mason <chris.mason@fusionio.com>2013-11-11 22:10:06 -0500
commit7fdf4b608dda5eea114cb23623b52e34dd5972f5 (patch)
treed5dbc02640451dc42d2340acc8650afc39bac5ca /fs/btrfs/relocation.c
parentBtrfs: fix the free space write out failure when there is no data space (diff)
downloadlinux-dev-7fdf4b608dda5eea114cb23623b52e34dd5972f5.tar.xz
linux-dev-7fdf4b608dda5eea114cb23623b52e34dd5972f5.zip
Btrfs: use 'u64' rather than 'int' to get extent's generation
We define a 'int' to get extent's generation by mistake,fix it. Signed-off-by: Wang Shilong <wangsl.fnst@cn.fujitsu.com> Signed-off-by: Josef Bacik <jbacik@fusionio.com> Signed-off-by: Chris Mason <chris.mason@fusionio.com>
Diffstat (limited to 'fs/btrfs/relocation.c')
-rw-r--r--fs/btrfs/relocation.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/relocation.c b/fs/btrfs/relocation.c
index 92eb4832ff86..a5f6a8061b21 100644
--- a/fs/btrfs/relocation.c
+++ b/fs/btrfs/relocation.c
@@ -3263,7 +3263,7 @@ static int add_tree_block(struct reloc_control *rc,
struct rb_node *rb_node;
u32 item_size;
int level = -1;
- int generation;
+ u64 generation;
eb = path->nodes[0];
item_size = btrfs_item_size_nr(eb, path->slots[0]);