On Sun, Apr 10, 2011 at 10:06:06PM +0100, Hugo Mills wrote:
> diff --git a/fs/btrfs/volumes.c b/fs/btrfs/volumes.c
> index cf019af..20c2772 100644
> --- a/fs/btrfs/volumes.c
> +++ b/fs/btrfs/volumes.c
> @@ -2029,6 +2029,97 @@ static u64 div_factor(u64 num, int factor)
> +static void balance_move_chunks(struct btrfs_root *chunk_root,
> + struct btrfs_balance_info *bal_info,
> + struct btrfs_path *path,
> + struct btrfs_key *key)
> +{
> + int ret;
> +
> + ret = btrfs_relocate_chunk(chunk_root,
> + chunk_root->root_key.objectid,
> + key->objectid,
> + key->offset);
> + BUG_ON(ret && ret != -ENOSPC);
> + spin_lock(&chunk_root->fs_info->balance_info_lock);
> + bal_info->completed++;
> + spin_unlock(&chunk_root->fs_info->balance_info_lock);
> + printk(KERN_INFO "btrfs: balance: %llu/%llu block groups completed\n",
> + bal_info->completed, bal_info->expected);
as you've changed 'completed' and 'expected' members to 32bit, change
%llu to %u.
d/
--
To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html