* [PATCH] Btrfs-progs: let btrfs-image actually work on a balanced fs
@ 2014-09-25 20:46 Josef Bacik
2014-09-25 21:44 ` Zach Brown
0 siblings, 1 reply; 3+ messages in thread
From: Josef Bacik @ 2014-09-25 20:46 UTC (permalink / raw)
To: linux-btrfs
We use the read extent buffer infrastructure to read the super block when we are
creating a btrfs-image. This works out fine most of the time except when the fs
has been balanced, then it fails to map the super block. So we could fix
btrfs-image to read in the super in a special way, but thats more code. So
instead just check in the eb reading code if we are reading the super and then
don't bother mapping the block, just read the actual offset. This fixed some
poor guy who was trying to btrfs-image his fs that had been balanced. Thanks,
Signed-off-by: Josef Bacik <jbacik@fb.com>
---
btrfs-image.c | 5 ++++-
disk-io.c | 3 ++-
2 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/btrfs-image.c b/btrfs-image.c
index cb17f16..6643ad1 100644
--- a/btrfs-image.c
+++ b/btrfs-image.c
@@ -1020,6 +1020,9 @@ static int copy_tree_blocks(struct btrfs_root *root, struct extent_buffer *eb,
int i = 0;
int ret;
+ if (btrfs_header_bytenr(eb) == 65536)
+ printf("We have bytenr 65536, belongs to %llu, level %d\n",
+ btrfs_header_owner(eb), btrfs_header_level(eb));
ret = add_extent(btrfs_header_bytenr(eb), root->leafsize, metadump, 0);
if (ret) {
fprintf(stderr, "Error adding metadata block\n");
@@ -1279,7 +1282,7 @@ static int create_metadump(const char *input, FILE *out, int num_threads,
}
ret = add_extent(BTRFS_SUPER_INFO_OFFSET, BTRFS_SUPER_INFO_SIZE,
- &metadump, 0);
+ &metadump, 1);
if (ret) {
fprintf(stderr, "Error adding metadata %d\n", ret);
err = ret;
diff --git a/disk-io.c b/disk-io.c
index 26a532e..34c0a97 100644
--- a/disk-io.c
+++ b/disk-io.c
@@ -201,7 +201,8 @@ int read_whole_eb(struct btrfs_fs_info *info, struct extent_buffer *eb, int mirr
read_len = bytes_left;
device = NULL;
- if (!info->on_restoring) {
+ if (!info->on_restoring &&
+ eb->start != BTRFS_SUPER_INFO_OFFSET) {
ret = btrfs_map_block(&info->mapping_tree, READ,
eb->start + offset, &read_len, &multi,
mirror, NULL);
--
1.9.3
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] Btrfs-progs: let btrfs-image actually work on a balanced fs
2014-09-25 20:46 [PATCH] Btrfs-progs: let btrfs-image actually work on a balanced fs Josef Bacik
@ 2014-09-25 21:44 ` Zach Brown
2014-09-26 13:00 ` Josef Bacik
0 siblings, 1 reply; 3+ messages in thread
From: Zach Brown @ 2014-09-25 21:44 UTC (permalink / raw)
To: Josef Bacik; +Cc: linux-btrfs
> --- a/btrfs-image.c
> +++ b/btrfs-image.c
> @@ -1020,6 +1020,9 @@ static int copy_tree_blocks(struct btrfs_root *root, struct extent_buffer *eb,
> int i = 0;
> int ret;
>
> + if (btrfs_header_bytenr(eb) == 65536)
> + printf("We have bytenr 65536, belongs to %llu, level %d\n",
> + btrfs_header_owner(eb), btrfs_header_level(eb));
> ret = add_extent(btrfs_header_bytenr(eb), root->leafsize, metadump, 0);
> if (ret) {
> fprintf(stderr, "Error adding metadata block\n");
Did you mean to leave that in? The raw super offset sure makes it look
like debugging output.
- z
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] Btrfs-progs: let btrfs-image actually work on a balanced fs
2014-09-25 21:44 ` Zach Brown
@ 2014-09-26 13:00 ` Josef Bacik
0 siblings, 0 replies; 3+ messages in thread
From: Josef Bacik @ 2014-09-26 13:00 UTC (permalink / raw)
To: Zach Brown; +Cc: linux-btrfs
On 09/25/2014 05:44 PM, Zach Brown wrote:
>> --- a/btrfs-image.c
>> +++ b/btrfs-image.c
>> @@ -1020,6 +1020,9 @@ static int copy_tree_blocks(struct btrfs_root *root, struct extent_buffer *eb,
>> int i = 0;
>> int ret;
>>
>> + if (btrfs_header_bytenr(eb) == 65536)
>> + printf("We have bytenr 65536, belongs to %llu, level %d\n",
>> + btrfs_header_owner(eb), btrfs_header_level(eb));
>> ret = add_extent(btrfs_header_bytenr(eb), root->leafsize, metadump, 0);
>> if (ret) {
>> fprintf(stderr, "Error adding metadata block\n");
>
> Did you mean to leave that in? The raw super offset sure makes it look
> like debugging output.
>
Sigh sorry, thought I culled everything. Thanks,
Josef
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2014-09-26 13:00 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-09-25 20:46 [PATCH] Btrfs-progs: let btrfs-image actually work on a balanced fs Josef Bacik
2014-09-25 21:44 ` Zach Brown
2014-09-26 13:00 ` Josef Bacik
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).