All of lore.kernel.org
 help / color / mirror / Atom feed
* Scrub reports uncorrectable errors with correctable errors unrepaired, but all files are fine
@ 2024-01-09 18:06 Rongrong
  2024-01-09 21:19 ` Qu Wenruo
  0 siblings, 1 reply; 14+ messages in thread
From: Rongrong @ 2024-01-09 18:06 UTC (permalink / raw)
  To: linux-btrfs

Hi all,

I recently scrubbed my fs and saw multiple correctable and
uncorrectable errors. Weirdly, the correctable errors did not really
get repaired ("fixed up") after the scrub was finished. It just
persisted and reappeared in the next scrub. But surprisingly, when I
tried to archive all files using `rsync -aAHUXxvP /path/to/mountpoint
/path/to/archive` (the fs has no subvolume other than <FS_TREE>), no
error was raised (both rsync and dmesg) and all files were fine. Both
`btrfs check` and `btrfs check --check-data-csum` also finished without
error.

I tried many kernel versions, including 6.5.13, 6.6.10 and 6.7-rc8.
btrfs-progs is 6.6.3. The fs is mounted with the below parameters:
autodefrag,compress-force=zstd,relatime

Each time a scrub gets finished, the error summary is the same:

Error summary: read=416
Corrected: 168
Uncorrectable: 248
Unverified: 0

Only two types of errors were shown in dmesg:

BTRFS critical (device [D]): unable to find chunk map for logical
[LoUc] length [LeUc]
BTRFS error (device [D]): fixed up error at logical [LoC] on dev
/dev/[D] physical [PhC]
(all [PhC] just equaled to the corresponding [LoC])

I randomly picked some addresses and did some research:

# btrfs inspect-internal inode-resolve [LoUc] /path/to/mountpoint
ERROR: ino paths ioctl: No such file or directory
# btrfs inspect-internal logical-resolve [LoUc] /path/to/mountpoint
ERROR: ino paths ioctl: No such file or directory
# btrfs inspect-internal dump-tree -b [LoUc] /dev/[D]
btrfs-progs v6.6.3
Invalid mapping for [LoUc]-[LoUc+16384], got [Lo1]-[Lo2]
Couldn't map the block [LoUc]
ERROR: failed to read tree block [LoUc]
# btrfs inspect-internal inode-resolve [LoC] /path/to/mountpoint
ERROR: ino paths ioctl: No such file or directory
# btrfs inspect-internal logical-resolve [LoC] /path/to/mountpoint
/path/to/file
# btrfs inspect-internal dump-tree -b [LoC] /dev/[D]
btrfs-progs v6.6.3
checksum verify failed on [LoC] wanted [csum1] found [csum2]
ERROR: failed to read tree block [LoC]

I checked the commit log of fs/btrfs/scrub.c, and tried scrub on
6.3.12. The scrub finished without error. I assume this is intended as
0096580713ffc061a579bd8be0661120079e3beb was simply not back-ported.

I guess the root cause of the issue is that one of the DUP metadata
copies was somehow corrupted. Am I right?
I am to confirm:
1. is this behavior (false "fixed up") of scrub intended?
2. why btrfs check finished without error under such a circumstance?
3. since all files were fine and btrfs check finished without error,
should these "uncorrectable" errors be actually correctable?

I have a full dump of the disk. As long as needed, I can provide
further debug assistance and more information about the fs.

Thanks,
Rongrong

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: Scrub reports uncorrectable errors with correctable errors unrepaired, but all files are fine
  2024-01-09 18:06 Scrub reports uncorrectable errors with correctable errors unrepaired, but all files are fine Rongrong
@ 2024-01-09 21:19 ` Qu Wenruo
  2024-01-10  9:12   ` Rongrong
  0 siblings, 1 reply; 14+ messages in thread
From: Qu Wenruo @ 2024-01-09 21:19 UTC (permalink / raw)
  To: Rongrong, linux-btrfs



On 2024/1/10 04:36, Rongrong wrote:
> Hi all,
>
> I recently scrubbed my fs and saw multiple correctable and
> uncorrectable errors. Weirdly, the correctable errors did not really
> get repaired ("fixed up") after the scrub was finished. It just
> persisted and reappeared in the next scrub. But surprisingly, when I
> tried to archive all files using `rsync -aAHUXxvP /path/to/mountpoint
> /path/to/archive` (the fs has no subvolume other than <FS_TREE>), no
> error was raised (both rsync and dmesg) and all files were fine. Both
> `btrfs check` and `btrfs check --check-data-csum` also finished without
> error.
>
> I tried many kernel versions, including 6.5.13, 6.6.10 and 6.7-rc8.
> btrfs-progs is 6.6.3. The fs is mounted with the below parameters:
> autodefrag,compress-force=zstd,relatime
>
> Each time a scrub gets finished, the error summary is the same:
>
> Error summary: read=416
> Corrected: 168
> Uncorrectable: 248
> Unverified: 0
>
> Only two types of errors were shown in dmesg:
>
> BTRFS critical (device [D]): unable to find chunk map for logical
> [LoUc] length [LeUc]
> BTRFS error (device [D]): fixed up error at logical [LoC] on dev
> /dev/[D] physical [PhC]
> (all [PhC] just equaled to the corresponding [LoC])
>
> I randomly picked some addresses and did some research:
>
> # btrfs inspect-internal inode-resolve [LoUc] /path/to/mountpoint
> ERROR: ino paths ioctl: No such file or directory
> # btrfs inspect-internal logical-resolve [LoUc] /path/to/mountpoint
> ERROR: ino paths ioctl: No such file or directory
> # btrfs inspect-internal dump-tree -b [LoUc] /dev/[D]
> btrfs-progs v6.6.3
> Invalid mapping for [LoUc]-[LoUc+16384], got [Lo1]-[Lo2]
> Couldn't map the block [LoUc]
> ERROR: failed to read tree block [LoUc]
> # btrfs inspect-internal inode-resolve [LoC] /path/to/mountpoint
> ERROR: ino paths ioctl: No such file or directory
> # btrfs inspect-internal logical-resolve [LoC] /path/to/mountpoint
> /path/to/file
> # btrfs inspect-internal dump-tree -b [LoC] /dev/[D]
> btrfs-progs v6.6.3
> checksum verify failed on [LoC] wanted [csum1] found [csum2]
> ERROR: failed to read tree block [LoC]
>
> I checked the commit log of fs/btrfs/scrub.c, and tried scrub on
> 6.3.12. The scrub finished without error. I assume this is intended as
> 0096580713ffc061a579bd8be0661120079e3beb was simply not back-ported.

This should not be the case, that commit should only be included in
newer kernels with the reworked scrub, or it doesn't need to be
backported at all.

>
> I guess the root cause of the issue is that one of the DUP metadata
> copies was somehow corrupted. Am I right?

I don't think so, I think there may be some false alerts, either from
kernel scrub interface, or btrfs-progs.

> I am to confirm:
> 1. is this behavior (false "fixed up") of scrub intended?

Nope. Considering "btrfs check" and "btrfs check --check-data-csum" is
totally fine, this should be a bug related to scrub.

> 2. why btrfs check finished without error under such a circumstance?

Because that is probably the real case.

> 3. since all files were fine and btrfs check finished without error,
> should these "uncorrectable" errors be actually correctable?

I believe it's some bugs, either from scrub functionality of btrfs
kernel module, or btrfs-progs reporting.

Would you please try the following?

- A different btrfs-progs to do the same scrub
   To rule out some btrfs-progs regression.

- "btrfs scrub start -RD"
   This shows the raw data reported, including where the corruptions are
   (data/metadata, and scrubbed bytes etc).

- Do a readonly scrub on a readonly mounted btrfs
   Just to rule out any write-time races, which can help us to pin down
   the possible cause.

Thanks,
Qu

>
> I have a full dump of the disk. As long as needed, I can provide
> further debug assistance and more information about the fs.
>
> Thanks,
> Rongrong
>

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: Scrub reports uncorrectable errors with correctable errors unrepaired, but all files are fine
  2024-01-09 21:19 ` Qu Wenruo
@ 2024-01-10  9:12   ` Rongrong
  2024-01-10  9:40     ` Qu Wenruo
  0 siblings, 1 reply; 14+ messages in thread
From: Rongrong @ 2024-01-10  9:12 UTC (permalink / raw)
  To: Qu Wenruo, linux-btrfs

On Wed, 2024-01-10 at 07:49 +1030, Qu Wenruo wrote:
> 
> 
> On 2024/1/10 04:36, Rongrong wrote:
> > I guess the root cause of the issue is that one of the DUP metadata
> > copies was somehow corrupted. Am I right?
> 
> I don't think so, I think there may be some false alerts, either from
> kernel scrub interface, or btrfs-progs.

OK then. But I just wonder, if this is the case:
Why `btrfs inspect-internal logical-resolve [LoC]` returned a file
instead of ENOENT?
Why `btrfs inspect-internal dump-tree -b [LoC]` returned checksum
mismatch instead of invalid mapping?

> > I am to confirm:
> > 1. is this behavior (false "fixed up") of scrub intended?
> 
> Nope. Considering "btrfs check" and "btrfs check --check-data-csum"
> is
> totally fine, this should be a bug related to scrub.
> 
> > 2. why btrfs check finished without error under such a
> > circumstance?
> 
> Because that is probably the real case.
> 
> > 3. since all files were fine and btrfs check finished without
> > error,
> > should these "uncorrectable" errors be actually correctable?
> 
> I believe it's some bugs, either from scrub functionality of btrfs
> kernel module, or btrfs-progs reporting.
> 
> Would you please try the following?
> 
> - A different btrfs-progs to do the same scrub
>    To rule out some btrfs-progs regression.

`btrfs scrub start -RBd` with btrfs-progs v6.6.3 and v6.3.3, no
difference.

> - "btrfs scrub start -RD"
>    This shows the raw data reported, including where the corruptions
> are
>    (data/metadata, and scrubbed bytes etc).

Did you mean `btrfs scrub start -RBd`? If so:

Starting scrub on devid 1

Scrub device /dev/vdb (id 1) done
Scrub started:    Wed Jan 10 14:00:57 2024
Status:           finished
Duration:         0:35:50
        data_extents_scrubbed: 21561913
        tree_extents_scrubbed: 313438
        data_bytes_scrubbed: 1128612171776
        tree_bytes_scrubbed: 5135368192
        read_errors: 416
        csum_errors: 0
        verify_errors: 0
        no_csum: 0
        csum_discards: 0
        super_errors: 0
        malloc_errors: 0
        uncorrectable_errors: 248
        unverified_errors: 0
        corrected_errors: 168
        last_physical: 1994106359808
ERROR: there are uncorrectable errors

> - Do a readonly scrub on a readonly mounted btrfs
>    Just to rule out any write-time races, which can help us to pin
> down
>    the possible cause.

`btrfs scrub start -rRBd` on an ro mount with btrfs-progs v6.6.3, still
no difference.
In particular, I still saw "fixed up error" in dmesg.

> Thanks,
> Qu

I have more to say. There is actually another bug that can lead to
kernel oops. Due to the bug, these requested tests were done on a
patched kernel.
I considered it should be a different bug so I decided to firstly
discuss the case that scrub can successfully finish without oops in
this thread, and planned to write another detailed bug report in the
following days. Since I used a patched kernel to finish requested
tests, let me make a brief description in advance:

Oops usually occurred when the scrub progress is 1~30%.
Bisect shows the buggy commit is
ae76d8e3e1351aa1ba09cc68dab6866d356f2e17. Any version comes with the
commit or have the commit backported should be affected (in my tests,
6.5.4, 6.6.10, 6.7). 6.4.15 and 6.5.3 was fine in my tests.
The version of btrfs-progs was irrelevant.
Oops can be either (quite random):
- unable to handle page fault (not-present page)
- general protection fault, probably for non-canonical address
- Kernel BUG at __blk_rq_map_sg (block/blk-merge.c:584)
- (RK3399) Unable to handle kernel paging request at virtual address
It was reproducible on:
- Intel CPU (i7-7567U), host, intel_iommu=off, SATA HDD
- Intel CPU (i7-7567U), host, intel_iommu=on/off, loop (disk dump)
- Intel CPU (i7-13700H), host, intel_iommu=off, USB-SATA HDD
- Intel CPU (i7-7567U), KVM, virtio-scsi (disk dump)
- Intel CPU (i7-13700H), KVM, virtio-scsi (USB-SATA HDD)
- AMD Ryzen CPU (PRO 4750U), KVM, virtio-scsi (USB-SATA HDD)
- RK3399, host, USB-SATA HDD
It was not reproducible on:
- Intel CPU (i7-7567U/i7-13700H), intel_iommu=on, (USB-)SATA HDD
- AMD Ryzen CPU (PRO 4750U), host, amd_iommu=on/off, USB-SATA HDD

Removing the usage of blk_plug in submit_initial_group_read
dramatically made the oops disappear.

Again, I aims to discuss the case that scrub can successfully finish
without oops in this thread. But due to the above oops, to make it
easier (scrubbing on HDD is painfully slow), all the above tests was
done on "Intel CPU (i7-7567U), KVM, virtio-scsi (disk dump)", and Linux
v6.7 **with the below patch**. If you consider I'd better do the tests
without the patch, would you please tell your preferred test
environment?

(PS: if the above information is enough for you to fix the oops, please
tell me so that I don't need to make another bug report)

diff --git a/fs/btrfs/scrub.c b/fs/btrfs/scrub.c
index f62a408671cb..62695b9aee07 100644
--- a/fs/btrfs/scrub.c
+++ b/fs/btrfs/scrub.c
@@ -1768,14 +1768,11 @@ static void submit_initial_group_read(struct scrub_ctx *sctx,
 				      unsigned int first_slot,
 				      unsigned int nr_stripes)
 {
-	struct blk_plug plug;
-
 	ASSERT(first_slot < SCRUB_TOTAL_STRIPES);
 	ASSERT(first_slot + nr_stripes <= SCRUB_TOTAL_STRIPES);
 
 	scrub_throttle_dev_io(sctx, sctx->stripes[0].dev,
 			      btrfs_stripe_nr_to_offset(nr_stripes));
-	blk_start_plug(&plug);
 	for (int i = 0; i < nr_stripes; i++) {
 		struct scrub_stripe *stripe = &sctx->stripes[first_slot + i];
 
@@ -1783,7 +1780,6 @@ static void submit_initial_group_read(struct scrub_ctx *sctx,
 		ASSERT(test_bit(SCRUB_STRIPE_FLAG_INITIALIZED, &stripe->state));
 		scrub_submit_initial_read(sctx, stripe);
 	}
-	blk_finish_plug(&plug);
 }
 
 static int flush_scrub_stripes(struct scrub_ctx *sctx)



^ permalink raw reply related	[flat|nested] 14+ messages in thread

* Re: Scrub reports uncorrectable errors with correctable errors unrepaired, but all files are fine
  2024-01-10  9:12   ` Rongrong
@ 2024-01-10  9:40     ` Qu Wenruo
  2024-01-10 13:51       ` Zhang Rongrong
  0 siblings, 1 reply; 14+ messages in thread
From: Qu Wenruo @ 2024-01-10  9:40 UTC (permalink / raw)
  To: Rongrong, linux-btrfs



On 2024/1/10 19:42, Rongrong wrote:
> On Wed, 2024-01-10 at 07:49 +1030, Qu Wenruo wrote:
>>
>>
>> On 2024/1/10 04:36, Rongrong wrote:
>>> I guess the root cause of the issue is that one of the DUP metadata
>>> copies was somehow corrupted. Am I right?
>>
>> I don't think so, I think there may be some false alerts, either from
>> kernel scrub interface, or btrfs-progs.
>
> OK then. But I just wonder, if this is the case:
> Why `btrfs inspect-internal logical-resolve [LoC]` returned a file
> instead of ENOENT?

Then we're having very conflicting results.

"btrfs check --check-data-csum" is really the equivalent of scrub (just
offline), which will ensure EVERY copy is verified.

If "btrfs check --check-data-csum" shows no error, I can only came up
with one possibility.

- There is something missing csum and btrfs check doesn't report
   the problem in the first place

This doesn't looks that correct to me though, as we have test cases to
ensure btrfs check can detect extents without csum.

Can you provide the full dmesg/logical-resolve/btrfs-check result
without hiding the bytenrs?
That would help us to really clue all the problems.

Especially for dmesg, the full one (from boot to crash/report) is
appreciated.

> Why `btrfs inspect-internal dump-tree -b [LoC]` returned checksum
> mismatch instead of invalid mapping?

This is easy to answer, as long as the bytenr is inside a chunk,
dump-tree can read it, even if it may be a metadata chunk.

Thus it doesn't show much, given any aligned bytenr inside a chunk,
dump-tree would try to read it, e.g, we have such chunk layouts (an
empty btrfs):

	item 1 key (FIRST_CHUNK_TREE CHUNK_ITEM 13631488) itemoff 16105 itemsize 80
		length 8388608 owner 2 stripe_len 65536 type DATA|single
	item 2 key (FIRST_CHUNK_TREE CHUNK_ITEM 22020096) itemoff 15993
itemsize 112
		length 8388608 owner 2 stripe_len 65536 type SYSTEM|DUP
	item 3 key (FIRST_CHUNK_TREE CHUNK_ITEM 30408704) itemoff 15881
itemsize 112
		length 33554432 owner 2 stripe_len 65536 type METADATA|DUP

Then dump-tree can even try to read a tree block from a data chunk:

$ btrfs ins dump-tree -b 13631488 ~/test.img
btrfs-progs v6.6.3
checksum verify failed on 13631488 wanted 0x00000000 found 0xb6bde3e4
ERROR: failed to read tree block 13631488

>
>>> I am to confirm:
>>> 1. is this behavior (false "fixed up") of scrub intended?
>>
>> Nope. Considering "btrfs check" and "btrfs check --check-data-csum"
>> is
>> totally fine, this should be a bug related to scrub.
>>
>>> 2. why btrfs check finished without error under such a
>>> circumstance?
>>
>> Because that is probably the real case.
>>
>>> 3. since all files were fine and btrfs check finished without
>>> error,
>>> should these "uncorrectable" errors be actually correctable?
>>
>> I believe it's some bugs, either from scrub functionality of btrfs
>> kernel module, or btrfs-progs reporting.
>>
>> Would you please try the following?
>>
>> - A different btrfs-progs to do the same scrub
>>     To rule out some btrfs-progs regression.
>
> `btrfs scrub start -RBd` with btrfs-progs v6.6.3 and v6.3.3, no
> difference.
>
>> - "btrfs scrub start -RD"
>>     This shows the raw data reported, including where the corruptions
>> are
>>     (data/metadata, and scrubbed bytes etc).
>
> Did you mean `btrfs scrub start -RBd`? If so:
>
> Starting scrub on devid 1
>
> Scrub device /dev/vdb (id 1) done
> Scrub started:    Wed Jan 10 14:00:57 2024
> Status:           finished
> Duration:         0:35:50
>          data_extents_scrubbed: 21561913
>          tree_extents_scrubbed: 313438
>          data_bytes_scrubbed: 1128612171776
>          tree_bytes_scrubbed: 5135368192
>          read_errors: 416
>          csum_errors: 0
>          verify_errors: 0
>          no_csum: 0
>          csum_discards: 0
>          super_errors: 0
>          malloc_errors: 0
>          uncorrectable_errors: 248
>          unverified_errors: 0
>          corrected_errors: 168
>          last_physical: 1994106359808
> ERROR: there are uncorrectable errors
>
>> - Do a readonly scrub on a readonly mounted btrfs
>>     Just to rule out any write-time races, which can help us to pin
>> down
>>     the possible cause.
>
> `btrfs scrub start -rRBd` on an ro mount with btrfs-progs v6.6.3, still
> no difference.
> In particular, I still saw "fixed up error" in dmesg.
>
>> Thanks,
>> Qu
>
> I have more to say. There is actually another bug that can lead to
> kernel oops. Due to the bug, these requested tests were done on a
> patched kernel.
> I considered it should be a different bug so I decided to firstly
> discuss the case that scrub can successfully finish without oops in
> this thread, and planned to write another detailed bug report in the
> following days. Since I used a patched kernel to finish requested
> tests, let me make a brief description in advance:
>
> Oops usually occurred when the scrub progress is 1~30%.
> Bisect shows the buggy commit is
> ae76d8e3e1351aa1ba09cc68dab6866d356f2e17. Any version comes with the
> commit or have the commit backported should be affected (in my tests,
> 6.5.4, 6.6.10, 6.7). 6.4.15 and 6.5.3 was fine in my tests.
> The version of btrfs-progs was irrelevant.
> Oops can be either (quite random):
> - unable to handle page fault (not-present page)
> - general protection fault, probably for non-canonical address
> - Kernel BUG at __blk_rq_map_sg (block/blk-merge.c:584)

Can you provide any (or several) backtrace for it?

I'd to know the calltrace at least.

> - (RK3399) Unable to handle kernel paging request at virtual address
> It was reproducible on:
> - Intel CPU (i7-7567U), host, intel_iommu=off, SATA HDD
> - Intel CPU (i7-7567U), host, intel_iommu=on/off, loop (disk dump)
> - Intel CPU (i7-13700H), host, intel_iommu=off, USB-SATA HDD
> - Intel CPU (i7-7567U), KVM, virtio-scsi (disk dump)
> - Intel CPU (i7-13700H), KVM, virtio-scsi (USB-SATA HDD)

Would virtio-blk cause any difference?
That's also most of my development environment using.

You can still assign the block device to libvirt/qemu directly without
using virtio-scsi.

> - AMD Ryzen CPU (PRO 4750U), KVM, virtio-scsi (USB-SATA HDD)
> - RK3399, host, USB-SATA HDD
> It was not reproducible on:
> - Intel CPU (i7-7567U/i7-13700H), intel_iommu=on, (USB-)SATA HDD
> - AMD Ryzen CPU (PRO 4750U), host, amd_iommu=on/off, USB-SATA HDD
>
> Removing the usage of blk_plug in submit_initial_group_read
> dramatically made the oops disappear.
>
> Again, I aims to discuss the case that scrub can successfully finish
> without oops in this thread. But due to the above oops, to make it
> easier (scrubbing on HDD is painfully slow), all the above tests was
> done on "Intel CPU (i7-7567U), KVM, virtio-scsi (disk dump)", and Linux
> v6.7 **with the below patch**. If you consider I'd better do the tests
> without the patch, would you please tell your preferred test
> environment?
>
> (PS: if the above information is enough for you to fix the oops, please
> tell me so that I don't need to make another bug report)

Considering it's hard to reproduce here, mind to enable KASAN on your
test environment? (Inside VM is good enough).

Another possible thing is the IO scheduler.

For all my virtio-blk based environment, the default scheduler is "none".
Maybe that could affect the situation?

Finally, since you're using USB-SATA convertor, have you tried to
connect the SATA disk to a native SATA connector on a desktop motherboard?
(I guess it may not be possible)

Thanks,
Qu
>
> diff --git a/fs/btrfs/scrub.c b/fs/btrfs/scrub.c
> index f62a408671cb..62695b9aee07 100644
> --- a/fs/btrfs/scrub.c
> +++ b/fs/btrfs/scrub.c
> @@ -1768,14 +1768,11 @@ static void submit_initial_group_read(struct scrub_ctx *sctx,
>   				      unsigned int first_slot,
>   				      unsigned int nr_stripes)
>   {
> -	struct blk_plug plug;
> -
>   	ASSERT(first_slot < SCRUB_TOTAL_STRIPES);
>   	ASSERT(first_slot + nr_stripes <= SCRUB_TOTAL_STRIPES);
>
>   	scrub_throttle_dev_io(sctx, sctx->stripes[0].dev,
>   			      btrfs_stripe_nr_to_offset(nr_stripes));
> -	blk_start_plug(&plug);
>   	for (int i = 0; i < nr_stripes; i++) {
>   		struct scrub_stripe *stripe = &sctx->stripes[first_slot + i];
>
> @@ -1783,7 +1780,6 @@ static void submit_initial_group_read(struct scrub_ctx *sctx,
>   		ASSERT(test_bit(SCRUB_STRIPE_FLAG_INITIALIZED, &stripe->state));
>   		scrub_submit_initial_read(sctx, stripe);
>   	}
> -	blk_finish_plug(&plug);
>   }
>
>   static int flush_scrub_stripes(struct scrub_ctx *sctx)
>
>
>

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: Scrub reports uncorrectable errors with correctable errors unrepaired, but all files are fine
  2024-01-10  9:40     ` Qu Wenruo
@ 2024-01-10 13:51       ` Zhang Rongrong
  2024-01-10 22:52         ` Qu Wenruo
  0 siblings, 1 reply; 14+ messages in thread
From: Zhang Rongrong @ 2024-01-10 13:51 UTC (permalink / raw)
  To: linux-btrfs, quwenruo.btrfs

[-- Attachment #1: Type: text/plain, Size: 11321 bytes --]

On Wed, 2024-01-10 at 20:10 +1030, Qu Wenruo wrote:
> 
> On 2024/1/10 19:42, Rongrong wrote:
> > On Wed, 2024-01-10 at 07:49 +1030, Qu Wenruo wrote:
> > > 
> > > 
> > > On 2024/1/10 04:36, Rongrong wrote:
> > > > I guess the root cause of the issue is that one of the DUP metadata
> > > > copies was somehow corrupted. Am I right?
> > > 
> > > I don't think so, I think there may be some false alerts, either from
> > > kernel scrub interface, or btrfs-progs.
> > 
> > OK then. But I just wonder, if this is the case:
> > Why `btrfs inspect-internal logical-resolve [LoC]` returned a file
> > instead of ENOENT?
> 
> Then we're having very conflicting results.
> 
> "btrfs check --check-data-csum" is really the equivalent of scrub (just
> offline), which will ensure EVERY copy is verified.
> 
> If "btrfs check --check-data-csum" shows no error, I can only came up
> with one possibility.
> 
> - There is something missing csum and btrfs check doesn't report
>    the problem in the first place
> 
> This doesn't looks that correct to me though, as we have test cases to
> ensure btrfs check can detect extents without csum.
> 
> Can you provide the full dmesg/logical-resolve/btrfs-check result
> without hiding the bytenrs?
> That would help us to really clue all the problems.
> 
> Especially for dmesg, the full one (from boot to crash/report) is
> appreciated.

dmesg:
Please check the attachment. Some log were rate limited. I may disable
the rate limit and retry if you need.

logical-resolve:
It either reported ENOENT or /path/to/file. Did you mean you want the
address in command? I guess the full dmesg should help in that case.

btrfs-check:
# btrfs check -p --check-data-csum /dev/vdb
Opening filesystem to check...
Checking filesystem on /dev/vdb
UUID: 1e4fb969-7384-48fb-9377-6fb8817279ee
[1/7] checking root items                      (0:00:04 elapsed, 5675044 items checked)
[2/7] checking extents                         (0:00:16 elapsed, 156729 items checked)
[3/7] checking free space tree                 (0:00:01 elapsed, 1193 items checked)
[4/7] checking fs roots                        (0:01:38 elapsed, 49161 items checked)
[5/7] checking csums against data              (0:36:47 elapsed, 474124 items checked)
[6/7] checking root refs                       (0:00:00 elapsed, 3 items checked)
[7/7] checking quota groups skipped (not enabled on this FS)
found 1131179855872 bytes used, no error found
total csum bytes: 1102160324
total tree bytes: 2567684096
total fs tree bytes: 808058880
total extent tree bytes: 466550784
btree space waste bytes: 397971648
file data blocks allocated: 1131028090880
 referenced 1413145829376

> > Why `btrfs inspect-internal dump-tree -b [LoC]` returned checksum
> > mismatch instead of invalid mapping?
> 
> This is easy to answer, as long as the bytenr is inside a chunk,
> dump-tree can read it, even if it may be a metadata chunk.
> 
> Thus it doesn't show much, given any aligned bytenr inside a chunk,
> dump-tree would try to read it, e.g, we have such chunk layouts (an
> empty btrfs):
> 
> 	item 1 key (FIRST_CHUNK_TREE CHUNK_ITEM 13631488) itemoff 16105 itemsize 80
> 		length 8388608 owner 2 stripe_len 65536 type DATA|single
> 	item 2 key (FIRST_CHUNK_TREE CHUNK_ITEM 22020096) itemoff 15993
> itemsize 112
> 		length 8388608 owner 2 stripe_len 65536 type SYSTEM|DUP
> 	item 3 key (FIRST_CHUNK_TREE CHUNK_ITEM 30408704) itemoff 15881
> itemsize 112
> 		length 33554432 owner 2 stripe_len 65536 type METADATA|DUP
> 
> Then dump-tree can even try to read a tree block from a data chunk:
> 
> $ btrfs ins dump-tree -b 13631488 ~/test.img
> btrfs-progs v6.6.3
> checksum verify failed on 13631488 wanted 0x00000000 found 0xb6bde3e4
> ERROR: failed to read tree block 13631488
> 
> > 
> > > > I am to confirm:
> > > > 1. is this behavior (false "fixed up") of scrub intended?
> > > 
> > > Nope. Considering "btrfs check" and "btrfs check --check-data-csum"
> > > is
> > > totally fine, this should be a bug related to scrub.
> > > 
> > > > 2. why btrfs check finished without error under such a
> > > > circumstance?
> > > 
> > > Because that is probably the real case.
> > > 
> > > > 3. since all files were fine and btrfs check finished without
> > > > error,
> > > > should these "uncorrectable" errors be actually correctable?
> > > 
> > > I believe it's some bugs, either from scrub functionality of btrfs
> > > kernel module, or btrfs-progs reporting.
> > > 
> > > Would you please try the following?
> > > 
> > > - A different btrfs-progs to do the same scrub
> > >     To rule out some btrfs-progs regression.
> > 
> > `btrfs scrub start -RBd` with btrfs-progs v6.6.3 and v6.3.3, no
> > difference.
> > 
> > > - "btrfs scrub start -RD"
> > >     This shows the raw data reported, including where the corruptions
> > > are
> > >     (data/metadata, and scrubbed bytes etc).
> > 
> > Did you mean `btrfs scrub start -RBd`? If so:
> > 
> > Starting scrub on devid 1
> > 
> > Scrub device /dev/vdb (id 1) done
> > Scrub started:    Wed Jan 10 14:00:57 2024
> > Status:           finished
> > Duration:         0:35:50
> >          data_extents_scrubbed: 21561913
> >          tree_extents_scrubbed: 313438
> >          data_bytes_scrubbed: 1128612171776
> >          tree_bytes_scrubbed: 5135368192
> >          read_errors: 416
> >          csum_errors: 0
> >          verify_errors: 0
> >          no_csum: 0
> >          csum_discards: 0
> >          super_errors: 0
> >          malloc_errors: 0
> >          uncorrectable_errors: 248
> >          unverified_errors: 0
> >          corrected_errors: 168
> >          last_physical: 1994106359808
> > ERROR: there are uncorrectable errors
> > 
> > > - Do a readonly scrub on a readonly mounted btrfs
> > >     Just to rule out any write-time races, which can help us to pin
> > > down
> > >     the possible cause.
> > 
> > `btrfs scrub start -rRBd` on an ro mount with btrfs-progs v6.6.3, still
> > no difference.
> > In particular, I still saw "fixed up error" in dmesg.
> > 
> > > Thanks,
> > > Qu
> > 
> > I have more to say. There is actually another bug that can lead to
> > kernel oops. Due to the bug, these requested tests were done on a
> > patched kernel.
> > I considered it should be a different bug so I decided to firstly
> > discuss the case that scrub can successfully finish without oops in
> > this thread, and planned to write another detailed bug report in the
> > following days. Since I used a patched kernel to finish requested
> > tests, let me make a brief description in advance:
> > 
> > Oops usually occurred when the scrub progress is 1~30%.
> > Bisect shows the buggy commit is
> > ae76d8e3e1351aa1ba09cc68dab6866d356f2e17. Any version comes with the
> > commit or have the commit backported should be affected (in my tests,
> > 6.5.4, 6.6.10, 6.7). 6.4.15 and 6.5.3 was fine in my tests.
> > The version of btrfs-progs was irrelevant.
> > Oops can be either (quite random):
> > - unable to handle page fault (not-present page)
> > - general protection fault, probably for non-canonical address
> > - Kernel BUG at __blk_rq_map_sg (block/blk-merge.c:584)
> 
> Can you provide any (or several) backtrace for it?
> 
> I'd to know the calltrace at least.

Will provide full dmesg in the detailed bug report I am still writing.

> > - (RK3399) Unable to handle kernel paging request at virtual address
> > It was reproducible on:
> > - Intel CPU (i7-7567U), host, intel_iommu=off, SATA HDD
> > - Intel CPU (i7-7567U), host, intel_iommu=on/off, loop (disk dump)
> > - Intel CPU (i7-13700H), host, intel_iommu=off, USB-SATA HDD
> > - Intel CPU (i7-7567U), KVM, virtio-scsi (disk dump)
> > - Intel CPU (i7-13700H), KVM, virtio-scsi (USB-SATA HDD)
> 
> Would virtio-blk cause any difference?
> That's also most of my development environment using.
> 
> You can still assign the block device to libvirt/qemu directly without
> using virtio-scsi.

Hmmm, I might make a mistake. Actually it should be virtio-blk?

[    1.185335] virtio_blk virtio2: [vda] 83886080 512-byte logical blocks (42.9 GB/40.0 GiB)
[    1.216577] virtio_blk virtio6: [vdb] 3907035136 512-byte logical blocks (2.00 TB/1.82 TiB)

> > - AMD Ryzen CPU (PRO 4750U), KVM, virtio-scsi (USB-SATA HDD)
> > - RK3399, host, USB-SATA HDD
> > It was not reproducible on:
> > - Intel CPU (i7-7567U/i7-13700H), intel_iommu=on, (USB-)SATA HDD
> > - AMD Ryzen CPU (PRO 4750U), host, amd_iommu=on/off, USB-SATA HDD
> > 
> > Removing the usage of blk_plug in submit_initial_group_read
> > dramatically made the oops disappear.
> > 
> > Again, I aims to discuss the case that scrub can successfully finish
> > without oops in this thread. But due to the above oops, to make it
> > easier (scrubbing on HDD is painfully slow), all the above tests was
> > done on "Intel CPU (i7-7567U), KVM, virtio-scsi (disk dump)", and Linux
> > v6.7 **with the below patch**. If you consider I'd better do the tests
> > without the patch, would you please tell your preferred test
> > environment?
> > 
> > (PS: if the above information is enough for you to fix the oops, please
> > tell me so that I don't need to make another bug report)
> 
> Considering it's hard to reproduce here, mind to enable KASAN on your
> test environment? (Inside VM is good enough).

Will try.

> Another possible thing is the IO scheduler.
> 
> For all my virtio-blk based environment, the default scheduler is "none".
> Maybe that could affect the situation?

# cat /sys/block/vdb/queue/scheduler
[none] mq-deadline

> Finally, since you're using USB-SATA convertor, have you tried to
> connect the SATA disk to a native SATA connector on a desktop motherboard?
> (I guess it may not be possible)

As said above, I've tried test on "Intel CPU (i7-7567U), host,
intel_iommu=off, SATA HDD". The test was done with the disk connected
to the native SATA connector, though it is not quite "desktop" (Intel
NUC7i7BNH). Should it be enough?

> Thanks,
> Qu
> > 
> > diff --git a/fs/btrfs/scrub.c b/fs/btrfs/scrub.c
> > index f62a408671cb..62695b9aee07 100644
> > --- a/fs/btrfs/scrub.c
> > +++ b/fs/btrfs/scrub.c
> > @@ -1768,14 +1768,11 @@ static void submit_initial_group_read(struct scrub_ctx *sctx,
> >   				      unsigned int first_slot,
> >   				      unsigned int nr_stripes)
> >   {
> > -	struct blk_plug plug;
> > -
> >   	ASSERT(first_slot < SCRUB_TOTAL_STRIPES);
> >   	ASSERT(first_slot + nr_stripes <= SCRUB_TOTAL_STRIPES);
> > 
> >   	scrub_throttle_dev_io(sctx, sctx->stripes[0].dev,
> >   			      btrfs_stripe_nr_to_offset(nr_stripes));
> > -	blk_start_plug(&plug);
> >   	for (int i = 0; i < nr_stripes; i++) {
> >   		struct scrub_stripe *stripe = &sctx->stripes[first_slot + i];
> > 
> > @@ -1783,7 +1780,6 @@ static void submit_initial_group_read(struct scrub_ctx *sctx,
> >   		ASSERT(test_bit(SCRUB_STRIPE_FLAG_INITIALIZED, &stripe->state));
> >   		scrub_submit_initial_read(sctx, stripe);
> >   	}
> > -	blk_finish_plug(&plug);
> >   }
> > 
> >   static int flush_scrub_stripes(struct scrub_ctx *sctx)
> > 
> > 
> > 

Thanks,
Rongrong

[-- Attachment #2: dmesg.txt --]
[-- Type: text/plain, Size: 256429 bytes --]

[    0.000000] Linux version 6.7.0-x64v3-dirty (icenowy@edelgard) (gcc (GCC) 13.2.0 20230727 (AOSC OS, Core), GNU ld (GNU Binutils) 2.41) #10 SMP PREEMPT_DYNAMIC Wed Jan 10 13:40:18 CST 2024
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-6.7.0-x64v3-dirty root=UUID=5d5180c8-c108-490a-ba5e-16e23b89e553 ro quiet
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Hygon HygonGenuine
[    0.000000]   Centaur CentaurHauls
[    0.000000]   zhaoxin   Shanghai  
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000002ffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000030000-0x000000000004ffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000050000-0x000000000009efff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009f000-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000007e79dfff] usable
[    0.000000] BIOS-e820: [mem 0x000000007e79e000-0x000000007e9ebfff] reserved
[    0.000000] BIOS-e820: [mem 0x000000007e9ec000-0x000000007eaebfff] type 20
[    0.000000] BIOS-e820: [mem 0x000000007eaec000-0x000000007eb6bfff] reserved
[    0.000000] BIOS-e820: [mem 0x000000007eb6c000-0x000000007eb7dfff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000007eb7e000-0x000000007ebfdfff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000007ebfe000-0x000000007effffff] usable
[    0.000000] BIOS-e820: [mem 0x000000007f000000-0x000000007fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000027fffffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] APIC: Static calls initialized
[    0.000000] efi: EFI v2.7 by Debian distribution of EDK II
[    0.000000] efi: SMBIOS=0x7e9d4000 SMBIOS 3.0=0x7e9d2000 ACPI=0x7eb7d000 ACPI 2.0=0x7eb7d014 MEMATTR=0x7d56e198 MOKvar=0x7e97d000 
[    0.000000] SMBIOS 3.0.0 present.
[    0.000000] DMI: QEMU Standard PC (Q35 + ICH9, 2009), BIOS 2023.11-2 12/24/2023
[    0.000000] Hypervisor detected: KVM
[    0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00
[    0.000000] kvm-clock: using sched offset of 185850180666303 cycles
[    0.000001] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns
[    0.000004] tsc: Detected 3503.998 MHz processor
[    0.000048] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000051] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000056] last_pfn = 0x280000 max_arch_pfn = 0x400000000
[    0.000071] MTRR map: 4 entries (2 fixed + 2 variable; max 18), built from 8 variable MTRRs
[    0.000073] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.000092] last_pfn = 0x7f000 max_arch_pfn = 0x400000000
[    0.010818] Secure boot disabled
[    0.010819] RAMDISK: [mem 0x31371000-0x349affff]
[    0.010823] ACPI: Early table checksum verification disabled
[    0.010826] ACPI: RSDP 0x000000007EB7D014 000024 (v02 BOCHS )
[    0.010830] ACPI: XSDT 0x000000007EB7C0E8 00004C (v01 BOCHS  BXPC     00000001      01000013)
[    0.010835] ACPI: FACP 0x000000007EB78000 0000F4 (v03 BOCHS  BXPC     00000001 BXPC 00000001)
[    0.010842] ACPI: DSDT 0x000000007EB79000 002B97 (v01 BOCHS  BXPC     00000001 BXPC 00000001)
[    0.010847] ACPI: FACS 0x000000007EBDC000 000040
[    0.010849] ACPI: APIC 0x000000007EB77000 000090 (v03 BOCHS  BXPC     00000001 BXPC 00000001)
[    0.010852] ACPI: MCFG 0x000000007EB76000 00003C (v01 BOCHS  BXPC     00000001 BXPC 00000001)
[    0.010855] ACPI: WAET 0x000000007EB75000 000028 (v01 BOCHS  BXPC     00000001 BXPC 00000001)
[    0.010858] ACPI: BGRT 0x000000007EB74000 000038 (v01 INTEL  EDK2     00000002      01000013)
[    0.010860] ACPI: Reserving FACP table memory at [mem 0x7eb78000-0x7eb780f3]
[    0.010861] ACPI: Reserving DSDT table memory at [mem 0x7eb79000-0x7eb7bb96]
[    0.010862] ACPI: Reserving FACS table memory at [mem 0x7ebdc000-0x7ebdc03f]
[    0.010862] ACPI: Reserving APIC table memory at [mem 0x7eb77000-0x7eb7708f]
[    0.010863] ACPI: Reserving MCFG table memory at [mem 0x7eb76000-0x7eb7603b]
[    0.010863] ACPI: Reserving WAET table memory at [mem 0x7eb75000-0x7eb75027]
[    0.010864] ACPI: Reserving BGRT table memory at [mem 0x7eb74000-0x7eb74037]
[    0.011008] No NUMA configuration found
[    0.011009] Faking a node at [mem 0x0000000000000000-0x000000027fffffff]
[    0.011015] NODE_DATA(0) allocated [mem 0x27ffd0000-0x27fffafff]
[    0.011176] Zone ranges:
[    0.011177]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.011178]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.011179]   Normal   [mem 0x0000000100000000-0x000000027fffffff]
[    0.011180]   Device   empty
[    0.011181] Movable zone start for each node
[    0.011182] Early memory node ranges
[    0.011183]   node   0: [mem 0x0000000000001000-0x000000000002ffff]
[    0.011184]   node   0: [mem 0x0000000000050000-0x000000000009efff]
[    0.011184]   node   0: [mem 0x0000000000100000-0x000000007e79dfff]
[    0.011185]   node   0: [mem 0x000000007ebfe000-0x000000007effffff]
[    0.011186]   node   0: [mem 0x0000000100000000-0x000000027fffffff]
[    0.011187] Initmem setup node 0 [mem 0x0000000000001000-0x000000027fffffff]
[    0.011192] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.011195] On node 0, zone DMA: 32 pages in unavailable ranges
[    0.011260] On node 0, zone DMA: 97 pages in unavailable ranges
[    0.019134] On node 0, zone DMA32: 1120 pages in unavailable ranges
[    0.045797] On node 0, zone Normal: 4096 pages in unavailable ranges
[    0.046388] ACPI: PM-Timer IO Port: 0x608
[    0.046401] ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1])
[    0.046422] IOAPIC[0]: apic_id 0, version 17, address 0xfec00000, GSI 0-23
[    0.046424] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.046426] ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level)
[    0.046427] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.046428] ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level)
[    0.046429] ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level)
[    0.046432] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.046443] e820: update [mem 0x7ce91000-0x7ce99fff] usable ==> reserved
[    0.046452] TSC deadline timer available
[    0.046453] smpboot: Allowing 4 CPUs, 0 hotplug CPUs
[    0.046466] kvm-guest: APIC: eoi() replaced with kvm_guest_apic_eoi_write()
[    0.046481] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.046482] PM: hibernation: Registered nosave memory: [mem 0x00030000-0x0004ffff]
[    0.046484] PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
[    0.046484] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[    0.046485] PM: hibernation: Registered nosave memory: [mem 0x7ce91000-0x7ce99fff]
[    0.046486] PM: hibernation: Registered nosave memory: [mem 0x7e79e000-0x7e9ebfff]
[    0.046486] PM: hibernation: Registered nosave memory: [mem 0x7e9ec000-0x7eaebfff]
[    0.046487] PM: hibernation: Registered nosave memory: [mem 0x7eaec000-0x7eb6bfff]
[    0.046487] PM: hibernation: Registered nosave memory: [mem 0x7eb6c000-0x7eb7dfff]
[    0.046488] PM: hibernation: Registered nosave memory: [mem 0x7eb7e000-0x7ebfdfff]
[    0.046489] PM: hibernation: Registered nosave memory: [mem 0x7f000000-0x7fffffff]
[    0.046489] PM: hibernation: Registered nosave memory: [mem 0x80000000-0xdfffffff]
[    0.046490] PM: hibernation: Registered nosave memory: [mem 0xe0000000-0xefffffff]
[    0.046490] PM: hibernation: Registered nosave memory: [mem 0xf0000000-0xfeffbfff]
[    0.046491] PM: hibernation: Registered nosave memory: [mem 0xfeffc000-0xfeffffff]
[    0.046491] PM: hibernation: Registered nosave memory: [mem 0xff000000-0xffffffff]
[    0.046492] [mem 0x80000000-0xdfffffff] available for PCI devices
[    0.046493] Booting paravirtualized kernel on KVM
[    0.046495] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[    0.050719] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1
[    0.051264] percpu: Embedded 53 pages/cpu s180224 r8192 d28672 u524288
[    0.051269] pcpu-alloc: s180224 r8192 d28672 u524288 alloc=1*2097152
[    0.051271] pcpu-alloc: [0] 0 1 2 3 
[    0.051288] kvm-guest: PV spinlocks disabled, no host support
[    0.051289] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-6.7.0-x64v3-dirty root=UUID=5d5180c8-c108-490a-ba5e-16e23b89e553 ro quiet
[    0.051325] Unknown kernel command line parameters "BOOT_IMAGE=/boot/vmlinuz-6.7.0-x64v3-dirty", will be passed to user space.
[    0.051346] random: crng init done
[    0.053345] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
[    0.054317] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[    0.054405] Fallback order for Node 0: 0 
[    0.054408] Built 1 zonelists, mobility grouping on.  Total pages: 2056977
[    0.054409] Policy zone: Normal
[    0.054412] mem auto-init: stack:off, heap alloc:on, heap free:off
[    0.054415] software IO TLB: area num 4.
[    0.079446] Memory: 8019308K/8367224K available (16384K kernel code, 2368K rwdata, 5112K rodata, 2580K init, 4668K bss, 347656K reserved, 0K cma-reserved)
[    0.079622] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    0.079638] Kernel/User page tables isolation: enabled
[    0.079719] Dynamic Preempt: full
[    0.079751] rcu: Preemptible hierarchical RCU implementation.
[    0.079752] rcu:         RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=4.
[    0.079753]         Trampoline variant of Tasks RCU enabled.
[    0.079753]         Tracing variant of Tasks RCU enabled.
[    0.079754] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[    0.079754] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
[    0.079762] NR_IRQS: 524544, nr_irqs: 456, preallocated irqs: 16
[    0.079956] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[    0.079996] Console: colour dummy device 80x25
[    0.079998] printk: legacy console [tty0] enabled
[    0.080026] ACPI: Core revision 20230628
[    0.080068] APIC: Switch to symmetric I/O mode setup
[    0.080164] x2apic enabled
[    0.080303] APIC: Switched APIC routing to: physical x2apic
[    0.080677] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x328211acd6a, max_idle_ns: 440795259903 ns
[    0.080682] Calibrating delay loop (skipped) preset value.. 7007.99 BogoMIPS (lpj=14015992)
[    0.080757] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
[    0.080759] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
[    0.080761] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    0.080763] Spectre V2 : Mitigation: IBRS
[    0.080763] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    0.080764] Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT
[    0.080764] RETBleed: Mitigation: IBRS
[    0.080766] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    0.080767] Speculative Store Bypass: Vulnerable
[    0.080772] MDS: Vulnerable: Clear CPU buffers attempted, no microcode
[    0.080772] MMIO Stale Data: Vulnerable: Clear CPU buffers attempted, no microcode
[    0.080773] SRBDS: Unknown: Dependent on hypervisor status
[    0.080774] GDS: Unknown: Dependent on hypervisor status
[    0.080783] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.080785] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.080786] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.080787] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.080788] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'compacted' format.
[    0.084680] Freeing SMP alternatives memory: 44K
[    0.084680] pid_max: default: 32768 minimum: 301
[    0.084680] LSM: initializing lsm=lockdown,capability,landlock,yama,apparmor,integrity
[    0.084680] landlock: Up and running.
[    0.084680] Yama: becoming mindful.
[    0.084680] AppArmor: AppArmor initialized
[    0.084680] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    0.084680] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    0.084680] smpboot: CPU0: Intel Core Processor (Skylake, IBRS, no TSX) (family: 0x6, model: 0x5e, stepping: 0x3)
[    0.084680] RCU Tasks: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1.
[    0.084680] RCU Tasks Trace: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1.
[    0.084680] Performance Events: unsupported p6 CPU model 94 no PMU driver, software events only.
[    0.084680] signal: max sigframe size: 1776
[    0.084680] rcu: Hierarchical SRCU implementation.
[    0.084680] rcu:         Max phase no-delay instances is 1000.
[    0.084680] NMI watchdog: Perf NMI watchdog permanently disabled
[    0.084680] smp: Bringing up secondary CPUs ...
[    0.084680] smpboot: x86: Booting SMP configuration:
[    0.084680] .... node  #0, CPUs:      #2 #1 #3
[    0.084777] MDS CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/mds.html for more details.
[    0.084777] MMIO Stale Data CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/processor_mmio_stale_data.html for more details.
[    0.086681] smp: Brought up 1 node, 4 CPUs
[    0.086681] smpboot: Max logical packages: 1
[    0.086681] smpboot: Total of 4 processors activated (28031.98 BogoMIPS)
[    0.086681] devtmpfs: initialized
[    0.086681] x86/mm: Memory block size: 128MB
[    0.086681] ACPI: PM: Registering ACPI NVS region [mem 0x7eb7e000-0x7ebfdfff] (524288 bytes)
[    0.086681] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.086681] futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
[    0.086681] pinctrl core: initialized pinctrl subsystem
[    0.088683] PM: RTC time: 05:51:01, date: 2024-01-10
[    0.089747] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    0.090154] DMA: preallocated 1024 KiB GFP_KERNEL pool for atomic allocations
[    0.090502] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    0.090805] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    0.090815] audit: initializing netlink subsys (disabled)
[    0.090824] audit: type=2000 audit(1704865862.134:1): state=initialized audit_enabled=0 res=1
[    0.090824] thermal_sys: Registered thermal governor 'fair_share'
[    0.090824] thermal_sys: Registered thermal governor 'bang_bang'
[    0.090824] thermal_sys: Registered thermal governor 'step_wise'
[    0.090824] thermal_sys: Registered thermal governor 'user_space'
[    0.090824] thermal_sys: Registered thermal governor 'power_allocator'
[    0.090824] cpuidle: using governor ladder
[    0.090824] cpuidle: using governor menu
[    0.090824] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.090824] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.090824] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved as E820 entry
[    0.090824] PCI: Using configuration type 1 for base access
[    0.090824] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[    0.090824] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[    0.090824] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[    0.090824] ACPI: Added _OSI(Module Device)
[    0.090824] ACPI: Added _OSI(Processor Device)
[    0.090824] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.090824] ACPI: Added _OSI(Processor Aggregator Device)
[    0.093985] ACPI: 1 ACPI AML tables successfully acquired and loaded
[    0.094407] ACPI: _OSC evaluation for CPUs failed, trying _PDC
[    0.094407] ACPI: Interpreter enabled
[    0.094407] ACPI: PM: (supports S0 S5)
[    0.094407] ACPI: Using IOAPIC for interrupt routing
[    0.094407] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.094407] PCI: Ignoring E820 reservations for host bridge windows
[    0.094407] ACPI: Enabled 2 GPEs in block 00 to 3F
[    0.097361] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.097366] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    0.097413] acpi PNP0A08:00: _OSC: platform does not support [PCIeHotplug LTR DPC]
[    0.097526] acpi PNP0A08:00: _OSC: OS now controls [SHPCHotplug PME AER PCIeCapability]
[    0.097749] PCI host bridge to bus 0000:00
[    0.097750] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.097752] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.097753] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.097755] pci_bus 0000:00: root bus resource [mem 0x80000000-0xdfffffff window]
[    0.097756] pci_bus 0000:00: root bus resource [mem 0xf0000000-0xfebfffff window]
[    0.097757] pci_bus 0000:00: root bus resource [mem 0x800000000-0xfffffffff window]
[    0.097758] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.097787] pci 0000:00:00.0: [8086:29c0] type 00 class 0x060000
[    0.098002] pci 0000:00:01.0: [1b36:0100] type 00 class 0x030000
[    0.102436] pci 0000:00:01.0: reg 0x10: [mem 0x84000000-0x87ffffff]
[    0.106333] pci 0000:00:01.0: reg 0x14: [mem 0x80000000-0x83ffffff]
[    0.108736] pci 0000:00:01.0: reg 0x18: [mem 0x89c44000-0x89c45fff]
[    0.112409] pci 0000:00:01.0: reg 0x1c: [io  0x6060-0x607f]
[    0.118988] pci 0000:00:01.0: reg 0x30: [mem 0xffff0000-0xffffffff pref]
[    0.120809] pci 0000:00:01.0: BAR 0: assigned to efifb
[    0.120835] pci 0000:00:01.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.121302] pci 0000:00:02.0: [1b36:000c] type 01 class 0x060400
[    0.123571] pci 0000:00:02.0: reg 0x10: [mem 0x89c54000-0x89c54fff]
[    0.127911] pci 0000:00:02.1: [1b36:000c] type 01 class 0x060400
[    0.130032] pci 0000:00:02.1: reg 0x10: [mem 0x89c53000-0x89c53fff]
[    0.135167] pci 0000:00:02.2: [1b36:000c] type 01 class 0x060400
[    0.136499] pci 0000:00:02.2: reg 0x10: [mem 0x89c52000-0x89c52fff]
[    0.139200] pci 0000:00:02.3: [1b36:000c] type 01 class 0x060400
[    0.140674] pci 0000:00:02.3: reg 0x10: [mem 0x89c51000-0x89c51fff]
[    0.145775] pci 0000:00:02.4: [1b36:000c] type 01 class 0x060400
[    0.147229] pci 0000:00:02.4: reg 0x10: [mem 0x89c50000-0x89c50fff]
[    0.149809] pci 0000:00:02.5: [1b36:000c] type 01 class 0x060400
[    0.151137] pci 0000:00:02.5: reg 0x10: [mem 0x89c4f000-0x89c4ffff]
[    0.156099] pci 0000:00:02.6: [1b36:000c] type 01 class 0x060400
[    0.157578] pci 0000:00:02.6: reg 0x10: [mem 0x89c4e000-0x89c4efff]
[    0.160978] pci 0000:00:02.7: [1b36:000c] type 01 class 0x060400
[    0.162334] pci 0000:00:02.7: reg 0x10: [mem 0x89c4d000-0x89c4dfff]
[    0.165034] pci 0000:00:03.0: [1b36:000c] type 01 class 0x060400
[    0.166494] pci 0000:00:03.0: reg 0x10: [mem 0x89c4c000-0x89c4cfff]
[    0.172453] pci 0000:00:03.1: [1b36:000c] type 01 class 0x060400
[    0.173822] pci 0000:00:03.1: reg 0x10: [mem 0x89c4b000-0x89c4bfff]
[    0.176649] pci 0000:00:03.2: [1b36:000c] type 01 class 0x060400
[    0.177794] pci 0000:00:03.2: reg 0x10: [mem 0x89c4a000-0x89c4afff]
[    0.181011] pci 0000:00:03.3: [1b36:000c] type 01 class 0x060400
[    0.182519] pci 0000:00:03.3: reg 0x10: [mem 0x89c49000-0x89c49fff]
[    0.185300] pci 0000:00:03.4: [1b36:000c] type 01 class 0x060400
[    0.186716] pci 0000:00:03.4: reg 0x10: [mem 0x89c48000-0x89c48fff]
[    0.189803] pci 0000:00:03.5: [1b36:000c] type 01 class 0x060400
[    0.193176] pci 0000:00:03.5: reg 0x10: [mem 0x89c47000-0x89c47fff]
[    0.200037] pci 0000:00:1b.0: [8086:293e] type 00 class 0x040300
[    0.200498] pci 0000:00:1b.0: reg 0x10: [mem 0x89c40000-0x89c43fff]
[    0.205416] pci 0000:00:1f.0: [8086:2918] type 00 class 0x060100
[    0.205618] pci 0000:00:1f.0: quirk: [io  0x0600-0x067f] claimed by ICH6 ACPI/GPIO/TCO
[    0.205752] pci 0000:00:1f.2: [8086:2922] type 00 class 0x010601
[    0.209565] pci 0000:00:1f.2: reg 0x20: [io  0x6040-0x605f]
[    0.210352] pci 0000:00:1f.2: reg 0x24: [mem 0x89c46000-0x89c46fff]
[    0.211358] pci 0000:00:1f.3: [8086:2930] type 00 class 0x0c0500
[    0.213341] pci 0000:00:1f.3: reg 0x20: [io  0x6000-0x603f]
[    0.217715] acpiphp: Slot [0] registered
[    0.217795] pci 0000:01:00.0: [1af4:1041] type 00 class 0x020000
[    0.219442] pci 0000:01:00.0: reg 0x14: [mem 0x89a00000-0x89a00fff]
[    0.221522] pci 0000:01:00.0: reg 0x20: [mem 0x800000000-0x800003fff 64bit pref]
[    0.222302] pci 0000:01:00.0: reg 0x30: [mem 0xfffc0000-0xffffffff pref]
[    0.223443] pci 0000:00:02.0: PCI bridge to [bus 01]
[    0.223459] pci 0000:00:02.0:   bridge window [mem 0x89a00000-0x89bfffff]
[    0.223473] pci 0000:00:02.0:   bridge window [mem 0x800000000-0x8000fffff 64bit pref]
[    0.224038] acpiphp: Slot [0-2] registered
[    0.224097] pci 0000:02:00.0: [1b36:000d] type 00 class 0x0c0330
[    0.224584] pci 0000:02:00.0: reg 0x10: [mem 0x89800000-0x89803fff 64bit]
[    0.229590] pci 0000:00:02.1: PCI bridge to [bus 02]
[    0.229608] pci 0000:00:02.1:   bridge window [mem 0x89800000-0x899fffff]
[    0.230194] acpiphp: Slot [0-3] registered
[    0.230265] pci 0000:03:00.0: [1af4:1043] type 00 class 0x078000
[    0.231926] pci 0000:03:00.0: reg 0x14: [mem 0x89600000-0x89600fff]
[    0.234275] pci 0000:03:00.0: reg 0x20: [mem 0x800100000-0x800103fff 64bit pref]
[    0.236175] pci 0000:00:02.2: PCI bridge to [bus 03]
[    0.236190] pci 0000:00:02.2:   bridge window [mem 0x89600000-0x897fffff]
[    0.236204] pci 0000:00:02.2:   bridge window [mem 0x800100000-0x8001fffff 64bit pref]
[    0.236785] acpiphp: Slot [0-4] registered
[    0.236857] pci 0000:04:00.0: [1af4:1042] type 00 class 0x010000
[    0.240685] pci 0000:04:00.0: reg 0x14: [mem 0x89400000-0x89400fff]
[    0.243118] pci 0000:04:00.0: reg 0x20: [mem 0x800200000-0x800203fff 64bit pref]
[    0.245059] pci 0000:00:02.3: PCI bridge to [bus 04]
[    0.245074] pci 0000:00:02.3:   bridge window [mem 0x89400000-0x895fffff]
[    0.245088] pci 0000:00:02.3:   bridge window [mem 0x800200000-0x8002fffff 64bit pref]
[    0.246255] acpiphp: Slot [0-5] registered
[    0.246328] pci 0000:05:00.0: [1af4:1045] type 00 class 0x00ff00
[    0.248585] pci 0000:05:00.0: reg 0x20: [mem 0x800300000-0x800303fff 64bit pref]
[    0.249951] pci 0000:00:02.4: PCI bridge to [bus 05]
[    0.249966] pci 0000:00:02.4:   bridge window [mem 0x89200000-0x893fffff]
[    0.249980] pci 0000:00:02.4:   bridge window [mem 0x800300000-0x8003fffff 64bit pref]
[    0.252692] acpiphp: Slot [0-6] registered
[    0.252769] pci 0000:06:00.0: [1af4:1044] type 00 class 0x00ff00
[    0.254517] pci 0000:06:00.0: reg 0x14: [mem 0x89000000-0x89000fff]
[    0.256686] pci 0000:06:00.0: reg 0x20: [mem 0x800400000-0x800403fff 64bit pref]
[    0.258525] pci 0000:00:02.5: PCI bridge to [bus 06]
[    0.258543] pci 0000:00:02.5:   bridge window [mem 0x89000000-0x891fffff]
[    0.258557] pci 0000:00:02.5:   bridge window [mem 0x800400000-0x8004fffff 64bit pref]
[    0.259121] acpiphp: Slot [0-7] registered
[    0.259192] pci 0000:07:00.0: [1af4:1048] type 00 class 0x010000
[    0.260686] pci 0000:07:00.0: reg 0x14: [mem 0x88e00000-0x88e00fff]
[    0.265184] pci 0000:07:00.0: reg 0x20: [mem 0x800500000-0x800503fff 64bit pref]
[    0.267155] pci 0000:00:02.6: PCI bridge to [bus 07]
[    0.267170] pci 0000:00:02.6:   bridge window [mem 0x88e00000-0x88ffffff]
[    0.267183] pci 0000:00:02.6:   bridge window [mem 0x800500000-0x8005fffff 64bit pref]
[    0.267768] acpiphp: Slot [0-8] registered
[    0.267839] pci 0000:08:00.0: [1af4:1042] type 00 class 0x010000
[    0.269482] pci 0000:08:00.0: reg 0x14: [mem 0x88c00000-0x88c00fff]
[    0.271945] pci 0000:08:00.0: reg 0x20: [mem 0x800600000-0x800603fff 64bit pref]
[    0.273723] pci 0000:00:02.7: PCI bridge to [bus 08]
[    0.273738] pci 0000:00:02.7:   bridge window [mem 0x88c00000-0x88dfffff]
[    0.273752] pci 0000:00:02.7:   bridge window [mem 0x800600000-0x8006fffff 64bit pref]
[    0.276776] acpiphp: Slot [0-9] registered
[    0.276853] pci 0000:09:00.0: [1af4:105a] type 00 class 0x018000
[    0.278648] pci 0000:09:00.0: reg 0x14: [mem 0x88a00000-0x88a00fff]
[    0.280687] pci 0000:09:00.0: reg 0x20: [mem 0x800700000-0x800703fff 64bit pref]
[    0.282572] pci 0000:00:03.0: PCI bridge to [bus 09]
[    0.282588] pci 0000:00:03.0:   bridge window [mem 0x88a00000-0x88bfffff]
[    0.282602] pci 0000:00:03.0:   bridge window [mem 0x800700000-0x8007fffff 64bit pref]
[    0.283169] acpiphp: Slot [0-10] registered
[    0.283347] pci 0000:00:03.1: PCI bridge to [bus 0a]
[    0.283361] pci 0000:00:03.1:   bridge window [mem 0x88800000-0x889fffff]
[    0.283915] acpiphp: Slot [0-11] registered
[    0.284091] pci 0000:00:03.2: PCI bridge to [bus 0b]
[    0.284105] pci 0000:00:03.2:   bridge window [mem 0x88600000-0x887fffff]
[    0.284658] acpiphp: Slot [0-12] registered
[    0.284838] pci 0000:00:03.3: PCI bridge to [bus 0c]
[    0.284852] pci 0000:00:03.3:   bridge window [mem 0x88400000-0x885fffff]
[    0.285398] acpiphp: Slot [0-13] registered
[    0.285575] pci 0000:00:03.4: PCI bridge to [bus 0d]
[    0.285589] pci 0000:00:03.4:   bridge window [mem 0x88200000-0x883fffff]
[    0.286163] acpiphp: Slot [0-14] registered
[    0.286385] pci 0000:00:03.5: PCI bridge to [bus 0e]
[    0.288182] pci 0000:00:03.5:   bridge window [mem 0x88000000-0x881fffff]
[    0.295113] ACPI: PCI: Interrupt link LNKA configured for IRQ 10
[    0.295187] ACPI: PCI: Interrupt link LNKB configured for IRQ 10
[    0.295253] ACPI: PCI: Interrupt link LNKC configured for IRQ 11
[    0.295322] ACPI: PCI: Interrupt link LNKD configured for IRQ 11
[    0.295388] ACPI: PCI: Interrupt link LNKE configured for IRQ 10
[    0.295453] ACPI: PCI: Interrupt link LNKF configured for IRQ 10
[    0.295518] ACPI: PCI: Interrupt link LNKG configured for IRQ 11
[    0.295585] ACPI: PCI: Interrupt link LNKH configured for IRQ 11
[    0.295612] ACPI: PCI: Interrupt link GSIA configured for IRQ 16
[    0.295621] ACPI: PCI: Interrupt link GSIB configured for IRQ 17
[    0.295630] ACPI: PCI: Interrupt link GSIC configured for IRQ 18
[    0.295639] ACPI: PCI: Interrupt link GSID configured for IRQ 19
[    0.295646] ACPI: PCI: Interrupt link GSIE configured for IRQ 20
[    0.295655] ACPI: PCI: Interrupt link GSIF configured for IRQ 21
[    0.295663] ACPI: PCI: Interrupt link GSIG configured for IRQ 22
[    0.295671] ACPI: PCI: Interrupt link GSIH configured for IRQ 23
[    0.296080] iommu: Default domain type: Translated
[    0.296080] iommu: DMA domain TLB invalidation policy: lazy mode
[    0.296080] SCSI subsystem initialized
[    0.296696] libata version 3.00 loaded.
[    0.296711] ACPI: bus type USB registered
[    0.296752] usbcore: registered new interface driver usbfs
[    0.296761] usbcore: registered new interface driver hub
[    0.296769] usbcore: registered new device driver usb
[    0.296793] pps_core: LinuxPPS API ver. 1 registered
[    0.296795] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.296797] PTP clock support registered
[    0.296813] EDAC MC: Ver: 3.0.0
[    0.296985] efivars: Registered efivars operations
[    0.297114] NetLabel: Initializing
[    0.297117] NetLabel:  domain hash size = 128
[    0.297120] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    0.297148] NetLabel:  unlabeled traffic allowed by default
[    0.297172] mctp: management component transport protocol core
[    0.297172] NET: Registered PF_MCTP protocol family
[    0.297172] PCI: Using ACPI for IRQ routing
[    0.368737] PCI: pci_cache_line_size set to 64 bytes
[    0.368951] e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
[    0.368957] e820: reserve RAM buffer [mem 0x7ce91000-0x7fffffff]
[    0.368958] e820: reserve RAM buffer [mem 0x7e79e000-0x7fffffff]
[    0.368959] e820: reserve RAM buffer [mem 0x7f000000-0x7fffffff]
[    0.369013] pci 0000:00:01.0: vgaarb: setting as boot VGA device
[    0.369013] pci 0000:00:01.0: vgaarb: bridge control possible
[    0.369013] pci 0000:00:01.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    0.369013] vgaarb: loaded
[    0.369013] clocksource: Switched to clocksource kvm-clock
[    0.369115] VFS: Disk quotas dquot_6.6.0
[    0.369128] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.369350] AppArmor: AppArmor Filesystem Enabled
[    0.369372] pnp: PnP ACPI init
[    0.369553] system 00:04: [mem 0xe0000000-0xefffffff window] has been reserved
[    0.369763] pnp: PnP ACPI: found 5 devices
[    0.376490] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.376550] NET: Registered PF_INET protocol family
[    0.376913] IP idents hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[    0.378138] tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear)
[    0.378239] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[    0.378388] TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.379007] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[    0.379129] TCP: Hash tables configured (established 65536 bind 65536)
[    0.379286] MPTCP token hash table entries: 8192 (order: 5, 196608 bytes, linear)
[    0.379343] UDP hash table entries: 4096 (order: 5, 131072 bytes, linear)
[    0.379391] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes, linear)
[    0.379441] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    0.379459] NET: Registered PF_XDP protocol family
[    0.379465] pci 0000:01:00.0: can't claim BAR 6 [mem 0xfffc0000-0xffffffff pref]: no compatible bridge window
[    0.379475] pci 0000:00:02.0: bridge window [io  0x1000-0x0fff] to [bus 01] add_size 1000
[    0.379479] pci 0000:00:02.1: bridge window [io  0x1000-0x0fff] to [bus 02] add_size 1000
[    0.379481] pci 0000:00:02.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 02] add_size 200000 add_align 100000
[    0.379483] pci 0000:00:02.2: bridge window [io  0x1000-0x0fff] to [bus 03] add_size 1000
[    0.379485] pci 0000:00:02.3: bridge window [io  0x1000-0x0fff] to [bus 04] add_size 1000
[    0.379486] pci 0000:00:02.4: bridge window [io  0x1000-0x0fff] to [bus 05] add_size 1000
[    0.379487] pci 0000:00:02.5: bridge window [io  0x1000-0x0fff] to [bus 06] add_size 1000
[    0.379488] pci 0000:00:02.6: bridge window [io  0x1000-0x0fff] to [bus 07] add_size 1000
[    0.379490] pci 0000:00:02.7: bridge window [io  0x1000-0x0fff] to [bus 08] add_size 1000
[    0.379491] pci 0000:00:03.0: bridge window [io  0x1000-0x0fff] to [bus 09] add_size 1000
[    0.379492] pci 0000:00:03.1: bridge window [io  0x1000-0x0fff] to [bus 0a] add_size 1000
[    0.379494] pci 0000:00:03.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 0a] add_size 200000 add_align 100000
[    0.379495] pci 0000:00:03.2: bridge window [io  0x1000-0x0fff] to [bus 0b] add_size 1000
[    0.379496] pci 0000:00:03.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 0b] add_size 200000 add_align 100000
[    0.379498] pci 0000:00:03.3: bridge window [io  0x1000-0x0fff] to [bus 0c] add_size 1000
[    0.379499] pci 0000:00:03.3: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 0c] add_size 200000 add_align 100000
[    0.379500] pci 0000:00:03.4: bridge window [io  0x1000-0x0fff] to [bus 0d] add_size 1000
[    0.379501] pci 0000:00:03.4: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 0d] add_size 200000 add_align 100000
[    0.379503] pci 0000:00:03.5: bridge window [io  0x1000-0x0fff] to [bus 0e] add_size 1000
[    0.379504] pci 0000:00:03.5: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 0e] add_size 200000 add_align 100000
[    0.379514] pci 0000:00:02.1: BAR 15: assigned [mem 0x800800000-0x8009fffff 64bit pref]
[    0.379516] pci 0000:00:03.1: BAR 15: assigned [mem 0x800a00000-0x800bfffff 64bit pref]
[    0.379518] pci 0000:00:03.2: BAR 15: assigned [mem 0x800c00000-0x800dfffff 64bit pref]
[    0.379519] pci 0000:00:03.3: BAR 15: assigned [mem 0x800e00000-0x800ffffff 64bit pref]
[    0.379521] pci 0000:00:03.4: BAR 15: assigned [mem 0x801000000-0x8011fffff 64bit pref]
[    0.379522] pci 0000:00:03.5: BAR 15: assigned [mem 0x801200000-0x8013fffff 64bit pref]
[    0.379524] pci 0000:00:02.0: BAR 13: assigned [io  0x1000-0x1fff]
[    0.379526] pci 0000:00:02.1: BAR 13: assigned [io  0x2000-0x2fff]
[    0.379527] pci 0000:00:02.2: BAR 13: assigned [io  0x3000-0x3fff]
[    0.379528] pci 0000:00:02.3: BAR 13: assigned [io  0x4000-0x4fff]
[    0.379530] pci 0000:00:02.4: BAR 13: assigned [io  0x5000-0x5fff]
[    0.379531] pci 0000:00:02.5: BAR 13: assigned [io  0x7000-0x7fff]
[    0.379532] pci 0000:00:02.6: BAR 13: assigned [io  0x8000-0x8fff]
[    0.379534] pci 0000:00:02.7: BAR 13: assigned [io  0x9000-0x9fff]
[    0.379535] pci 0000:00:03.0: BAR 13: assigned [io  0xa000-0xafff]
[    0.379536] pci 0000:00:03.1: BAR 13: assigned [io  0xb000-0xbfff]
[    0.379539] pci 0000:00:03.2: BAR 13: assigned [io  0xc000-0xcfff]
[    0.379541] pci 0000:00:03.3: BAR 13: assigned [io  0xd000-0xdfff]
[    0.379542] pci 0000:00:03.4: BAR 13: assigned [io  0xe000-0xefff]
[    0.379543] pci 0000:00:03.5: BAR 13: assigned [io  0xf000-0xffff]
[    0.379547] pci 0000:01:00.0: BAR 6: assigned [mem 0x89a40000-0x89a7ffff pref]
[    0.379549] pci 0000:00:02.0: PCI bridge to [bus 01]
[    0.379567] pci 0000:00:02.0:   bridge window [io  0x1000-0x1fff]
[    0.380861] pci 0000:00:02.0:   bridge window [mem 0x89a00000-0x89bfffff]
[    0.381658] pci 0000:00:02.0:   bridge window [mem 0x800000000-0x8000fffff 64bit pref]
[    0.383094] pci 0000:00:02.1: PCI bridge to [bus 02]
[    0.383103] pci 0000:00:02.1:   bridge window [io  0x2000-0x2fff]
[    0.384192] pci 0000:00:02.1:   bridge window [mem 0x89800000-0x899fffff]
[    0.384921] pci 0000:00:02.1:   bridge window [mem 0x800800000-0x8009fffff 64bit pref]
[    0.386409] pci 0000:00:02.2: PCI bridge to [bus 03]
[    0.386418] pci 0000:00:02.2:   bridge window [io  0x3000-0x3fff]
[    0.387501] pci 0000:00:02.2:   bridge window [mem 0x89600000-0x897fffff]
[    0.388215] pci 0000:00:02.2:   bridge window [mem 0x800100000-0x8001fffff 64bit pref]
[    0.389715] pci 0000:00:02.3: PCI bridge to [bus 04]
[    0.389724] pci 0000:00:02.3:   bridge window [io  0x4000-0x4fff]
[    0.390866] pci 0000:00:02.3:   bridge window [mem 0x89400000-0x895fffff]
[    0.393534] pci 0000:00:02.3:   bridge window [mem 0x800200000-0x8002fffff 64bit pref]
[    0.394482] pci 0000:00:02.4: PCI bridge to [bus 05]
[    0.394490] pci 0000:00:02.4:   bridge window [io  0x5000-0x5fff]
[    0.395194] pci 0000:00:02.4:   bridge window [mem 0x89200000-0x893fffff]
[    0.395652] pci 0000:00:02.4:   bridge window [mem 0x800300000-0x8003fffff 64bit pref]
[    0.396599] pci 0000:00:02.5: PCI bridge to [bus 06]
[    0.396607] pci 0000:00:02.5:   bridge window [io  0x7000-0x7fff]
[    0.397313] pci 0000:00:02.5:   bridge window [mem 0x89000000-0x891fffff]
[    0.397798] pci 0000:00:02.5:   bridge window [mem 0x800400000-0x8004fffff 64bit pref]
[    0.398782] pci 0000:00:02.6: PCI bridge to [bus 07]
[    0.398790] pci 0000:00:02.6:   bridge window [io  0x8000-0x8fff]
[    0.399475] pci 0000:00:02.6:   bridge window [mem 0x88e00000-0x88ffffff]
[    0.400118] pci 0000:00:02.6:   bridge window [mem 0x800500000-0x8005fffff 64bit pref]
[    0.401619] pci 0000:00:02.7: PCI bridge to [bus 08]
[    0.401627] pci 0000:00:02.7:   bridge window [io  0x9000-0x9fff]
[    0.402732] pci 0000:00:02.7:   bridge window [mem 0x88c00000-0x88dfffff]
[    0.405262] pci 0000:00:02.7:   bridge window [mem 0x800600000-0x8006fffff 64bit pref]
[    0.406194] pci 0000:00:03.0: PCI bridge to [bus 09]
[    0.406202] pci 0000:00:03.0:   bridge window [io  0xa000-0xafff]
[    0.406864] pci 0000:00:03.0:   bridge window [mem 0x88a00000-0x88bfffff]
[    0.407321] pci 0000:00:03.0:   bridge window [mem 0x800700000-0x8007fffff 64bit pref]
[    0.408221] pci 0000:00:03.1: PCI bridge to [bus 0a]
[    0.408234] pci 0000:00:03.1:   bridge window [io  0xb000-0xbfff]
[    0.408977] pci 0000:00:03.1:   bridge window [mem 0x88800000-0x889fffff]
[    0.409463] pci 0000:00:03.1:   bridge window [mem 0x800a00000-0x800bfffff 64bit pref]
[    0.410340] pci 0000:00:03.2: PCI bridge to [bus 0b]
[    0.410351] pci 0000:00:03.2:   bridge window [io  0xc000-0xcfff]
[    0.411005] pci 0000:00:03.2:   bridge window [mem 0x88600000-0x887fffff]
[    0.411460] pci 0000:00:03.2:   bridge window [mem 0x800c00000-0x800dfffff 64bit pref]
[    0.412396] pci 0000:00:03.3: PCI bridge to [bus 0c]
[    0.412403] pci 0000:00:03.3:   bridge window [io  0xd000-0xdfff]
[    0.413167] pci 0000:00:03.3:   bridge window [mem 0x88400000-0x885fffff]
[    0.413748] pci 0000:00:03.3:   bridge window [mem 0x800e00000-0x800ffffff 64bit pref]
[    0.417427] pci 0000:00:03.4: PCI bridge to [bus 0d]
[    0.417454] pci 0000:00:03.4:   bridge window [io  0xe000-0xefff]
[    0.418138] pci 0000:00:03.4:   bridge window [mem 0x88200000-0x883fffff]
[    0.418577] pci 0000:00:03.4:   bridge window [mem 0x801000000-0x8011fffff 64bit pref]
[    0.419453] pci 0000:00:03.5: PCI bridge to [bus 0e]
[    0.419460] pci 0000:00:03.5:   bridge window [io  0xf000-0xffff]
[    0.420158] pci 0000:00:03.5:   bridge window [mem 0x88000000-0x881fffff]
[    0.420602] pci 0000:00:03.5:   bridge window [mem 0x801200000-0x8013fffff 64bit pref]
[    0.421550] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.421553] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    0.421555] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.421556] pci_bus 0000:00: resource 7 [mem 0x80000000-0xdfffffff window]
[    0.421557] pci_bus 0000:00: resource 8 [mem 0xf0000000-0xfebfffff window]
[    0.421558] pci_bus 0000:00: resource 9 [mem 0x800000000-0xfffffffff window]
[    0.421559] pci_bus 0000:01: resource 0 [io  0x1000-0x1fff]
[    0.421566] pci_bus 0000:01: resource 1 [mem 0x89a00000-0x89bfffff]
[    0.421567] pci_bus 0000:01: resource 2 [mem 0x800000000-0x8000fffff 64bit pref]
[    0.421569] pci_bus 0000:02: resource 0 [io  0x2000-0x2fff]
[    0.421570] pci_bus 0000:02: resource 1 [mem 0x89800000-0x899fffff]
[    0.421571] pci_bus 0000:02: resource 2 [mem 0x800800000-0x8009fffff 64bit pref]
[    0.421572] pci_bus 0000:03: resource 0 [io  0x3000-0x3fff]
[    0.421573] pci_bus 0000:03: resource 1 [mem 0x89600000-0x897fffff]
[    0.421574] pci_bus 0000:03: resource 2 [mem 0x800100000-0x8001fffff 64bit pref]
[    0.421575] pci_bus 0000:04: resource 0 [io  0x4000-0x4fff]
[    0.421576] pci_bus 0000:04: resource 1 [mem 0x89400000-0x895fffff]
[    0.421577] pci_bus 0000:04: resource 2 [mem 0x800200000-0x8002fffff 64bit pref]
[    0.421578] pci_bus 0000:05: resource 0 [io  0x5000-0x5fff]
[    0.421579] pci_bus 0000:05: resource 1 [mem 0x89200000-0x893fffff]
[    0.421580] pci_bus 0000:05: resource 2 [mem 0x800300000-0x8003fffff 64bit pref]
[    0.421581] pci_bus 0000:06: resource 0 [io  0x7000-0x7fff]
[    0.421582] pci_bus 0000:06: resource 1 [mem 0x89000000-0x891fffff]
[    0.421583] pci_bus 0000:06: resource 2 [mem 0x800400000-0x8004fffff 64bit pref]
[    0.421584] pci_bus 0000:07: resource 0 [io  0x8000-0x8fff]
[    0.421585] pci_bus 0000:07: resource 1 [mem 0x88e00000-0x88ffffff]
[    0.421586] pci_bus 0000:07: resource 2 [mem 0x800500000-0x8005fffff 64bit pref]
[    0.421587] pci_bus 0000:08: resource 0 [io  0x9000-0x9fff]
[    0.421588] pci_bus 0000:08: resource 1 [mem 0x88c00000-0x88dfffff]
[    0.421589] pci_bus 0000:08: resource 2 [mem 0x800600000-0x8006fffff 64bit pref]
[    0.421590] pci_bus 0000:09: resource 0 [io  0xa000-0xafff]
[    0.421591] pci_bus 0000:09: resource 1 [mem 0x88a00000-0x88bfffff]
[    0.421594] pci_bus 0000:09: resource 2 [mem 0x800700000-0x8007fffff 64bit pref]
[    0.421595] pci_bus 0000:0a: resource 0 [io  0xb000-0xbfff]
[    0.421596] pci_bus 0000:0a: resource 1 [mem 0x88800000-0x889fffff]
[    0.421597] pci_bus 0000:0a: resource 2 [mem 0x800a00000-0x800bfffff 64bit pref]
[    0.421598] pci_bus 0000:0b: resource 0 [io  0xc000-0xcfff]
[    0.421599] pci_bus 0000:0b: resource 1 [mem 0x88600000-0x887fffff]
[    0.421600] pci_bus 0000:0b: resource 2 [mem 0x800c00000-0x800dfffff 64bit pref]
[    0.421601] pci_bus 0000:0c: resource 0 [io  0xd000-0xdfff]
[    0.421602] pci_bus 0000:0c: resource 1 [mem 0x88400000-0x885fffff]
[    0.421603] pci_bus 0000:0c: resource 2 [mem 0x800e00000-0x800ffffff 64bit pref]
[    0.421604] pci_bus 0000:0d: resource 0 [io  0xe000-0xefff]
[    0.421605] pci_bus 0000:0d: resource 1 [mem 0x88200000-0x883fffff]
[    0.421606] pci_bus 0000:0d: resource 2 [mem 0x801000000-0x8011fffff 64bit pref]
[    0.421607] pci_bus 0000:0e: resource 0 [io  0xf000-0xffff]
[    0.421608] pci_bus 0000:0e: resource 1 [mem 0x88000000-0x881fffff]
[    0.421609] pci_bus 0000:0e: resource 2 [mem 0x801200000-0x8013fffff 64bit pref]
[    0.421977] ACPI: \_SB_.GSIG: Enabled at IRQ 22
[    0.423060] PCI: CLS 0 bytes, default 64
[    0.423116] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.423117] software IO TLB: mapped [mem 0x0000000076fbe000-0x000000007afbe000] (64MB)
[    0.423211] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x328211acd6a, max_idle_ns: 440795259903 ns
[    0.423263] Trying to unpack rootfs image as initramfs...
[    0.423518] Initialise system trusted keyrings
[    0.423532] Key type blacklist registered
[    0.423651] workingset: timestamp_bits=36 max_order=21 bucket_order=0
[    0.423978] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    0.424132] fuse: init (API version 7.39)
[    0.424307] integrity: Platform Keyring initialized
[    0.424313] integrity: Machine keyring initialized
[    0.435044] Key type asymmetric registered
[    0.435048] Asymmetric key parser 'x509' registered
[    0.435080] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 243)
[    0.435197] io scheduler mq-deadline registered
[    0.442408] pcieport 0000:00:02.0: PME: Signaling with IRQ 24
[    0.442563] pcieport 0000:00:02.0: AER: enabled with IRQ 24
[    0.443334] pcieport 0000:00:02.1: PME: Signaling with IRQ 25
[    0.443501] pcieport 0000:00:02.1: AER: enabled with IRQ 25
[    0.444436] pcieport 0000:00:02.2: PME: Signaling with IRQ 26
[    0.444598] pcieport 0000:00:02.2: AER: enabled with IRQ 26
[    0.445602] pcieport 0000:00:02.3: PME: Signaling with IRQ 27
[    0.445775] pcieport 0000:00:02.3: AER: enabled with IRQ 27
[    0.446703] pcieport 0000:00:02.4: PME: Signaling with IRQ 28
[    0.446859] pcieport 0000:00:02.4: AER: enabled with IRQ 28
[    0.447801] pcieport 0000:00:02.5: PME: Signaling with IRQ 29
[    0.447966] pcieport 0000:00:02.5: AER: enabled with IRQ 29
[    0.448922] pcieport 0000:00:02.6: PME: Signaling with IRQ 30
[    0.449105] pcieport 0000:00:02.6: AER: enabled with IRQ 30
[    0.450069] pcieport 0000:00:02.7: PME: Signaling with IRQ 31
[    0.450229] pcieport 0000:00:02.7: AER: enabled with IRQ 31
[    0.450583] ACPI: \_SB_.GSIH: Enabled at IRQ 23
[    0.451182] pcieport 0000:00:03.0: PME: Signaling with IRQ 32
[    0.451343] pcieport 0000:00:03.0: AER: enabled with IRQ 32
[    0.452279] pcieport 0000:00:03.1: PME: Signaling with IRQ 33
[    0.454082] pcieport 0000:00:03.1: AER: enabled with IRQ 33
[    0.454934] pcieport 0000:00:03.2: PME: Signaling with IRQ 34
[    0.455122] pcieport 0000:00:03.2: AER: enabled with IRQ 34
[    0.455987] pcieport 0000:00:03.3: PME: Signaling with IRQ 35
[    0.456142] pcieport 0000:00:03.3: AER: enabled with IRQ 35
[    0.456989] pcieport 0000:00:03.4: PME: Signaling with IRQ 36
[    0.457128] pcieport 0000:00:03.4: AER: enabled with IRQ 36
[    0.457968] pcieport 0000:00:03.5: PME: Signaling with IRQ 37
[    0.458154] pcieport 0000:00:03.5: AER: enabled with IRQ 37
[    0.458341] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    0.458406] efifb: probing for efifb
[    0.458423] efifb: showing boot graphics
[    0.459348] efifb: framebuffer at 0x84000000, using 3072k, total 3072k
[    0.459350] efifb: mode is 1024x768x32, linelength=4096, pages=1
[    0.459351] efifb: scrolling: redraw
[    0.459351] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    0.459491] fbcon: Deferring console take-over
[    0.459493] fb0: EFI VGA frame buffer device
[    0.459564] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[    0.459640] ACPI: button: Power Button [PWRF]
[    0.464571] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    0.487965] 00:00: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    0.495849] Linux agpgart interface v0.103
[    0.498417] loop: module loaded
[    0.498590] tun: Universal TUN/TAP device driver, 1.6
[    0.498618] PPP generic driver version 2.4.2
[    0.498763] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
[    0.499221] serio: i8042 KBD port at 0x60,0x64 irq 1
[    0.499229] serio: i8042 AUX port at 0x60,0x64 irq 12
[    0.499344] mousedev: PS/2 mouse device common for all mice
[    0.499446] rtc_cmos 00:03: RTC can wake from S4
[    0.499877] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1
[    0.500057] rtc_cmos 00:03: registered as rtc0
[    0.500114] rtc_cmos 00:03: setting system clock to 2024-01-10T05:51:02 UTC (1704865862)
[    0.500176] rtc_cmos 00:03: alarms up to one day, y3k, 242 bytes nvram
[    0.500187] i2c_dev: i2c /dev entries driver
[    0.500212] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[    0.500226] device-mapper: uevent: version 1.0.3
[    0.500280] device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@redhat.com
[    0.500293] intel_pstate: CPU model not supported
[    0.500340] ledtrig-cpu: registered to indicate activity on CPUs
[    0.500510] NET: Registered PF_INET6 protocol family
[    0.790412] Freeing initrd memory: 55548K
[    0.797994] Segment Routing with IPv6
[    0.798030] In-situ OAM (IOAM) with IPv6
[    0.798081] NET: Registered PF_PACKET protocol family
[    0.798162] Key type dns_resolver registered
[    0.798885] IPI shorthand broadcast: enabled
[    0.800059] sched_clock: Marking stable (798019088, 718627)->(844721702, -45983987)
[    0.800309] registered taskstats version 1
[    0.800360] Loading compiled-in X.509 certificates
[    0.800922] Loaded X.509 cert 'Build time autogenerated kernel key: 6bf7f016fb3f6df81ed8362a07357c17158fcd93'
[    0.802597] Key type .fscrypt registered
[    0.802598] Key type fscrypt-provisioning registered
[    0.818007] Key type encrypted registered
[    0.818013] AppArmor: AppArmor sha1 policy hashing enabled
[    0.818495] integrity: Loading X.509 certificate: UEFI:db
[    0.818529] integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
[    0.818531] integrity: Loading X.509 certificate: UEFI:db
[    0.818550] integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
[    0.818733] ima: No TPM chip found, activating TPM-bypass!
[    0.818737] Loading compiled-in module X.509 certificates
[    0.819121] Loaded X.509 cert 'Build time autogenerated kernel key: 6bf7f016fb3f6df81ed8362a07357c17158fcd93'
[    0.819123] ima: Allocated hash algorithm: sha1
[    0.819133] ima: No architecture policies found
[    0.819150] evm: Initialising EVM extended attributes:
[    0.819151] evm: security.selinux
[    0.819154] evm: security.SMACK64
[    0.819155] evm: security.SMACK64EXEC
[    0.819155] evm: security.SMACK64TRANSMUTE
[    0.819156] evm: security.SMACK64MMAP
[    0.819156] evm: security.apparmor
[    0.819157] evm: security.ima
[    0.819157] evm: security.capability
[    0.819158] evm: HMAC attrs: 0x1
[    0.819472] PM:   Magic number: 8:586:870
[    0.819718] RAS: Correctable Errors collector initialized.
[    0.819742] clk: Disabling unused clocks
[    0.820597] Freeing unused decrypted memory: 2028K
[    0.821442] Freeing unused kernel image (initmem) memory: 2580K
[    0.853032] Write protecting the kernel read-only data: 22528k
[    0.853853] Freeing unused kernel image (rodata/data gap) memory: 1032K
[    0.890876] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    0.890880] x86/mm: Checking user space page tables
[    0.926113] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    0.926119] Run /init as init process
[    0.926125]   with arguments:
[    0.926126]     /init
[    0.926127]   with environment:
[    0.926128]     HOME=/
[    0.926128]     TERM=linux
[    0.926129]     BOOT_IMAGE=/boot/vmlinuz-6.7.0-x64v3-dirty
[    1.040003] virtio_blk virtio2: 4/0/0 default/read/poll queues
[    1.053587] ACPI: \_SB_.GSIA: Enabled at IRQ 16
[    1.054295] xhci_hcd 0000:02:00.0: xHCI Host Controller
[    1.054327] xhci_hcd 0000:02:00.0: new USB bus registered, assigned bus number 1
[    1.054434] i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
[    1.054447] virtio_blk virtio2: [vda] 83886080 512-byte logical blocks (42.9 GB/40.0 GiB)
[    1.054987] i2c i2c-0: 1/1 memory slots populated (from DMI)
[    1.054990] i2c i2c-0: Memory type 0x07 not supported yet, not instantiating SPD
[    1.055136] xhci_hcd 0000:02:00.0: hcc params 0x00087001 hci version 0x100 quirks 0x0000000000000010
[    1.056393] lpc_ich 0000:00:1f.0: I/O space for GPIO uninitialized
[    1.056424] xhci_hcd 0000:02:00.0: xHCI Host Controller
[    1.056429] xhci_hcd 0000:02:00.0: new USB bus registered, assigned bus number 2
[    1.056433] xhci_hcd 0000:02:00.0: Host supports USB 3.0 SuperSpeed
[    1.057137] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.07
[    1.057143] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.057145] usb usb1: Product: xHCI Host Controller
[    1.057147] usb usb1: Manufacturer: Linux 6.7.0-x64v3-dirty xhci-hcd
[    1.057148] usb usb1: SerialNumber: 0000:02:00.0
[    1.057800] hub 1-0:1.0: USB hub found
[    1.057943] hub 1-0:1.0: 15 ports detected
[    1.058825] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[    1.058848] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.07
[    1.058851] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.058856] usb usb2: Product: xHCI Host Controller
[    1.058858] usb usb2: Manufacturer: Linux 6.7.0-x64v3-dirty xhci-hcd
[    1.058859] usb usb2: SerialNumber: 0000:02:00.0
[    1.063147] hub 2-0:1.0: USB hub found
[    1.063196] hub 2-0:1.0: 15 ports detected
[    1.063403] ahci 0000:00:1f.2: version 3.0
[    1.065914] ahci 0000:00:1f.2: AHCI 0001.0000 32 slots 6 ports 1.5 Gbps 0x3f impl SATA mode
[    1.065921] ahci 0000:00:1f.2: flags: 64bit ncq only 
[    1.066916] scsi host0: Virtio SCSI HBA
[    1.070629] scsi host1: ahci
[    1.070898] ACPI: bus type drm_connector registered
[    1.071406] scsi host2: ahci
[    1.071684] scsi host3: ahci
[    1.071874] scsi host4: ahci
[    1.072104] scsi host5: ahci
[    1.072648] scsi host6: ahci
[    1.072765] ata1: SATA max UDMA/133 abar m4096@0x89c46000 port 0x89c46100 irq 55 lpm-pol 0
[    1.072774] ata2: SATA max UDMA/133 abar m4096@0x89c46000 port 0x89c46180 irq 55 lpm-pol 0
[    1.072784] ata3: SATA max UDMA/133 abar m4096@0x89c46000 port 0x89c46200 irq 55 lpm-pol 0
[    1.072789] ata4: SATA max UDMA/133 abar m4096@0x89c46000 port 0x89c46280 irq 55 lpm-pol 0
[    1.072795] ata5: SATA max UDMA/133 abar m4096@0x89c46000 port 0x89c46300 irq 55 lpm-pol 0
[    1.072800] ata6: SATA max UDMA/133 abar m4096@0x89c46000 port 0x89c46380 irq 55 lpm-pol 0
[    1.074607]  vda: vda1 vda2 vda3
[    1.076268] virtio_blk virtio6: 4/0/0 default/read/poll queues
[    1.076456] virtio_net virtio0 enp1s0: renamed from eth0
[    1.077537] virtio_blk virtio6: [vdb] 3907035136 512-byte logical blocks (2.00 TB/1.82 TiB)
[    1.313068] usb 1-1: new high-speed USB device number 2 using xhci_hcd
[    1.389063] ata5: SATA link down (SStatus 0 SControl 300)
[    1.389424] ata3: SATA link down (SStatus 0 SControl 300)
[    1.389876] ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    1.390287] ata2: SATA link down (SStatus 0 SControl 300)
[    1.390425] ata1.00: ATAPI: QEMU DVD-ROM, 2.5+, max UDMA/100
[    1.390443] ata1.00: applying bridge limits
[    1.390780] ata6: SATA link down (SStatus 0 SControl 300)
[    1.391204] ata4: SATA link down (SStatus 0 SControl 300)
[    1.391335] ata1.00: configured for UDMA/100
[    1.392314] scsi 1:0:0:0: CD-ROM            QEMU     QEMU DVD-ROM     2.5+ PQ: 0 ANSI: 5
[    1.462278] usb 1-1: New USB device found, idVendor=0627, idProduct=0001, bcdDevice= 0.00
[    1.462292] usb 1-1: New USB device strings: Mfr=1, Product=3, SerialNumber=10
[    1.462298] usb 1-1: Product: QEMU USB Tablet
[    1.462302] usb 1-1: Manufacturer: QEMU
[    1.462306] usb 1-1: SerialNumber: 28754-0000:00:02.1:00.0-1
[    1.469396] sr 1:0:0:0: [sr0] scsi3-mmc drive: 4x/4x cd/rw xa/form2 tray
[    1.469420] cdrom: Uniform CD-ROM driver Revision: 3.20
[    1.478749] hid: raw HID events driver (C) Jiri Kosina
[    1.518294] sr 1:0:0:0: Attached scsi CD-ROM sr0
[    1.518503] sr 1:0:0:0: Attached scsi generic sg0 type 5
[    1.531293] usbcore: registered new interface driver usbhid
[    1.531301] usbhid: USB HID core driver
[    1.543099] input: QEMU QEMU USB Tablet as /devices/pci0000:00/0000:00:02.1/0000:02:00.0/usb1/1-1/1-1:1.0/0003:0627:0001.0001/input/input4
[    1.543966] hid-generic 0003:0627:0001.0001: input,hidraw0: USB HID v0.01 Mouse [QEMU QEMU USB Tablet] on usb-0000:02:00.0-1/input0
[    1.561944] ACPI: \_SB_.GSIF: Enabled at IRQ 21
[    1.562263] qxl 0000:00:01.0: vgaarb: deactivate vga console
[    1.562310] [drm] Device Version 0.0
[    1.562313] [drm] Compression level 0 log level 0
[    1.562315] [drm] 12286 io pages at offset 0x1000000
[    1.562317] [drm] 16777216 byte draw area at offset 0x0
[    1.562319] [drm] RAM header offset: 0x3ffe000
[    1.562454] [drm] qxl: 16M of VRAM memory size
[    1.562457] [drm] qxl: 63M of IO pages memory ready (VRAM domain)
[    1.562459] [drm] qxl: 64M of Surface memory size
[    1.565990] [drm] slot 0 (main): base 0x84000000, size 0x03ffe000
[    1.566136] [drm] slot 1 (surfaces): base 0x80000000, size 0x04000000
[    1.566637] [drm] Initialized qxl 0.1.0 20120117 for 0000:00:01.0 on minor 0
[    1.568545] fbcon: qxldrmfb (fb0) is primary device
[    1.568554] fbcon: Deferring console take-over
[    1.568558] qxl 0000:00:01.0: [drm] fb0: qxldrmfb frame buffer device
[    1.960776] raid6: avx2x4   gen() 28749 MB/s
[    2.028767] raid6: avx2x2   gen() 43098 MB/s
[    2.096770] raid6: avx2x1   gen() 34218 MB/s
[    2.096772] raid6: using algorithm avx2x2 gen() 43098 MB/s
[    2.164721] raid6: .... xor() 23398 MB/s, rmw enabled
[    2.164723] raid6: using avx2x2 recovery algorithm
[    2.165567] xor: automatically using best checksumming function   avx       
[    2.165720] input: ImExPS/2 Generic Explorer Mouse as /devices/platform/i8042/serio1/input/input3
[    2.191202] Btrfs loaded, zoned=yes, fsverity=yes
[    2.363258] PM: Image not found (code -22)
[    2.428849] fbcon: Taking over console
[    2.445145] Console: switching to colour frame buffer device 128x48
[    2.574772] EXT4-fs (vda2): mounted filesystem 5d5180c8-c108-490a-ba5e-16e23b89e553 ro with ordered data mode. Quota mode: none.
[    3.011893] pstore: Using crash dump compression: deflate
[    3.036143] pstore: Registered efi_pstore as persistent store backend
[    3.067427] lp: driver loaded but no devices found
[    3.070794] EXT4-fs (vda2): re-mounted 5d5180c8-c108-490a-ba5e-16e23b89e553 r/w. Quota mode: none.
[    3.079168] ppdev: user-space parallel port driver
[    3.516277] BTRFS: device fsid 1e4fb969-7384-48fb-9377-6fb8817279ee devid 1 transid 38039 /dev/vdb scanned by mount (367)
[    3.541011] BTRFS info (device vdb): first mount of filesystem 1e4fb969-7384-48fb-9377-6fb8817279ee
[    3.541028] BTRFS info (device vdb): using crc32c (crc32c-intel) checksum algorithm
[    3.541038] BTRFS info (device vdb): enabling auto defrag
[    3.541045] BTRFS info (device vdb): force zstd compression, level 3
[    3.541049] BTRFS info (device vdb): using free space tree
[    3.564904] Adding 999420k swap on /dev/vda3.  Priority:-2 extents:1 across:999420k 
[    3.586573] BTRFS info (device vdb): auto enabling async discard
[    3.592370] virtiofs virtio7: virtio_fs_setup_dax: No cache capability
[    3.601581] iTCO_vendor_support: vendor-support=0
[    3.619405] iTCO_wdt iTCO_wdt.1.auto: Found a ICH9 TCO device (Version=2, TCOBASE=0x0660)
[    3.627489] iTCO_wdt iTCO_wdt.1.auto: initialized. heartbeat=30 sec (nowayout=0)
[    3.636854] input: PC Speaker as /devices/platform/pcspkr/input/input5
[    3.647379] Error: Driver 'pcspkr' is already registered, aborting...
[    3.695385] RAPL PMU: API unit is 2^-32 Joules, 0 fixed counters, 10737418240 ms ovfl timer
[    3.706260] cryptd: max_cpu_qlen set to 1000
[    3.715666] AVX2 version of gcm_enc/dec engaged.
[    3.715746] AES CTR mode by8 optimization enabled
[    3.725508] snd_hda_codec_generic hdaudioC0D0: autoconfig for Generic: line_outs=1 (0x3/0x0/0x0/0x0/0x0) type:line
[    3.725514] snd_hda_codec_generic hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    3.725517] snd_hda_codec_generic hdaudioC0D0:    hp_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    3.725519] snd_hda_codec_generic hdaudioC0D0:    mono: mono_out=0x0
[    3.725521] snd_hda_codec_generic hdaudioC0D0:    inputs:
[    3.725522] snd_hda_codec_generic hdaudioC0D0:      Line=0x5
[    3.774314] audit: type=1400 audit(1704865865.772:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe" pid=477 comm="apparmor_parser"
[    3.774320] audit: type=1400 audit(1704865865.772:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe//kmod" pid=477 comm="apparmor_parser"
[    3.774361] audit: type=1400 audit(1704865865.772:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lsb_release" pid=474 comm="apparmor_parser"
[    3.778356] audit: type=1400 audit(1704865865.776:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="postgresql_akonadi" pid=478 comm="apparmor_parser"
[    3.779138] audit: type=1400 audit(1704865865.776:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="mysqld_akonadi" pid=476 comm="apparmor_parser"
[    3.780466] audit: type=1400 audit(1704865865.776:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="mariadbd_akonadi" pid=475 comm="apparmor_parser"
[    3.786027] audit: type=1400 audit(1704865865.784:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/man" pid=481 comm="apparmor_parser"
[    3.786116] audit: type=1400 audit(1704865865.784:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_filter" pid=481 comm="apparmor_parser"
[    3.786124] audit: type=1400 audit(1704865865.784:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_groff" pid=481 comm="apparmor_parser"
[    4.543618] NET: Registered PF_QIPCRTR protocol family
// ---------- btrfs-progs v6.6.3 ----------
[  595.706509] BTRFS info (device vdb): scrub: started on devid 1
[  598.623356] BTRFS critical (device vdb): unable to find chunk map for logical 2214744064 length 4096
[  598.623511] BTRFS critical (device vdb): unable to find chunk map for logical 2214744064 length 45056
[  598.625433] BTRFS critical (device vdb): unable to find chunk map for logical 2214744064 length 4096
[  598.625630] BTRFS critical (device vdb): unable to find chunk map for logical 2214744064 length 4096
[  598.625804] BTRFS critical (device vdb): unable to find chunk map for logical 2214748160 length 4096
[  598.625972] BTRFS critical (device vdb): unable to find chunk map for logical 2214748160 length 4096
[  598.626142] BTRFS critical (device vdb): unable to find chunk map for logical 2214752256 length 4096
[  598.626309] BTRFS critical (device vdb): unable to find chunk map for logical 2214752256 length 4096
[  598.626476] BTRFS critical (device vdb): unable to find chunk map for logical 2214756352 length 4096
[  598.626643] BTRFS critical (device vdb): unable to find chunk map for logical 2214756352 length 4096
[  598.626811] BTRFS critical (device vdb): unable to find chunk map for logical 2214760448 length 4096
[  598.626980] BTRFS critical (device vdb): unable to find chunk map for logical 2214760448 length 4096
[  598.627149] BTRFS critical (device vdb): unable to find chunk map for logical 2214764544 length 4096
[  598.627318] BTRFS critical (device vdb): unable to find chunk map for logical 2214764544 length 4096
[  598.627488] BTRFS critical (device vdb): unable to find chunk map for logical 2214768640 length 4096
[  598.627659] BTRFS critical (device vdb): unable to find chunk map for logical 2214768640 length 4096
[  598.627832] BTRFS critical (device vdb): unable to find chunk map for logical 2214772736 length 4096
[  598.628077] BTRFS critical (device vdb): unable to find chunk map for logical 2214772736 length 4096
[  598.628219] BTRFS critical (device vdb): unable to find chunk map for logical 2214776832 length 4096
[  598.628396] BTRFS critical (device vdb): unable to find chunk map for logical 2214776832 length 4096
[  598.628630] BTRFS critical (device vdb): unable to find chunk map for logical 2214780928 length 4096
[  598.628826] BTRFS critical (device vdb): unable to find chunk map for logical 2214780928 length 4096
[  598.629044] BTRFS critical (device vdb): unable to find chunk map for logical 2214785024 length 4096
[  598.629241] BTRFS critical (device vdb): unable to find chunk map for logical 2214785024 length 4096
[  598.629607] BTRFS error (device vdb): fixed up error at logical 2214723584 on dev /dev/vdb physical 2214723584
[  598.629694] BTRFS error (device vdb): fixed up error at logical 2214723584 on dev /dev/vdb physical 2214723584
[  598.629706] BTRFS error (device vdb): fixed up error at logical 2214723584 on dev /dev/vdb physical 2214723584
[  598.629708] BTRFS error (device vdb): fixed up error at logical 2214723584 on dev /dev/vdb physical 2214723584
[  598.629711] BTRFS error (device vdb): fixed up error at logical 2214723584 on dev /dev/vdb physical 2214723584
[ 1088.700029] BTRFS critical (device vdb): unable to find chunk map for logical 463895601152 length 4096
[ 1088.700418] BTRFS critical (device vdb): unable to find chunk map for logical 463895601152 length 57344
[ 1088.701650] BTRFS critical (device vdb): unable to find chunk map for logical 463895601152 length 4096
[ 1088.702088] BTRFS critical (device vdb): unable to find chunk map for logical 463895601152 length 4096
[ 1088.702450] BTRFS critical (device vdb): unable to find chunk map for logical 463895605248 length 4096
[ 1088.702790] BTRFS critical (device vdb): unable to find chunk map for logical 463895605248 length 4096
[ 1088.703148] BTRFS critical (device vdb): unable to find chunk map for logical 463895609344 length 4096
[ 1088.703564] BTRFS critical (device vdb): unable to find chunk map for logical 463895609344 length 4096
[ 1088.704017] BTRFS critical (device vdb): unable to find chunk map for logical 463895613440 length 4096
[ 1088.704393] BTRFS critical (device vdb): unable to find chunk map for logical 463895613440 length 4096
[ 1088.704752] BTRFS critical (device vdb): unable to find chunk map for logical 463895617536 length 4096
[ 1088.705106] BTRFS critical (device vdb): unable to find chunk map for logical 463895617536 length 4096
[ 1088.705483] BTRFS critical (device vdb): unable to find chunk map for logical 463895621632 length 4096
[ 1088.705880] BTRFS critical (device vdb): unable to find chunk map for logical 463895621632 length 4096
[ 1088.706231] BTRFS critical (device vdb): unable to find chunk map for logical 463895625728 length 4096
[ 1088.706583] BTRFS critical (device vdb): unable to find chunk map for logical 463895625728 length 4096
[ 1088.706979] BTRFS critical (device vdb): unable to find chunk map for logical 463895629824 length 4096
[ 1088.707387] BTRFS critical (device vdb): unable to find chunk map for logical 463895629824 length 4096
[ 1088.707795] BTRFS critical (device vdb): unable to find chunk map for logical 463895633920 length 4096
[ 1088.708191] BTRFS critical (device vdb): unable to find chunk map for logical 463895633920 length 4096
[ 1088.708585] BTRFS critical (device vdb): unable to find chunk map for logical 463895638016 length 4096
[ 1088.708980] BTRFS critical (device vdb): unable to find chunk map for logical 463895638016 length 4096
[ 1088.709380] BTRFS critical (device vdb): unable to find chunk map for logical 463895642112 length 4096
[ 1088.709820] BTRFS critical (device vdb): unable to find chunk map for logical 463895642112 length 4096
[ 1088.710217] BTRFS critical (device vdb): unable to find chunk map for logical 463895646208 length 4096
[ 1088.710606] BTRFS critical (device vdb): unable to find chunk map for logical 463895646208 length 4096
[ 1088.711000] BTRFS critical (device vdb): unable to find chunk map for logical 463895650304 length 4096
[ 1088.711390] BTRFS critical (device vdb): unable to find chunk map for logical 463895650304 length 4096
[ 1088.711800] BTRFS critical (device vdb): unable to find chunk map for logical 463895654400 length 4096
[ 1088.712157] BTRFS critical (device vdb): unable to find chunk map for logical 463895654400 length 4096
[ 1088.716213] BTRFS error (device vdb): fixed up error at logical 463895592960 on dev /dev/vdb physical 463895592960
[ 1088.716231] BTRFS error (device vdb): fixed up error at logical 463895592960 on dev /dev/vdb physical 463895592960
[ 1376.175159] BTRFS critical (device vdb): unable to find chunk map for logical 839699791872 length 4096
[ 1376.175670] BTRFS critical (device vdb): unable to find chunk map for logical 839699791872 length 16384
[ 1376.180533] BTRFS critical (device vdb): unable to find chunk map for logical 839699791872 length 4096
[ 1376.180851] BTRFS critical (device vdb): unable to find chunk map for logical 839699791872 length 4096
[ 1376.181395] BTRFS critical (device vdb): unable to find chunk map for logical 839699795968 length 4096
[ 1376.181752] BTRFS critical (device vdb): unable to find chunk map for logical 839699795968 length 4096
[ 1376.182127] BTRFS critical (device vdb): unable to find chunk map for logical 839699800064 length 4096
[ 1376.182466] BTRFS critical (device vdb): unable to find chunk map for logical 839699800064 length 4096
[ 1376.182853] BTRFS critical (device vdb): unable to find chunk map for logical 839699804160 length 4096
[ 1376.183125] BTRFS critical (device vdb): unable to find chunk map for logical 839699804160 length 4096
[ 1376.184072] BTRFS error (device vdb): fixed up error at logical 839699742720 on dev /dev/vdb physical 839699742720
[ 1376.184088] BTRFS error (device vdb): fixed up error at logical 839699742720 on dev /dev/vdb physical 839699742720
[ 1376.184116] BTRFS error (device vdb): fixed up error at logical 839699742720 on dev /dev/vdb physical 839699742720
[ 1376.184123] BTRFS error (device vdb): fixed up error at logical 839699742720 on dev /dev/vdb physical 839699742720
[ 1376.184130] BTRFS error (device vdb): fixed up error at logical 839699742720 on dev /dev/vdb physical 839699742720
[ 1376.184136] BTRFS error (device vdb): fixed up error at logical 839699742720 on dev /dev/vdb physical 839699742720
[ 1376.184143] BTRFS error (device vdb): fixed up error at logical 839699742720 on dev /dev/vdb physical 839699742720
[ 1376.184149] BTRFS error (device vdb): fixed up error at logical 839699742720 on dev /dev/vdb physical 839699742720
[ 1376.184163] BTRFS error (device vdb): fixed up error at logical 839699742720 on dev /dev/vdb physical 839699742720
[ 1376.184169] BTRFS error (device vdb): fixed up error at logical 839699742720 on dev /dev/vdb physical 839699742720
[ 1511.865914] BTRFS critical (device vdb): unable to find chunk map for logical 1016250572800 length 4096
[ 1511.866052] BTRFS critical (device vdb): unable to find chunk map for logical 1016250572800 length 57344
[ 1511.866393] BTRFS critical (device vdb): unable to find chunk map for logical 1016250572800 length 4096
[ 1511.866519] BTRFS critical (device vdb): unable to find chunk map for logical 1016250572800 length 4096
[ 1511.866634] BTRFS critical (device vdb): unable to find chunk map for logical 1016250576896 length 4096
[ 1511.866746] BTRFS critical (device vdb): unable to find chunk map for logical 1016250576896 length 4096
[ 1511.866856] BTRFS critical (device vdb): unable to find chunk map for logical 1016250580992 length 4096
[ 1511.866985] BTRFS critical (device vdb): unable to find chunk map for logical 1016250580992 length 4096
[ 1511.867101] BTRFS critical (device vdb): unable to find chunk map for logical 1016250585088 length 4096
[ 1511.867229] BTRFS critical (device vdb): unable to find chunk map for logical 1016250585088 length 4096
[ 1511.867343] BTRFS critical (device vdb): unable to find chunk map for logical 1016250589184 length 4096
[ 1511.867456] BTRFS critical (device vdb): unable to find chunk map for logical 1016250589184 length 4096
[ 1511.867569] BTRFS critical (device vdb): unable to find chunk map for logical 1016250593280 length 4096
[ 1511.867681] BTRFS critical (device vdb): unable to find chunk map for logical 1016250593280 length 4096
[ 1511.867793] BTRFS critical (device vdb): unable to find chunk map for logical 1016250597376 length 4096
[ 1511.867905] BTRFS critical (device vdb): unable to find chunk map for logical 1016250597376 length 4096
[ 1511.868020] BTRFS critical (device vdb): unable to find chunk map for logical 1016250601472 length 4096
[ 1511.868137] BTRFS critical (device vdb): unable to find chunk map for logical 1016250601472 length 4096
[ 1511.868253] BTRFS critical (device vdb): unable to find chunk map for logical 1016250605568 length 4096
[ 1511.868367] BTRFS critical (device vdb): unable to find chunk map for logical 1016250605568 length 4096
[ 1511.868481] BTRFS critical (device vdb): unable to find chunk map for logical 1016250609664 length 4096
[ 1511.868594] BTRFS critical (device vdb): unable to find chunk map for logical 1016250609664 length 4096
[ 1511.868707] BTRFS critical (device vdb): unable to find chunk map for logical 1016250613760 length 4096
[ 1511.868819] BTRFS critical (device vdb): unable to find chunk map for logical 1016250613760 length 4096
[ 1511.868952] BTRFS critical (device vdb): unable to find chunk map for logical 1016250617856 length 4096
[ 1511.869109] BTRFS critical (device vdb): unable to find chunk map for logical 1016250617856 length 4096
[ 1511.869231] BTRFS critical (device vdb): unable to find chunk map for logical 1016250621952 length 4096
[ 1511.869373] BTRFS critical (device vdb): unable to find chunk map for logical 1016250621952 length 4096
[ 1511.869495] BTRFS critical (device vdb): unable to find chunk map for logical 1016250626048 length 4096
[ 1511.869614] BTRFS critical (device vdb): unable to find chunk map for logical 1016250626048 length 4096
[ 1511.871327] scrub_stripe_report_errors: 2 callbacks suppressed
[ 1511.871330] BTRFS error (device vdb): fixed up error at logical 1016250564608 on dev /dev/vdb physical 1016250564608
[ 1511.871335] BTRFS error (device vdb): fixed up error at logical 1016250564608 on dev /dev/vdb physical 1016250564608
[ 1517.278546] BTRFS critical (device vdb): unable to find chunk map for logical 1020487249920 length 4096
[ 1517.279019] BTRFS critical (device vdb): unable to find chunk map for logical 1020487249920 length 20480
[ 1517.301183] BTRFS critical (device vdb): unable to find chunk map for logical 1020487249920 length 4096
[ 1517.301487] BTRFS critical (device vdb): unable to find chunk map for logical 1020487249920 length 4096
[ 1517.301778] BTRFS critical (device vdb): unable to find chunk map for logical 1020487254016 length 4096
[ 1517.301997] BTRFS critical (device vdb): unable to find chunk map for logical 1020487254016 length 4096
[ 1517.302177] BTRFS critical (device vdb): unable to find chunk map for logical 1020487258112 length 4096
[ 1517.302351] BTRFS critical (device vdb): unable to find chunk map for logical 1020487258112 length 4096
[ 1517.302522] BTRFS critical (device vdb): unable to find chunk map for logical 1020487262208 length 4096
[ 1517.302693] BTRFS critical (device vdb): unable to find chunk map for logical 1020487262208 length 4096
[ 1517.302862] BTRFS critical (device vdb): unable to find chunk map for logical 1020487266304 length 4096
[ 1517.303036] BTRFS critical (device vdb): unable to find chunk map for logical 1020487266304 length 4096
[ 1517.304312] BTRFS error (device vdb): fixed up error at logical 1020487204864 on dev /dev/vdb physical 1020487204864
[ 1517.304322] BTRFS error (device vdb): fixed up error at logical 1020487204864 on dev /dev/vdb physical 1020487204864
[ 1517.304327] BTRFS error (device vdb): fixed up error at logical 1020487204864 on dev /dev/vdb physical 1020487204864
[ 1517.304330] BTRFS error (device vdb): fixed up error at logical 1020487204864 on dev /dev/vdb physical 1020487204864
[ 1517.304334] BTRFS error (device vdb): fixed up error at logical 1020487204864 on dev /dev/vdb physical 1020487204864
[ 1517.304337] BTRFS error (device vdb): fixed up error at logical 1020487204864 on dev /dev/vdb physical 1020487204864
[ 1517.304341] BTRFS error (device vdb): fixed up error at logical 1020487204864 on dev /dev/vdb physical 1020487204864
[ 1517.304345] BTRFS error (device vdb): fixed up error at logical 1020487204864 on dev /dev/vdb physical 1020487204864
[ 1517.304348] BTRFS error (device vdb): fixed up error at logical 1020487204864 on dev /dev/vdb physical 1020487204864
[ 1517.304352] BTRFS error (device vdb): fixed up error at logical 1020487204864 on dev /dev/vdb physical 1020487204864
[ 1530.712432] BTRFS critical (device vdb): unable to find chunk map for logical 1030859419648 length 4096
[ 1530.712927] BTRFS critical (device vdb): unable to find chunk map for logical 1030859419648 length 36864
[ 1530.716600] BTRFS critical (device vdb): unable to find chunk map for logical 1030859419648 length 4096
[ 1530.717001] BTRFS critical (device vdb): unable to find chunk map for logical 1030859419648 length 4096
[ 1530.717368] BTRFS critical (device vdb): unable to find chunk map for logical 1030859423744 length 4096
[ 1530.717635] BTRFS critical (device vdb): unable to find chunk map for logical 1030859423744 length 4096
[ 1530.717888] BTRFS critical (device vdb): unable to find chunk map for logical 1030859427840 length 4096
[ 1530.718145] BTRFS critical (device vdb): unable to find chunk map for logical 1030859427840 length 4096
[ 1530.718395] BTRFS critical (device vdb): unable to find chunk map for logical 1030859431936 length 4096
[ 1530.718647] BTRFS critical (device vdb): unable to find chunk map for logical 1030859431936 length 4096
[ 1530.718983] BTRFS critical (device vdb): unable to find chunk map for logical 1030859436032 length 4096
[ 1530.719370] BTRFS critical (device vdb): unable to find chunk map for logical 1030859436032 length 4096
[ 1530.719666] BTRFS critical (device vdb): unable to find chunk map for logical 1030859440128 length 4096
[ 1530.719991] BTRFS critical (device vdb): unable to find chunk map for logical 1030859440128 length 4096
[ 1530.720364] BTRFS critical (device vdb): unable to find chunk map for logical 1030859444224 length 4096
[ 1530.720729] BTRFS critical (device vdb): unable to find chunk map for logical 1030859444224 length 4096
[ 1530.721102] BTRFS critical (device vdb): unable to find chunk map for logical 1030859448320 length 4096
[ 1530.721431] BTRFS critical (device vdb): unable to find chunk map for logical 1030859448320 length 4096
[ 1530.721750] BTRFS critical (device vdb): unable to find chunk map for logical 1030859452416 length 4096
[ 1530.722070] BTRFS critical (device vdb): unable to find chunk map for logical 1030859452416 length 4096
[ 1530.723559] scrub_stripe_report_errors: 1 callbacks suppressed
[ 1530.723679] BTRFS error (device vdb): fixed up error at logical 1030859390976 on dev /dev/vdb physical 1030859390976
[ 1530.723693] BTRFS error (device vdb): fixed up error at logical 1030859390976 on dev /dev/vdb physical 1030859390976
[ 1530.723702] BTRFS error (device vdb): fixed up error at logical 1030859390976 on dev /dev/vdb physical 1030859390976
[ 1530.723709] BTRFS error (device vdb): fixed up error at logical 1030859390976 on dev /dev/vdb physical 1030859390976
[ 1530.723715] BTRFS error (device vdb): fixed up error at logical 1030859390976 on dev /dev/vdb physical 1030859390976
[ 1530.723721] BTRFS error (device vdb): fixed up error at logical 1030859390976 on dev /dev/vdb physical 1030859390976
[ 1530.723727] BTRFS error (device vdb): fixed up error at logical 1030859390976 on dev /dev/vdb physical 1030859390976
[ 1531.423200] BTRFS critical (device vdb): unable to find chunk map for logical 1033007480832 length 4096
[ 1531.423567] BTRFS critical (device vdb): unable to find chunk map for logical 1033007480832 length 49152
[ 1531.426405] BTRFS critical (device vdb): unable to find chunk map for logical 1033007480832 length 4096
[ 1531.427010] BTRFS critical (device vdb): unable to find chunk map for logical 1033007480832 length 4096
[ 1531.427326] BTRFS critical (device vdb): unable to find chunk map for logical 1033007484928 length 4096
[ 1531.427616] BTRFS critical (device vdb): unable to find chunk map for logical 1033007484928 length 4096
[ 1531.428032] BTRFS critical (device vdb): unable to find chunk map for logical 1033007489024 length 4096
[ 1531.428487] BTRFS critical (device vdb): unable to find chunk map for logical 1033007489024 length 4096
[ 1531.429016] BTRFS critical (device vdb): unable to find chunk map for logical 1033007493120 length 4096
[ 1531.429470] BTRFS critical (device vdb): unable to find chunk map for logical 1033007493120 length 4096
[ 1531.429924] BTRFS critical (device vdb): unable to find chunk map for logical 1033007497216 length 4096
[ 1531.430411] BTRFS critical (device vdb): unable to find chunk map for logical 1033007497216 length 4096
[ 1531.431043] BTRFS critical (device vdb): unable to find chunk map for logical 1033007501312 length 4096
[ 1531.431510] BTRFS critical (device vdb): unable to find chunk map for logical 1033007501312 length 4096
[ 1531.431961] BTRFS critical (device vdb): unable to find chunk map for logical 1033007505408 length 4096
[ 1531.432426] BTRFS critical (device vdb): unable to find chunk map for logical 1033007505408 length 4096
[ 1531.432873] BTRFS critical (device vdb): unable to find chunk map for logical 1033007509504 length 4096
[ 1531.433365] BTRFS critical (device vdb): unable to find chunk map for logical 1033007509504 length 4096
[ 1531.433995] BTRFS critical (device vdb): unable to find chunk map for logical 1033007513600 length 4096
[ 1531.434457] BTRFS critical (device vdb): unable to find chunk map for logical 1033007513600 length 4096
[ 1531.434955] BTRFS critical (device vdb): unable to find chunk map for logical 1033007517696 length 4096
[ 1531.435425] BTRFS critical (device vdb): unable to find chunk map for logical 1033007517696 length 4096
[ 1531.435882] BTRFS critical (device vdb): unable to find chunk map for logical 1033007521792 length 4096
[ 1531.436340] BTRFS critical (device vdb): unable to find chunk map for logical 1033007521792 length 4096
[ 1531.436801] BTRFS critical (device vdb): unable to find chunk map for logical 1033007525888 length 4096
[ 1531.437306] BTRFS critical (device vdb): unable to find chunk map for logical 1033007525888 length 4096
[ 1531.439214] BTRFS error (device vdb): fixed up error at logical 1033007464448 on dev /dev/vdb physical 1033007464448
[ 1531.439230] BTRFS error (device vdb): fixed up error at logical 1033007464448 on dev /dev/vdb physical 1033007464448
[ 1531.439238] BTRFS error (device vdb): fixed up error at logical 1033007464448 on dev /dev/vdb physical 1033007464448
[ 1535.497671] BTRFS critical (device vdb): unable to find chunk map for logical 1035155181568 length 4096
[ 1535.497828] BTRFS critical (device vdb): unable to find chunk map for logical 1035155181568 length 8192
[ 1535.499733] BTRFS critical (device vdb): unable to find chunk map for logical 1035155181568 length 4096
[ 1535.499909] BTRFS critical (device vdb): unable to find chunk map for logical 1035155181568 length 4096
[ 1535.500011] BTRFS critical (device vdb): unable to find chunk map for logical 1035155185664 length 4096
[ 1535.500107] BTRFS critical (device vdb): unable to find chunk map for logical 1035155185664 length 4096
[ 1552.252806] BTRFS critical (device vdb): unable to find chunk map for logical 1048041410560 length 4096
[ 1552.253318] BTRFS critical (device vdb): unable to find chunk map for logical 1048041410560 length 12288
[ 1552.266551] BTRFS critical (device vdb): unable to find chunk map for logical 1048041410560 length 4096
[ 1552.267020] BTRFS critical (device vdb): unable to find chunk map for logical 1048041410560 length 4096
[ 1552.267453] BTRFS critical (device vdb): unable to find chunk map for logical 1048041414656 length 4096
[ 1552.267879] BTRFS critical (device vdb): unable to find chunk map for logical 1048041414656 length 4096
[ 1552.268301] BTRFS critical (device vdb): unable to find chunk map for logical 1048041418752 length 4096
[ 1552.268855] BTRFS critical (device vdb): unable to find chunk map for logical 1048041418752 length 4096
[ 1552.270329] scrub_stripe_report_errors: 14 callbacks suppressed
[ 1552.270339] BTRFS error (device vdb): fixed up error at logical 1048041357312 on dev /dev/vdb physical 1048041357312
[ 1552.270354] BTRFS error (device vdb): fixed up error at logical 1048041357312 on dev /dev/vdb physical 1048041357312
[ 1552.270363] BTRFS error (device vdb): fixed up error at logical 1048041357312 on dev /dev/vdb physical 1048041357312
[ 1552.270370] BTRFS error (device vdb): fixed up error at logical 1048041357312 on dev /dev/vdb physical 1048041357312
[ 1552.270414] BTRFS error (device vdb): fixed up error at logical 1048041357312 on dev /dev/vdb physical 1048041357312
[ 1552.270419] BTRFS error (device vdb): fixed up error at logical 1048041357312 on dev /dev/vdb physical 1048041357312
[ 1552.270424] BTRFS error (device vdb): fixed up error at logical 1048041357312 on dev /dev/vdb physical 1048041357312
[ 1552.270429] BTRFS error (device vdb): fixed up error at logical 1048041357312 on dev /dev/vdb physical 1048041357312
[ 1552.270435] BTRFS error (device vdb): fixed up error at logical 1048041357312 on dev /dev/vdb physical 1048041357312
[ 1552.270441] BTRFS error (device vdb): fixed up error at logical 1048041357312 on dev /dev/vdb physical 1048041357312
[ 1567.566902] BTRFS critical (device vdb): unable to find chunk map for logical 1084548718592 length 4096
[ 1567.567425] BTRFS critical (device vdb): unable to find chunk map for logical 1084548718592 length 57344
[ 1567.573002] BTRFS critical (device vdb): unable to find chunk map for logical 1084548718592 length 4096
[ 1567.576398] BTRFS critical (device vdb): unable to find chunk map for logical 1084548718592 length 4096
[ 1567.576765] BTRFS critical (device vdb): unable to find chunk map for logical 1084548722688 length 4096
[ 1567.577108] BTRFS critical (device vdb): unable to find chunk map for logical 1084548722688 length 4096
[ 1567.577458] BTRFS critical (device vdb): unable to find chunk map for logical 1084548726784 length 4096
[ 1567.577745] BTRFS critical (device vdb): unable to find chunk map for logical 1084548726784 length 4096
[ 1567.578029] BTRFS critical (device vdb): unable to find chunk map for logical 1084548730880 length 4096
[ 1567.578328] BTRFS critical (device vdb): unable to find chunk map for logical 1084548730880 length 4096
[ 1567.578589] BTRFS critical (device vdb): unable to find chunk map for logical 1084548734976 length 4096
[ 1567.578845] BTRFS critical (device vdb): unable to find chunk map for logical 1084548734976 length 4096
[ 1567.579144] BTRFS critical (device vdb): unable to find chunk map for logical 1084548739072 length 4096
[ 1567.579434] BTRFS critical (device vdb): unable to find chunk map for logical 1084548739072 length 4096
[ 1567.579717] BTRFS critical (device vdb): unable to find chunk map for logical 1084548743168 length 4096
[ 1567.580029] BTRFS critical (device vdb): unable to find chunk map for logical 1084548743168 length 4096
[ 1567.580369] BTRFS critical (device vdb): unable to find chunk map for logical 1084548747264 length 4096
[ 1567.580669] BTRFS critical (device vdb): unable to find chunk map for logical 1084548747264 length 4096
[ 1567.580928] BTRFS critical (device vdb): unable to find chunk map for logical 1084548751360 length 4096
[ 1567.581185] BTRFS critical (device vdb): unable to find chunk map for logical 1084548751360 length 4096
[ 1567.581443] BTRFS critical (device vdb): unable to find chunk map for logical 1084548755456 length 4096
[ 1567.581705] BTRFS critical (device vdb): unable to find chunk map for logical 1084548755456 length 4096
[ 1567.581965] BTRFS critical (device vdb): unable to find chunk map for logical 1084548759552 length 4096
[ 1567.582261] BTRFS critical (device vdb): unable to find chunk map for logical 1084548759552 length 4096
[ 1567.582526] BTRFS critical (device vdb): unable to find chunk map for logical 1084548763648 length 4096
[ 1567.582790] BTRFS critical (device vdb): unable to find chunk map for logical 1084548763648 length 4096
[ 1567.583051] BTRFS critical (device vdb): unable to find chunk map for logical 1084548767744 length 4096
[ 1567.583308] BTRFS critical (device vdb): unable to find chunk map for logical 1084548767744 length 4096
[ 1567.583565] BTRFS critical (device vdb): unable to find chunk map for logical 1084548771840 length 4096
[ 1567.583821] BTRFS critical (device vdb): unable to find chunk map for logical 1084548771840 length 4096
[ 1567.584561] scrub_stripe_report_errors: 3 callbacks suppressed
[ 1567.584569] BTRFS error (device vdb): fixed up error at logical 1084548710400 on dev /dev/vdb physical 1084548710400
[ 1567.584579] BTRFS error (device vdb): fixed up error at logical 1084548710400 on dev /dev/vdb physical 1084548710400
[ 1568.283034] BTRFS critical (device vdb): unable to find chunk map for logical 1091216695296 length 4096
[ 1568.283495] BTRFS critical (device vdb): unable to find chunk map for logical 1091216695296 length 40960
[ 1568.294586] BTRFS critical (device vdb): unable to find chunk map for logical 1091216695296 length 4096
[ 1568.294855] BTRFS critical (device vdb): unable to find chunk map for logical 1091216695296 length 4096
[ 1568.295107] BTRFS critical (device vdb): unable to find chunk map for logical 1091216699392 length 4096
[ 1568.295354] BTRFS critical (device vdb): unable to find chunk map for logical 1091216699392 length 4096
[ 1568.295597] BTRFS critical (device vdb): unable to find chunk map for logical 1091216703488 length 4096
[ 1568.295841] BTRFS critical (device vdb): unable to find chunk map for logical 1091216703488 length 4096
[ 1568.296094] BTRFS critical (device vdb): unable to find chunk map for logical 1091216707584 length 4096
[ 1568.296375] BTRFS critical (device vdb): unable to find chunk map for logical 1091216707584 length 4096
[ 1568.296617] BTRFS critical (device vdb): unable to find chunk map for logical 1091216711680 length 4096
[ 1568.296851] BTRFS critical (device vdb): unable to find chunk map for logical 1091216711680 length 4096
[ 1568.297086] BTRFS critical (device vdb): unable to find chunk map for logical 1091216715776 length 4096
[ 1568.297309] BTRFS critical (device vdb): unable to find chunk map for logical 1091216715776 length 4096
[ 1568.297543] BTRFS critical (device vdb): unable to find chunk map for logical 1091216719872 length 4096
[ 1568.297780] BTRFS critical (device vdb): unable to find chunk map for logical 1091216719872 length 4096
[ 1568.298016] BTRFS critical (device vdb): unable to find chunk map for logical 1091216723968 length 4096
[ 1568.298272] BTRFS critical (device vdb): unable to find chunk map for logical 1091216723968 length 4096
[ 1568.298506] BTRFS critical (device vdb): unable to find chunk map for logical 1091216728064 length 4096
[ 1568.298737] BTRFS critical (device vdb): unable to find chunk map for logical 1091216728064 length 4096
[ 1568.299000] BTRFS critical (device vdb): unable to find chunk map for logical 1091216732160 length 4096
[ 1568.299241] BTRFS critical (device vdb): unable to find chunk map for logical 1091216732160 length 4096
[ 1568.303808] BTRFS error (device vdb): fixed up error at logical 1091216670720 on dev /dev/vdb physical 1091216670720
[ 1568.303819] BTRFS error (device vdb): fixed up error at logical 1091216670720 on dev /dev/vdb physical 1091216670720
[ 1568.303824] BTRFS error (device vdb): fixed up error at logical 1091216670720 on dev /dev/vdb physical 1091216670720
[ 1568.303829] BTRFS error (device vdb): fixed up error at logical 1091216670720 on dev /dev/vdb physical 1091216670720
[ 1568.303832] BTRFS error (device vdb): fixed up error at logical 1091216670720 on dev /dev/vdb physical 1091216670720
[ 1568.303836] BTRFS error (device vdb): fixed up error at logical 1091216670720 on dev /dev/vdb physical 1091216670720
[ 1568.727089] BTRFS critical (device vdb): unable to find chunk map for logical 1095442223104 length 4096
[ 1568.727223] BTRFS critical (device vdb): unable to find chunk map for logical 1095442223104 length 12288
[ 1568.730801] BTRFS critical (device vdb): unable to find chunk map for logical 1095442223104 length 4096
[ 1568.732061] BTRFS critical (device vdb): unable to find chunk map for logical 1095442223104 length 4096
[ 1568.732378] BTRFS critical (device vdb): unable to find chunk map for logical 1095442227200 length 4096
[ 1568.732495] BTRFS critical (device vdb): unable to find chunk map for logical 1095442227200 length 4096
[ 1568.732958] BTRFS critical (device vdb): unable to find chunk map for logical 1095442231296 length 4096
[ 1568.733067] BTRFS critical (device vdb): unable to find chunk map for logical 1095442231296 length 4096
[ 1568.733318] BTRFS error (device vdb): fixed up error at logical 1095442169856 on dev /dev/vdb physical 1095442169856
[ 1568.733386] BTRFS error (device vdb): fixed up error at logical 1095442169856 on dev /dev/vdb physical 1095442169856
[ 1573.200200] BTRFS critical (device vdb): unable to find chunk map for logical 1104076398592 length 4096
[ 1573.200328] BTRFS critical (device vdb): unable to find chunk map for logical 1104076398592 length 8192
[ 1573.204927] BTRFS critical (device vdb): unable to find chunk map for logical 1104076398592 length 4096
[ 1573.205019] BTRFS critical (device vdb): unable to find chunk map for logical 1104076398592 length 4096
[ 1573.205091] BTRFS critical (device vdb): unable to find chunk map for logical 1104076402688 length 4096
[ 1573.205161] BTRFS critical (device vdb): unable to find chunk map for logical 1104076402688 length 4096
[ 1573.206031] scrub_stripe_report_errors: 11 callbacks suppressed
[ 1573.206034] BTRFS error (device vdb): fixed up error at logical 1104076341248 on dev /dev/vdb physical 1104076341248
[ 1573.206039] BTRFS error (device vdb): fixed up error at logical 1104076341248 on dev /dev/vdb physical 1104076341248
[ 1573.206041] BTRFS error (device vdb): fixed up error at logical 1104076341248 on dev /dev/vdb physical 1104076341248
[ 1573.206043] BTRFS error (device vdb): fixed up error at logical 1104076341248 on dev /dev/vdb physical 1104076341248
[ 1573.206045] BTRFS error (device vdb): fixed up error at logical 1104076341248 on dev /dev/vdb physical 1104076341248
[ 1573.206047] BTRFS error (device vdb): fixed up error at logical 1104076341248 on dev /dev/vdb physical 1104076341248
[ 1573.206048] BTRFS error (device vdb): fixed up error at logical 1104076341248 on dev /dev/vdb physical 1104076341248
[ 1574.527224] BTRFS critical (device vdb): unable to find chunk map for logical 1106023555072 length 4096
[ 1574.527344] BTRFS critical (device vdb): unable to find chunk map for logical 1106023555072 length 57344
[ 1574.530696] BTRFS critical (device vdb): unable to find chunk map for logical 1106023555072 length 4096
[ 1574.530819] BTRFS critical (device vdb): unable to find chunk map for logical 1106023555072 length 4096
[ 1574.530927] BTRFS critical (device vdb): unable to find chunk map for logical 1106023559168 length 4096
[ 1574.531017] BTRFS critical (device vdb): unable to find chunk map for logical 1106023559168 length 4096
[ 1574.531090] BTRFS critical (device vdb): unable to find chunk map for logical 1106023563264 length 4096
[ 1574.531164] BTRFS critical (device vdb): unable to find chunk map for logical 1106023563264 length 4096
[ 1574.531231] BTRFS critical (device vdb): unable to find chunk map for logical 1106023567360 length 4096
[ 1574.531298] BTRFS critical (device vdb): unable to find chunk map for logical 1106023567360 length 4096
[ 1574.531365] BTRFS critical (device vdb): unable to find chunk map for logical 1106023571456 length 4096
[ 1574.531432] BTRFS critical (device vdb): unable to find chunk map for logical 1106023571456 length 4096
[ 1574.531497] BTRFS critical (device vdb): unable to find chunk map for logical 1106023575552 length 4096
[ 1574.531563] BTRFS critical (device vdb): unable to find chunk map for logical 1106023575552 length 4096
[ 1574.531629] BTRFS critical (device vdb): unable to find chunk map for logical 1106023579648 length 4096
[ 1574.531694] BTRFS critical (device vdb): unable to find chunk map for logical 1106023579648 length 4096
[ 1574.531759] BTRFS critical (device vdb): unable to find chunk map for logical 1106023583744 length 4096
[ 1574.531825] BTRFS critical (device vdb): unable to find chunk map for logical 1106023583744 length 4096
[ 1574.531912] BTRFS critical (device vdb): unable to find chunk map for logical 1106023587840 length 4096
[ 1574.531983] BTRFS critical (device vdb): unable to find chunk map for logical 1106023587840 length 4096
[ 1574.532053] BTRFS critical (device vdb): unable to find chunk map for logical 1106023591936 length 4096
[ 1574.532182] BTRFS critical (device vdb): unable to find chunk map for logical 1106023591936 length 4096
[ 1574.532291] BTRFS critical (device vdb): unable to find chunk map for logical 1106023596032 length 4096
[ 1574.532364] BTRFS critical (device vdb): unable to find chunk map for logical 1106023596032 length 4096
[ 1574.532435] BTRFS critical (device vdb): unable to find chunk map for logical 1106023600128 length 4096
[ 1574.532507] BTRFS critical (device vdb): unable to find chunk map for logical 1106023600128 length 4096
[ 1574.532577] BTRFS critical (device vdb): unable to find chunk map for logical 1106023604224 length 4096
[ 1574.532648] BTRFS critical (device vdb): unable to find chunk map for logical 1106023604224 length 4096
[ 1574.532718] BTRFS critical (device vdb): unable to find chunk map for logical 1106023608320 length 4096
[ 1574.532789] BTRFS critical (device vdb): unable to find chunk map for logical 1106023608320 length 4096
[ 1574.533116] BTRFS error (device vdb): fixed up error at logical 1106023546880 on dev /dev/vdb physical 1106023546880
[ 1574.533119] BTRFS error (device vdb): fixed up error at logical 1106023546880 on dev /dev/vdb physical 1106023546880
[ 1581.572317] BTRFS critical (device vdb): unable to find chunk map for logical 1116741795840 length 4096
[ 1581.573476] BTRFS critical (device vdb): unable to find chunk map for logical 1116741795840 length 32768
[ 1581.580695] BTRFS critical (device vdb): unable to find chunk map for logical 1116741795840 length 4096
[ 1581.581151] BTRFS critical (device vdb): unable to find chunk map for logical 1116741795840 length 4096
[ 1581.581586] BTRFS critical (device vdb): unable to find chunk map for logical 1116741799936 length 4096
[ 1581.581990] BTRFS critical (device vdb): unable to find chunk map for logical 1116741799936 length 4096
[ 1581.582477] BTRFS critical (device vdb): unable to find chunk map for logical 1116741804032 length 4096
[ 1581.582943] BTRFS critical (device vdb): unable to find chunk map for logical 1116741804032 length 4096
[ 1581.583396] BTRFS critical (device vdb): unable to find chunk map for logical 1116741808128 length 4096
[ 1581.583902] BTRFS critical (device vdb): unable to find chunk map for logical 1116741808128 length 4096
[ 1581.584438] BTRFS critical (device vdb): unable to find chunk map for logical 1116741812224 length 4096
[ 1581.584827] BTRFS critical (device vdb): unable to find chunk map for logical 1116741812224 length 4096
[ 1581.585186] BTRFS critical (device vdb): unable to find chunk map for logical 1116741816320 length 4096
[ 1581.585533] BTRFS critical (device vdb): unable to find chunk map for logical 1116741816320 length 4096
[ 1581.591105] BTRFS critical (device vdb): unable to find chunk map for logical 1116741820416 length 4096
[ 1581.591433] BTRFS critical (device vdb): unable to find chunk map for logical 1116741820416 length 4096
[ 1581.591729] BTRFS critical (device vdb): unable to find chunk map for logical 1116741824512 length 4096
[ 1581.592168] BTRFS critical (device vdb): unable to find chunk map for logical 1116741824512 length 4096
[ 1581.593871] BTRFS error (device vdb): fixed up error at logical 1116741763072 on dev /dev/vdb physical 1116741763072
[ 1581.593885] BTRFS error (device vdb): fixed up error at logical 1116741763072 on dev /dev/vdb physical 1116741763072
[ 1581.593893] BTRFS error (device vdb): fixed up error at logical 1116741763072 on dev /dev/vdb physical 1116741763072
[ 1581.593898] BTRFS error (device vdb): fixed up error at logical 1116741763072 on dev /dev/vdb physical 1116741763072
[ 1581.593904] BTRFS error (device vdb): fixed up error at logical 1116741763072 on dev /dev/vdb physical 1116741763072
[ 1582.517876] BTRFS critical (device vdb): unable to find chunk map for logical 1119192186880 length 4096
[ 1582.518157] BTRFS critical (device vdb): unable to find chunk map for logical 1119192186880 length 32768
[ 1582.521516] BTRFS critical (device vdb): unable to find chunk map for logical 1119192186880 length 4096
[ 1582.521859] BTRFS critical (device vdb): unable to find chunk map for logical 1119192186880 length 4096
[ 1582.522148] BTRFS critical (device vdb): unable to find chunk map for logical 1119192190976 length 4096
[ 1582.522448] BTRFS critical (device vdb): unable to find chunk map for logical 1119192190976 length 4096
[ 1582.522731] BTRFS critical (device vdb): unable to find chunk map for logical 1119192195072 length 4096
[ 1582.523012] BTRFS critical (device vdb): unable to find chunk map for logical 1119192195072 length 4096
[ 1582.523294] BTRFS critical (device vdb): unable to find chunk map for logical 1119192199168 length 4096
[ 1582.523572] BTRFS critical (device vdb): unable to find chunk map for logical 1119192199168 length 4096
[ 1582.523849] BTRFS critical (device vdb): unable to find chunk map for logical 1119192203264 length 4096
[ 1582.525733] BTRFS critical (device vdb): unable to find chunk map for logical 1119192203264 length 4096
[ 1582.526079] BTRFS critical (device vdb): unable to find chunk map for logical 1119192207360 length 4096
[ 1582.526357] BTRFS critical (device vdb): unable to find chunk map for logical 1119192207360 length 4096
[ 1582.526569] BTRFS critical (device vdb): unable to find chunk map for logical 1119192211456 length 4096
[ 1582.526817] BTRFS critical (device vdb): unable to find chunk map for logical 1119192211456 length 4096
[ 1582.527093] BTRFS critical (device vdb): unable to find chunk map for logical 1119192215552 length 4096
[ 1582.527345] BTRFS critical (device vdb): unable to find chunk map for logical 1119192215552 length 4096
[ 1582.527845] BTRFS error (device vdb): fixed up error at logical 1119192154112 on dev /dev/vdb physical 1119192154112
[ 1582.527852] BTRFS error (device vdb): fixed up error at logical 1119192154112 on dev /dev/vdb physical 1119192154112
[ 1582.527855] BTRFS error (device vdb): fixed up error at logical 1119192154112 on dev /dev/vdb physical 1119192154112
[ 1582.527858] BTRFS error (device vdb): fixed up error at logical 1119192154112 on dev /dev/vdb physical 1119192154112
[ 1582.527861] BTRFS error (device vdb): fixed up error at logical 1119192154112 on dev /dev/vdb physical 1119192154112
[ 1702.661963] BTRFS critical (device vdb): unable to find chunk map for logical 1232789102592 length 4096
[ 1702.662771] BTRFS critical (device vdb): unable to find chunk map for logical 1232789102592 length 8192
[ 1702.673111] BTRFS critical (device vdb): unable to find chunk map for logical 1232789102592 length 4096
[ 1702.673528] BTRFS critical (device vdb): unable to find chunk map for logical 1232789102592 length 4096
[ 1702.673921] BTRFS critical (device vdb): unable to find chunk map for logical 1232789106688 length 4096
[ 1702.674290] BTRFS critical (device vdb): unable to find chunk map for logical 1232789106688 length 4096
[ 1702.677585] scrub_stripe_report_errors: 3 callbacks suppressed
[ 1702.677595] BTRFS error (device vdb): fixed up error at logical 1232789045248 on dev /dev/vdb physical 1232789045248
[ 1702.677611] BTRFS error (device vdb): fixed up error at logical 1232789045248 on dev /dev/vdb physical 1232789045248
[ 1702.677620] BTRFS error (device vdb): fixed up error at logical 1232789045248 on dev /dev/vdb physical 1232789045248
[ 1702.677627] BTRFS error (device vdb): fixed up error at logical 1232789045248 on dev /dev/vdb physical 1232789045248
[ 1702.677634] BTRFS error (device vdb): fixed up error at logical 1232789045248 on dev /dev/vdb physical 1232789045248
[ 1702.677641] BTRFS error (device vdb): fixed up error at logical 1232789045248 on dev /dev/vdb physical 1232789045248
[ 1702.677647] BTRFS error (device vdb): fixed up error at logical 1232789045248 on dev /dev/vdb physical 1232789045248
[ 1702.677654] BTRFS error (device vdb): fixed up error at logical 1232789045248 on dev /dev/vdb physical 1232789045248
[ 1702.677660] BTRFS error (device vdb): fixed up error at logical 1232789045248 on dev /dev/vdb physical 1232789045248
[ 1702.677666] BTRFS error (device vdb): fixed up error at logical 1232789045248 on dev /dev/vdb physical 1232789045248
[ 1768.120815] BTRFS critical (device vdb): unable to find chunk map for logical 1309241815040 length 4096
[ 1768.121063] BTRFS critical (device vdb): unable to find chunk map for logical 1309241815040 length 20480
[ 1768.126047] BTRFS critical (device vdb): unable to find chunk map for logical 1309241815040 length 4096
[ 1768.126270] BTRFS critical (device vdb): unable to find chunk map for logical 1309241815040 length 4096
[ 1768.126471] BTRFS critical (device vdb): unable to find chunk map for logical 1309241819136 length 4096
[ 1768.126669] BTRFS critical (device vdb): unable to find chunk map for logical 1309241819136 length 4096
[ 1768.126863] BTRFS critical (device vdb): unable to find chunk map for logical 1309241823232 length 4096
[ 1768.127055] BTRFS critical (device vdb): unable to find chunk map for logical 1309241823232 length 4096
[ 1768.127245] BTRFS critical (device vdb): unable to find chunk map for logical 1309241827328 length 4096
[ 1768.127435] BTRFS critical (device vdb): unable to find chunk map for logical 1309241827328 length 4096
[ 1768.127626] BTRFS critical (device vdb): unable to find chunk map for logical 1309241831424 length 4096
[ 1768.127817] BTRFS critical (device vdb): unable to find chunk map for logical 1309241831424 length 4096
[ 1768.128169] scrub_stripe_report_errors: 4 callbacks suppressed
[ 1768.128173] BTRFS error (device vdb): fixed up error at logical 1309241769984 on dev /dev/vdb physical 1309241769984
[ 1768.128178] BTRFS error (device vdb): fixed up error at logical 1309241769984 on dev /dev/vdb physical 1309241769984
[ 1768.128181] BTRFS error (device vdb): fixed up error at logical 1309241769984 on dev /dev/vdb physical 1309241769984
[ 1768.128183] BTRFS error (device vdb): fixed up error at logical 1309241769984 on dev /dev/vdb physical 1309241769984
[ 1768.128184] BTRFS error (device vdb): fixed up error at logical 1309241769984 on dev /dev/vdb physical 1309241769984
[ 1768.128186] BTRFS error (device vdb): fixed up error at logical 1309241769984 on dev /dev/vdb physical 1309241769984
[ 1768.128188] BTRFS error (device vdb): fixed up error at logical 1309241769984 on dev /dev/vdb physical 1309241769984
[ 1768.128190] BTRFS error (device vdb): fixed up error at logical 1309241769984 on dev /dev/vdb physical 1309241769984
[ 1768.128192] BTRFS error (device vdb): fixed up error at logical 1309241769984 on dev /dev/vdb physical 1309241769984
[ 1801.611023] BTRFS critical (device vdb): unable to find chunk map for logical 1348653420544 length 4096
[ 1801.611379] BTRFS critical (device vdb): unable to find chunk map for logical 1348653420544 length 61440
[ 1801.612350] BTRFS critical (device vdb): unable to find chunk map for logical 1348653420544 length 4096
[ 1801.612709] BTRFS critical (device vdb): unable to find chunk map for logical 1348653420544 length 4096
[ 1801.613143] BTRFS critical (device vdb): unable to find chunk map for logical 1348653424640 length 4096
[ 1801.613553] BTRFS critical (device vdb): unable to find chunk map for logical 1348653424640 length 4096
[ 1801.613834] BTRFS critical (device vdb): unable to find chunk map for logical 1348653428736 length 4096
[ 1801.614097] BTRFS critical (device vdb): unable to find chunk map for logical 1348653428736 length 4096
[ 1801.614361] BTRFS critical (device vdb): unable to find chunk map for logical 1348653432832 length 4096
[ 1801.614628] BTRFS critical (device vdb): unable to find chunk map for logical 1348653432832 length 4096
[ 1801.614900] BTRFS critical (device vdb): unable to find chunk map for logical 1348653436928 length 4096
[ 1801.615262] BTRFS critical (device vdb): unable to find chunk map for logical 1348653436928 length 4096
[ 1801.615678] BTRFS critical (device vdb): unable to find chunk map for logical 1348653441024 length 4096
[ 1801.616163] BTRFS critical (device vdb): unable to find chunk map for logical 1348653441024 length 4096
[ 1801.616575] BTRFS critical (device vdb): unable to find chunk map for logical 1348653445120 length 4096
[ 1801.617033] BTRFS critical (device vdb): unable to find chunk map for logical 1348653445120 length 4096
[ 1801.617446] BTRFS critical (device vdb): unable to find chunk map for logical 1348653449216 length 4096
[ 1801.617834] BTRFS critical (device vdb): unable to find chunk map for logical 1348653449216 length 4096
[ 1801.618239] BTRFS critical (device vdb): unable to find chunk map for logical 1348653453312 length 4096
[ 1801.618650] BTRFS critical (device vdb): unable to find chunk map for logical 1348653453312 length 4096
[ 1801.619059] BTRFS critical (device vdb): unable to find chunk map for logical 1348653457408 length 4096
[ 1801.619477] BTRFS critical (device vdb): unable to find chunk map for logical 1348653457408 length 4096
[ 1801.619941] BTRFS critical (device vdb): unable to find chunk map for logical 1348653461504 length 4096
[ 1801.620349] BTRFS critical (device vdb): unable to find chunk map for logical 1348653461504 length 4096
[ 1801.620762] BTRFS critical (device vdb): unable to find chunk map for logical 1348653465600 length 4096
[ 1801.621238] BTRFS critical (device vdb): unable to find chunk map for logical 1348653465600 length 4096
[ 1801.621663] BTRFS critical (device vdb): unable to find chunk map for logical 1348653469696 length 4096
[ 1801.622067] BTRFS critical (device vdb): unable to find chunk map for logical 1348653469696 length 4096
[ 1801.622423] BTRFS critical (device vdb): unable to find chunk map for logical 1348653473792 length 4096
[ 1801.622835] BTRFS critical (device vdb): unable to find chunk map for logical 1348653473792 length 4096
[ 1801.623251] BTRFS critical (device vdb): unable to find chunk map for logical 1348653477888 length 4096
[ 1801.623665] BTRFS critical (device vdb): unable to find chunk map for logical 1348653477888 length 4096
[ 1801.624672] BTRFS error (device vdb): fixed up error at logical 1348653416448 on dev /dev/vdb physical 1348653416448
[ 1837.560040] BTRFS critical (device vdb): unable to find chunk map for logical 1375150882816 length 4096
[ 1837.560404] BTRFS critical (device vdb): unable to find chunk map for logical 1375150882816 length 49152
[ 1837.570805] BTRFS critical (device vdb): unable to find chunk map for logical 1375150882816 length 4096
[ 1837.571281] BTRFS critical (device vdb): unable to find chunk map for logical 1375150882816 length 4096
[ 1837.571634] BTRFS critical (device vdb): unable to find chunk map for logical 1375150886912 length 4096
[ 1837.571998] BTRFS critical (device vdb): unable to find chunk map for logical 1375150886912 length 4096
[ 1837.572347] BTRFS critical (device vdb): unable to find chunk map for logical 1375150891008 length 4096
[ 1837.572747] BTRFS critical (device vdb): unable to find chunk map for logical 1375150891008 length 4096
[ 1837.573092] BTRFS critical (device vdb): unable to find chunk map for logical 1375150895104 length 4096
[ 1837.573437] BTRFS critical (device vdb): unable to find chunk map for logical 1375150895104 length 4096
[ 1837.573797] BTRFS critical (device vdb): unable to find chunk map for logical 1375150899200 length 4096
[ 1837.574194] BTRFS critical (device vdb): unable to find chunk map for logical 1375150899200 length 4096
[ 1837.574542] BTRFS critical (device vdb): unable to find chunk map for logical 1375150903296 length 4096
[ 1837.574887] BTRFS critical (device vdb): unable to find chunk map for logical 1375150903296 length 4096
[ 1837.575353] BTRFS critical (device vdb): unable to find chunk map for logical 1375150907392 length 4096
[ 1837.575697] BTRFS critical (device vdb): unable to find chunk map for logical 1375150907392 length 4096
[ 1837.576054] BTRFS critical (device vdb): unable to find chunk map for logical 1375150911488 length 4096
[ 1837.576387] BTRFS critical (device vdb): unable to find chunk map for logical 1375150911488 length 4096
[ 1837.576702] BTRFS critical (device vdb): unable to find chunk map for logical 1375150915584 length 4096
[ 1837.577022] BTRFS critical (device vdb): unable to find chunk map for logical 1375150915584 length 4096
[ 1837.577330] BTRFS critical (device vdb): unable to find chunk map for logical 1375150919680 length 4096
[ 1837.577648] BTRFS critical (device vdb): unable to find chunk map for logical 1375150919680 length 4096
[ 1837.577955] BTRFS critical (device vdb): unable to find chunk map for logical 1375150923776 length 4096
[ 1837.578275] BTRFS critical (device vdb): unable to find chunk map for logical 1375150923776 length 4096
[ 1837.578598] BTRFS critical (device vdb): unable to find chunk map for logical 1375150927872 length 4096
[ 1837.578900] BTRFS critical (device vdb): unable to find chunk map for logical 1375150927872 length 4096
[ 1837.579640] BTRFS error (device vdb): fixed up error at logical 1375150866432 on dev /dev/vdb physical 1375150866432
[ 1846.611405] BTRFS critical (device vdb): unable to find chunk map for logical 1380060139520 length 4096
[ 1846.611876] BTRFS critical (device vdb): unable to find chunk map for logical 1380060139520 length 28672
[ 1846.624797] BTRFS critical (device vdb): unable to find chunk map for logical 1380060139520 length 4096
[ 1846.625261] BTRFS critical (device vdb): unable to find chunk map for logical 1380060139520 length 4096
[ 1846.625678] BTRFS critical (device vdb): unable to find chunk map for logical 1380060143616 length 4096
[ 1846.626090] BTRFS critical (device vdb): unable to find chunk map for logical 1380060143616 length 4096
[ 1846.626702] BTRFS critical (device vdb): unable to find chunk map for logical 1380060147712 length 4096
[ 1846.627401] BTRFS critical (device vdb): unable to find chunk map for logical 1380060147712 length 4096
[ 1846.627826] BTRFS critical (device vdb): unable to find chunk map for logical 1380060151808 length 4096
[ 1846.632184] BTRFS critical (device vdb): unable to find chunk map for logical 1380060151808 length 4096
[ 1846.632601] BTRFS critical (device vdb): unable to find chunk map for logical 1380060155904 length 4096
[ 1846.632982] BTRFS critical (device vdb): unable to find chunk map for logical 1380060155904 length 4096
[ 1846.633359] BTRFS critical (device vdb): unable to find chunk map for logical 1380060160000 length 4096
[ 1846.633696] BTRFS critical (device vdb): unable to find chunk map for logical 1380060160000 length 4096
[ 1846.634076] BTRFS critical (device vdb): unable to find chunk map for logical 1380060164096 length 4096
[ 1846.634482] BTRFS critical (device vdb): unable to find chunk map for logical 1380060164096 length 4096
[ 1846.636297] BTRFS error (device vdb): fixed up error at logical 1380060102656 on dev /dev/vdb physical 1380060102656
[ 1846.636313] BTRFS error (device vdb): fixed up error at logical 1380060102656 on dev /dev/vdb physical 1380060102656
[ 1846.636321] BTRFS error (device vdb): fixed up error at logical 1380060102656 on dev /dev/vdb physical 1380060102656
[ 1846.636327] BTRFS error (device vdb): fixed up error at logical 1380060102656 on dev /dev/vdb physical 1380060102656
[ 1846.636333] BTRFS error (device vdb): fixed up error at logical 1380060102656 on dev /dev/vdb physical 1380060102656
[ 1846.636340] BTRFS error (device vdb): fixed up error at logical 1380060102656 on dev /dev/vdb physical 1380060102656
[ 2201.102987] BTRFS critical (device vdb): unable to find chunk map for logical 1589173469184 length 4096
[ 2201.103361] BTRFS critical (device vdb): unable to find chunk map for logical 1589173469184 length 16384
[ 2201.106736] BTRFS critical (device vdb): unable to find chunk map for logical 1589173469184 length 4096
[ 2201.106999] BTRFS critical (device vdb): unable to find chunk map for logical 1589173469184 length 4096
[ 2201.107219] BTRFS critical (device vdb): unable to find chunk map for logical 1589173473280 length 4096
[ 2201.107514] BTRFS critical (device vdb): unable to find chunk map for logical 1589173473280 length 4096
[ 2201.107770] BTRFS critical (device vdb): unable to find chunk map for logical 1589173477376 length 4096
[ 2201.107981] BTRFS critical (device vdb): unable to find chunk map for logical 1589173477376 length 4096
[ 2201.108188] BTRFS critical (device vdb): unable to find chunk map for logical 1589173481472 length 4096
[ 2201.108396] BTRFS critical (device vdb): unable to find chunk map for logical 1589173481472 length 4096
[ 2201.108920] BTRFS error (device vdb): fixed up error at logical 1589173420032 on dev /dev/vdb physical 1589173420032
[ 2201.108931] BTRFS error (device vdb): fixed up error at logical 1589173420032 on dev /dev/vdb physical 1589173420032
[ 2201.108936] BTRFS error (device vdb): fixed up error at logical 1589173420032 on dev /dev/vdb physical 1589173420032
[ 2266.219875] BTRFS critical (device vdb): unable to find chunk map for logical 1655601790976 length 4096
[ 2266.220024] BTRFS critical (device vdb): unable to find chunk map for logical 1655601790976 length 36864
[ 2266.221967] BTRFS critical (device vdb): unable to find chunk map for logical 1655601790976 length 4096
[ 2266.222114] BTRFS critical (device vdb): unable to find chunk map for logical 1655601790976 length 4096
[ 2266.222224] BTRFS critical (device vdb): unable to find chunk map for logical 1655601795072 length 4096
[ 2266.222336] BTRFS critical (device vdb): unable to find chunk map for logical 1655601795072 length 4096
[ 2266.222446] BTRFS critical (device vdb): unable to find chunk map for logical 1655601799168 length 4096
[ 2266.222555] BTRFS critical (device vdb): unable to find chunk map for logical 1655601799168 length 4096
[ 2266.222662] BTRFS critical (device vdb): unable to find chunk map for logical 1655601803264 length 4096
[ 2266.222771] BTRFS critical (device vdb): unable to find chunk map for logical 1655601803264 length 4096
[ 2266.222879] BTRFS critical (device vdb): unable to find chunk map for logical 1655601807360 length 4096
[ 2266.222987] BTRFS critical (device vdb): unable to find chunk map for logical 1655601807360 length 4096
[ 2266.223111] BTRFS critical (device vdb): unable to find chunk map for logical 1655601811456 length 4096
[ 2266.223226] BTRFS critical (device vdb): unable to find chunk map for logical 1655601811456 length 4096
[ 2266.223340] BTRFS critical (device vdb): unable to find chunk map for logical 1655601815552 length 4096
[ 2266.223453] BTRFS critical (device vdb): unable to find chunk map for logical 1655601815552 length 4096
[ 2266.223566] BTRFS critical (device vdb): unable to find chunk map for logical 1655601819648 length 4096
[ 2266.223680] BTRFS critical (device vdb): unable to find chunk map for logical 1655601819648 length 4096
[ 2266.223793] BTRFS critical (device vdb): unable to find chunk map for logical 1655601823744 length 4096
[ 2266.223912] BTRFS critical (device vdb): unable to find chunk map for logical 1655601823744 length 4096
[ 2266.225375] BTRFS error (device vdb): fixed up error at logical 1655601762304 on dev /dev/vdb physical 1655601762304
[ 2266.225381] BTRFS error (device vdb): fixed up error at logical 1655601762304 on dev /dev/vdb physical 1655601762304
[ 2266.225383] BTRFS error (device vdb): fixed up error at logical 1655601762304 on dev /dev/vdb physical 1655601762304
[ 2266.225390] BTRFS error (device vdb): fixed up error at logical 1655601762304 on dev /dev/vdb physical 1655601762304
[ 2266.225392] BTRFS error (device vdb): fixed up error at logical 1655601762304 on dev /dev/vdb physical 1655601762304
[ 2268.236151] BTRFS critical (device vdb): unable to find chunk map for logical 1661099732992 length 4096
[ 2268.236500] BTRFS critical (device vdb): unable to find chunk map for logical 1661099732992 length 36864
[ 2268.246118] BTRFS critical (device vdb): unable to find chunk map for logical 1661099732992 length 4096
[ 2268.246395] BTRFS critical (device vdb): unable to find chunk map for logical 1661099732992 length 4096
[ 2268.246616] BTRFS critical (device vdb): unable to find chunk map for logical 1661099737088 length 4096
[ 2268.246880] BTRFS critical (device vdb): unable to find chunk map for logical 1661099737088 length 4096
[ 2268.247137] BTRFS critical (device vdb): unable to find chunk map for logical 1661099741184 length 4096
[ 2268.247343] BTRFS critical (device vdb): unable to find chunk map for logical 1661099741184 length 4096
[ 2268.247585] BTRFS critical (device vdb): unable to find chunk map for logical 1661099745280 length 4096
[ 2268.247785] BTRFS critical (device vdb): unable to find chunk map for logical 1661099745280 length 4096
[ 2268.247983] BTRFS critical (device vdb): unable to find chunk map for logical 1661099749376 length 4096
[ 2268.248178] BTRFS critical (device vdb): unable to find chunk map for logical 1661099749376 length 4096
[ 2268.248372] BTRFS critical (device vdb): unable to find chunk map for logical 1661099753472 length 4096
[ 2268.248569] BTRFS critical (device vdb): unable to find chunk map for logical 1661099753472 length 4096
[ 2268.248763] BTRFS critical (device vdb): unable to find chunk map for logical 1661099757568 length 4096
[ 2268.248958] BTRFS critical (device vdb): unable to find chunk map for logical 1661099757568 length 4096
[ 2268.249161] BTRFS critical (device vdb): unable to find chunk map for logical 1661099761664 length 4096
[ 2268.249346] BTRFS critical (device vdb): unable to find chunk map for logical 1661099761664 length 4096
[ 2268.249525] BTRFS critical (device vdb): unable to find chunk map for logical 1661099765760 length 4096
[ 2268.249704] BTRFS critical (device vdb): unable to find chunk map for logical 1661099765760 length 4096
[ 2268.250454] BTRFS error (device vdb): fixed up error at logical 1661099704320 on dev /dev/vdb physical 1661099704320
[ 2268.250467] BTRFS error (device vdb): fixed up error at logical 1661099704320 on dev /dev/vdb physical 1661099704320
[ 2268.250474] BTRFS error (device vdb): fixed up error at logical 1661099704320 on dev /dev/vdb physical 1661099704320
[ 2268.250479] BTRFS error (device vdb): fixed up error at logical 1661099704320 on dev /dev/vdb physical 1661099704320
[ 2339.741693] BTRFS critical (device vdb): unable to find chunk map for logical 1752384831488 length 4096
[ 2339.742074] BTRFS critical (device vdb): unable to find chunk map for logical 1752384831488 length 32768
[ 2339.756315] BTRFS critical (device vdb): unable to find chunk map for logical 1752384831488 length 4096
[ 2339.756796] BTRFS critical (device vdb): unable to find chunk map for logical 1752384831488 length 4096
[ 2339.757237] BTRFS critical (device vdb): unable to find chunk map for logical 1752384835584 length 4096
[ 2339.757656] BTRFS critical (device vdb): unable to find chunk map for logical 1752384835584 length 4096
[ 2339.758074] BTRFS critical (device vdb): unable to find chunk map for logical 1752384839680 length 4096
[ 2339.758455] BTRFS critical (device vdb): unable to find chunk map for logical 1752384839680 length 4096
[ 2339.758819] BTRFS critical (device vdb): unable to find chunk map for logical 1752384843776 length 4096
[ 2339.759194] BTRFS critical (device vdb): unable to find chunk map for logical 1752384843776 length 4096
[ 2339.759503] BTRFS critical (device vdb): unable to find chunk map for logical 1752384847872 length 4096
[ 2339.759840] BTRFS critical (device vdb): unable to find chunk map for logical 1752384847872 length 4096
[ 2339.760188] BTRFS critical (device vdb): unable to find chunk map for logical 1752384851968 length 4096
[ 2339.760595] BTRFS critical (device vdb): unable to find chunk map for logical 1752384851968 length 4096
[ 2339.761008] BTRFS critical (device vdb): unable to find chunk map for logical 1752384856064 length 4096
[ 2339.761367] BTRFS critical (device vdb): unable to find chunk map for logical 1752384856064 length 4096
[ 2339.761726] BTRFS critical (device vdb): unable to find chunk map for logical 1752384860160 length 4096
[ 2339.762085] BTRFS critical (device vdb): unable to find chunk map for logical 1752384860160 length 4096
[ 2339.762974] BTRFS error (device vdb): fixed up error at logical 1752384798720 on dev /dev/vdb physical 1752384798720
[ 2339.762987] BTRFS error (device vdb): fixed up error at logical 1752384798720 on dev /dev/vdb physical 1752384798720
[ 2339.762995] BTRFS error (device vdb): fixed up error at logical 1752384798720 on dev /dev/vdb physical 1752384798720
[ 2341.662753] BTRFS critical (device vdb): unable to find chunk map for logical 1756680941568 length 4096
[ 2341.663238] BTRFS critical (device vdb): unable to find chunk map for logical 1756680941568 length 4096
[ 2341.688143] BTRFS critical (device vdb): unable to find chunk map for logical 1756680941568 length 4096
[ 2341.688655] BTRFS critical (device vdb): unable to find chunk map for logical 1756680941568 length 4096
[ 2341.689532] BTRFS error (device vdb): fixed up error at logical 1756680880128 on dev /dev/vdb physical 1756680880128
[ 2341.689549] BTRFS error (device vdb): fixed up error at logical 1756680880128 on dev /dev/vdb physical 1756680880128
[ 2341.689556] BTRFS error (device vdb): fixed up error at logical 1756680880128 on dev /dev/vdb physical 1756680880128
[ 2341.689562] BTRFS error (device vdb): fixed up error at logical 1756680880128 on dev /dev/vdb physical 1756680880128
[ 2341.689568] BTRFS error (device vdb): fixed up error at logical 1756680880128 on dev /dev/vdb physical 1756680880128
[ 2341.689574] BTRFS error (device vdb): fixed up error at logical 1756680880128 on dev /dev/vdb physical 1756680880128
[ 2341.689579] BTRFS error (device vdb): fixed up error at logical 1756680880128 on dev /dev/vdb physical 1756680880128
[ 2745.349020] BTRFS info (device vdb): scrub: finished on devid 1 with status: 0
// ---------- btrfs-progs v6.3.3 ----------
[ 3367.748921] BTRFS info (device vdb): scrub: started on devid 1
[ 3370.618455] BTRFS critical (device vdb): unable to find chunk map for logical 2214744064 length 4096
[ 3370.618674] BTRFS critical (device vdb): unable to find chunk map for logical 2214744064 length 45056
[ 3370.626194] BTRFS critical (device vdb): unable to find chunk map for logical 2214744064 length 4096
[ 3370.626383] BTRFS critical (device vdb): unable to find chunk map for logical 2214744064 length 4096
[ 3370.626546] BTRFS critical (device vdb): unable to find chunk map for logical 2214748160 length 4096
[ 3370.626705] BTRFS critical (device vdb): unable to find chunk map for logical 2214748160 length 4096
[ 3370.626891] BTRFS critical (device vdb): unable to find chunk map for logical 2214752256 length 4096
[ 3370.627048] BTRFS critical (device vdb): unable to find chunk map for logical 2214752256 length 4096
[ 3370.627202] BTRFS critical (device vdb): unable to find chunk map for logical 2214756352 length 4096
[ 3370.627356] BTRFS critical (device vdb): unable to find chunk map for logical 2214756352 length 4096
[ 3370.627509] BTRFS critical (device vdb): unable to find chunk map for logical 2214760448 length 4096
[ 3370.627664] BTRFS critical (device vdb): unable to find chunk map for logical 2214760448 length 4096
[ 3370.627818] BTRFS critical (device vdb): unable to find chunk map for logical 2214764544 length 4096
[ 3370.627971] BTRFS critical (device vdb): unable to find chunk map for logical 2214764544 length 4096
[ 3370.628123] BTRFS critical (device vdb): unable to find chunk map for logical 2214768640 length 4096
[ 3370.628277] BTRFS critical (device vdb): unable to find chunk map for logical 2214768640 length 4096
[ 3370.628430] BTRFS critical (device vdb): unable to find chunk map for logical 2214772736 length 4096
[ 3370.628582] BTRFS critical (device vdb): unable to find chunk map for logical 2214772736 length 4096
[ 3370.628735] BTRFS critical (device vdb): unable to find chunk map for logical 2214776832 length 4096
[ 3370.628896] BTRFS critical (device vdb): unable to find chunk map for logical 2214776832 length 4096
[ 3370.629048] BTRFS critical (device vdb): unable to find chunk map for logical 2214780928 length 4096
[ 3370.629199] BTRFS critical (device vdb): unable to find chunk map for logical 2214780928 length 4096
[ 3370.629351] BTRFS critical (device vdb): unable to find chunk map for logical 2214785024 length 4096
[ 3370.629504] BTRFS critical (device vdb): unable to find chunk map for logical 2214785024 length 4096
[ 3370.629888] scrub_stripe_report_errors: 3 callbacks suppressed
[ 3370.629892] BTRFS error (device vdb): fixed up error at logical 2214723584 on dev /dev/vdb physical 2214723584
[ 3370.629897] BTRFS error (device vdb): fixed up error at logical 2214723584 on dev /dev/vdb physical 2214723584
[ 3370.629899] BTRFS error (device vdb): fixed up error at logical 2214723584 on dev /dev/vdb physical 2214723584
[ 3370.629901] BTRFS error (device vdb): fixed up error at logical 2214723584 on dev /dev/vdb physical 2214723584
[ 3370.629902] BTRFS error (device vdb): fixed up error at logical 2214723584 on dev /dev/vdb physical 2214723584
[ 3855.159271] BTRFS critical (device vdb): unable to find chunk map for logical 463895601152 length 4096
[ 3855.159429] BTRFS critical (device vdb): unable to find chunk map for logical 463895601152 length 57344
[ 3855.160068] BTRFS critical (device vdb): unable to find chunk map for logical 463895601152 length 4096
[ 3855.160213] BTRFS critical (device vdb): unable to find chunk map for logical 463895601152 length 4096
[ 3855.160322] BTRFS critical (device vdb): unable to find chunk map for logical 463895605248 length 4096
[ 3855.160430] BTRFS critical (device vdb): unable to find chunk map for logical 463895605248 length 4096
[ 3855.160539] BTRFS critical (device vdb): unable to find chunk map for logical 463895609344 length 4096
[ 3855.160642] BTRFS critical (device vdb): unable to find chunk map for logical 463895609344 length 4096
[ 3855.160747] BTRFS critical (device vdb): unable to find chunk map for logical 463895613440 length 4096
[ 3855.160852] BTRFS critical (device vdb): unable to find chunk map for logical 463895613440 length 4096
[ 3855.160958] BTRFS critical (device vdb): unable to find chunk map for logical 463895617536 length 4096
[ 3855.161066] BTRFS critical (device vdb): unable to find chunk map for logical 463895617536 length 4096
[ 3855.161172] BTRFS critical (device vdb): unable to find chunk map for logical 463895621632 length 4096
[ 3855.161330] BTRFS critical (device vdb): unable to find chunk map for logical 463895621632 length 4096
[ 3855.161493] BTRFS critical (device vdb): unable to find chunk map for logical 463895625728 length 4096
[ 3855.161642] BTRFS critical (device vdb): unable to find chunk map for logical 463895625728 length 4096
[ 3855.161799] BTRFS critical (device vdb): unable to find chunk map for logical 463895629824 length 4096
[ 3855.161960] BTRFS critical (device vdb): unable to find chunk map for logical 463895629824 length 4096
[ 3855.162124] BTRFS critical (device vdb): unable to find chunk map for logical 463895633920 length 4096
[ 3855.162284] BTRFS critical (device vdb): unable to find chunk map for logical 463895633920 length 4096
[ 3855.162445] BTRFS critical (device vdb): unable to find chunk map for logical 463895638016 length 4096
[ 3855.162604] BTRFS critical (device vdb): unable to find chunk map for logical 463895638016 length 4096
[ 3855.162765] BTRFS critical (device vdb): unable to find chunk map for logical 463895642112 length 4096
[ 3855.162927] BTRFS critical (device vdb): unable to find chunk map for logical 463895642112 length 4096
[ 3855.163085] BTRFS critical (device vdb): unable to find chunk map for logical 463895646208 length 4096
[ 3855.163239] BTRFS critical (device vdb): unable to find chunk map for logical 463895646208 length 4096
[ 3855.163393] BTRFS critical (device vdb): unable to find chunk map for logical 463895650304 length 4096
[ 3855.163545] BTRFS critical (device vdb): unable to find chunk map for logical 463895650304 length 4096
[ 3855.163713] BTRFS critical (device vdb): unable to find chunk map for logical 463895654400 length 4096
[ 3855.163889] BTRFS critical (device vdb): unable to find chunk map for logical 463895654400 length 4096
[ 3855.165158] BTRFS error (device vdb): fixed up error at logical 463895592960 on dev /dev/vdb physical 463895592960
[ 3855.165167] BTRFS error (device vdb): fixed up error at logical 463895592960 on dev /dev/vdb physical 463895592960
[ 4138.209364] BTRFS critical (device vdb): unable to find chunk map for logical 839699791872 length 4096
[ 4138.209727] BTRFS critical (device vdb): unable to find chunk map for logical 839699791872 length 16384
[ 4138.214583] BTRFS critical (device vdb): unable to find chunk map for logical 839699791872 length 4096
[ 4138.215040] BTRFS critical (device vdb): unable to find chunk map for logical 839699791872 length 4096
[ 4138.215449] BTRFS critical (device vdb): unable to find chunk map for logical 839699795968 length 4096
[ 4138.215907] BTRFS critical (device vdb): unable to find chunk map for logical 839699795968 length 4096
[ 4138.216314] BTRFS critical (device vdb): unable to find chunk map for logical 839699800064 length 4096
[ 4138.216809] BTRFS critical (device vdb): unable to find chunk map for logical 839699800064 length 4096
[ 4138.217232] BTRFS critical (device vdb): unable to find chunk map for logical 839699804160 length 4096
[ 4138.217634] BTRFS critical (device vdb): unable to find chunk map for logical 839699804160 length 4096
[ 4138.218510] BTRFS error (device vdb): fixed up error at logical 839699742720 on dev /dev/vdb physical 839699742720
[ 4138.218526] BTRFS error (device vdb): fixed up error at logical 839699742720 on dev /dev/vdb physical 839699742720
[ 4138.218535] BTRFS error (device vdb): fixed up error at logical 839699742720 on dev /dev/vdb physical 839699742720
[ 4138.218541] BTRFS error (device vdb): fixed up error at logical 839699742720 on dev /dev/vdb physical 839699742720
[ 4138.218547] BTRFS error (device vdb): fixed up error at logical 839699742720 on dev /dev/vdb physical 839699742720
[ 4138.218553] BTRFS error (device vdb): fixed up error at logical 839699742720 on dev /dev/vdb physical 839699742720
[ 4138.218560] BTRFS error (device vdb): fixed up error at logical 839699742720 on dev /dev/vdb physical 839699742720
[ 4138.218566] BTRFS error (device vdb): fixed up error at logical 839699742720 on dev /dev/vdb physical 839699742720
[ 4138.218596] BTRFS error (device vdb): fixed up error at logical 839699742720 on dev /dev/vdb physical 839699742720
[ 4138.218603] BTRFS error (device vdb): fixed up error at logical 839699742720 on dev /dev/vdb physical 839699742720
[ 4272.234173] BTRFS critical (device vdb): unable to find chunk map for logical 1016250572800 length 4096
[ 4272.234641] BTRFS critical (device vdb): unable to find chunk map for logical 1016250572800 length 57344
[ 4272.244632] BTRFS critical (device vdb): unable to find chunk map for logical 1016250572800 length 4096
[ 4272.245211] BTRFS critical (device vdb): unable to find chunk map for logical 1016250572800 length 4096
[ 4272.245654] BTRFS critical (device vdb): unable to find chunk map for logical 1016250576896 length 4096
[ 4272.246101] BTRFS critical (device vdb): unable to find chunk map for logical 1016250576896 length 4096
[ 4272.246503] BTRFS critical (device vdb): unable to find chunk map for logical 1016250580992 length 4096
[ 4272.246948] BTRFS critical (device vdb): unable to find chunk map for logical 1016250580992 length 4096
[ 4272.247407] BTRFS critical (device vdb): unable to find chunk map for logical 1016250585088 length 4096
[ 4272.247827] BTRFS critical (device vdb): unable to find chunk map for logical 1016250585088 length 4096
[ 4272.248242] BTRFS critical (device vdb): unable to find chunk map for logical 1016250589184 length 4096
[ 4272.250927] BTRFS critical (device vdb): unable to find chunk map for logical 1016250589184 length 4096
[ 4272.251334] BTRFS critical (device vdb): unable to find chunk map for logical 1016250593280 length 4096
[ 4272.251583] BTRFS critical (device vdb): unable to find chunk map for logical 1016250593280 length 4096
[ 4272.252051] BTRFS critical (device vdb): unable to find chunk map for logical 1016250597376 length 4096
[ 4272.252588] BTRFS critical (device vdb): unable to find chunk map for logical 1016250597376 length 4096
[ 4272.252945] BTRFS critical (device vdb): unable to find chunk map for logical 1016250601472 length 4096
[ 4272.253222] BTRFS critical (device vdb): unable to find chunk map for logical 1016250601472 length 4096
[ 4272.253555] BTRFS critical (device vdb): unable to find chunk map for logical 1016250605568 length 4096
[ 4272.253835] BTRFS critical (device vdb): unable to find chunk map for logical 1016250605568 length 4096
[ 4272.254069] BTRFS critical (device vdb): unable to find chunk map for logical 1016250609664 length 4096
[ 4272.254302] BTRFS critical (device vdb): unable to find chunk map for logical 1016250609664 length 4096
[ 4272.254536] BTRFS critical (device vdb): unable to find chunk map for logical 1016250613760 length 4096
[ 4272.254774] BTRFS critical (device vdb): unable to find chunk map for logical 1016250613760 length 4096
[ 4272.255018] BTRFS critical (device vdb): unable to find chunk map for logical 1016250617856 length 4096
[ 4272.255314] BTRFS critical (device vdb): unable to find chunk map for logical 1016250617856 length 4096
[ 4272.255636] BTRFS critical (device vdb): unable to find chunk map for logical 1016250621952 length 4096
[ 4272.255982] BTRFS critical (device vdb): unable to find chunk map for logical 1016250621952 length 4096
[ 4272.256326] BTRFS critical (device vdb): unable to find chunk map for logical 1016250626048 length 4096
[ 4272.256740] BTRFS critical (device vdb): unable to find chunk map for logical 1016250626048 length 4096
[ 4272.257550] scrub_stripe_report_errors: 2 callbacks suppressed
[ 4272.257558] BTRFS error (device vdb): fixed up error at logical 1016250564608 on dev /dev/vdb physical 1016250564608
[ 4272.257570] BTRFS error (device vdb): fixed up error at logical 1016250564608 on dev /dev/vdb physical 1016250564608
[ 4277.596302] BTRFS critical (device vdb): unable to find chunk map for logical 1020487249920 length 4096
[ 4277.596823] BTRFS critical (device vdb): unable to find chunk map for logical 1020487249920 length 20480
[ 4277.608011] BTRFS critical (device vdb): unable to find chunk map for logical 1020487249920 length 4096
[ 4277.608482] BTRFS critical (device vdb): unable to find chunk map for logical 1020487249920 length 4096
[ 4277.608810] BTRFS critical (device vdb): unable to find chunk map for logical 1020487254016 length 4096
[ 4277.609150] BTRFS critical (device vdb): unable to find chunk map for logical 1020487254016 length 4096
[ 4277.609420] BTRFS critical (device vdb): unable to find chunk map for logical 1020487258112 length 4096
[ 4277.609701] BTRFS critical (device vdb): unable to find chunk map for logical 1020487258112 length 4096
[ 4277.610084] BTRFS critical (device vdb): unable to find chunk map for logical 1020487262208 length 4096
[ 4277.610471] BTRFS critical (device vdb): unable to find chunk map for logical 1020487262208 length 4096
[ 4277.610872] BTRFS critical (device vdb): unable to find chunk map for logical 1020487266304 length 4096
[ 4277.611318] BTRFS critical (device vdb): unable to find chunk map for logical 1020487266304 length 4096
[ 4277.612095] BTRFS error (device vdb): fixed up error at logical 1020487204864 on dev /dev/vdb physical 1020487204864
[ 4277.612112] BTRFS error (device vdb): fixed up error at logical 1020487204864 on dev /dev/vdb physical 1020487204864
[ 4277.612121] BTRFS error (device vdb): fixed up error at logical 1020487204864 on dev /dev/vdb physical 1020487204864
[ 4277.612129] BTRFS error (device vdb): fixed up error at logical 1020487204864 on dev /dev/vdb physical 1020487204864
[ 4277.612136] BTRFS error (device vdb): fixed up error at logical 1020487204864 on dev /dev/vdb physical 1020487204864
[ 4277.612142] BTRFS error (device vdb): fixed up error at logical 1020487204864 on dev /dev/vdb physical 1020487204864
[ 4277.612149] BTRFS error (device vdb): fixed up error at logical 1020487204864 on dev /dev/vdb physical 1020487204864
[ 4277.612171] BTRFS error (device vdb): fixed up error at logical 1020487204864 on dev /dev/vdb physical 1020487204864
[ 4277.612178] BTRFS error (device vdb): fixed up error at logical 1020487204864 on dev /dev/vdb physical 1020487204864
[ 4277.612185] BTRFS error (device vdb): fixed up error at logical 1020487204864 on dev /dev/vdb physical 1020487204864
[ 4290.155951] BTRFS critical (device vdb): unable to find chunk map for logical 1030859419648 length 4096
[ 4290.156120] BTRFS critical (device vdb): unable to find chunk map for logical 1030859419648 length 36864
[ 4290.156935] BTRFS critical (device vdb): unable to find chunk map for logical 1030859419648 length 4096
[ 4290.157051] BTRFS critical (device vdb): unable to find chunk map for logical 1030859419648 length 4096
[ 4290.157159] BTRFS critical (device vdb): unable to find chunk map for logical 1030859423744 length 4096
[ 4290.157271] BTRFS critical (device vdb): unable to find chunk map for logical 1030859423744 length 4096
[ 4290.157382] BTRFS critical (device vdb): unable to find chunk map for logical 1030859427840 length 4096
[ 4290.157479] BTRFS critical (device vdb): unable to find chunk map for logical 1030859427840 length 4096
[ 4290.157579] BTRFS critical (device vdb): unable to find chunk map for logical 1030859431936 length 4096
[ 4290.157688] BTRFS critical (device vdb): unable to find chunk map for logical 1030859431936 length 4096
[ 4290.157790] BTRFS critical (device vdb): unable to find chunk map for logical 1030859436032 length 4096
[ 4290.157890] BTRFS critical (device vdb): unable to find chunk map for logical 1030859436032 length 4096
[ 4290.157993] BTRFS critical (device vdb): unable to find chunk map for logical 1030859440128 length 4096
[ 4290.158093] BTRFS critical (device vdb): unable to find chunk map for logical 1030859440128 length 4096
[ 4290.158193] BTRFS critical (device vdb): unable to find chunk map for logical 1030859444224 length 4096
[ 4290.158302] BTRFS critical (device vdb): unable to find chunk map for logical 1030859444224 length 4096
[ 4290.158415] BTRFS critical (device vdb): unable to find chunk map for logical 1030859448320 length 4096
[ 4290.158528] BTRFS critical (device vdb): unable to find chunk map for logical 1030859448320 length 4096
[ 4290.158631] BTRFS critical (device vdb): unable to find chunk map for logical 1030859452416 length 4096
[ 4290.158740] BTRFS critical (device vdb): unable to find chunk map for logical 1030859452416 length 4096
[ 4290.159558] scrub_stripe_report_errors: 1 callbacks suppressed
[ 4290.159561] BTRFS error (device vdb): fixed up error at logical 1030859390976 on dev /dev/vdb physical 1030859390976
[ 4290.159565] BTRFS error (device vdb): fixed up error at logical 1030859390976 on dev /dev/vdb physical 1030859390976
[ 4290.159567] BTRFS error (device vdb): fixed up error at logical 1030859390976 on dev /dev/vdb physical 1030859390976
[ 4290.159568] BTRFS error (device vdb): fixed up error at logical 1030859390976 on dev /dev/vdb physical 1030859390976
[ 4290.159570] BTRFS error (device vdb): fixed up error at logical 1030859390976 on dev /dev/vdb physical 1030859390976
[ 4290.159571] BTRFS error (device vdb): fixed up error at logical 1030859390976 on dev /dev/vdb physical 1030859390976
[ 4290.159572] BTRFS error (device vdb): fixed up error at logical 1030859390976 on dev /dev/vdb physical 1030859390976
[ 4290.771656] BTRFS critical (device vdb): unable to find chunk map for logical 1033007480832 length 4096
[ 4290.771779] BTRFS critical (device vdb): unable to find chunk map for logical 1033007480832 length 49152
[ 4290.773028] BTRFS critical (device vdb): unable to find chunk map for logical 1033007480832 length 4096
[ 4290.773150] BTRFS critical (device vdb): unable to find chunk map for logical 1033007480832 length 4096
[ 4290.773260] BTRFS critical (device vdb): unable to find chunk map for logical 1033007484928 length 4096
[ 4290.773368] BTRFS critical (device vdb): unable to find chunk map for logical 1033007484928 length 4096
[ 4290.773475] BTRFS critical (device vdb): unable to find chunk map for logical 1033007489024 length 4096
[ 4290.773588] BTRFS critical (device vdb): unable to find chunk map for logical 1033007489024 length 4096
[ 4290.773717] BTRFS critical (device vdb): unable to find chunk map for logical 1033007493120 length 4096
[ 4290.773834] BTRFS critical (device vdb): unable to find chunk map for logical 1033007493120 length 4096
[ 4290.773954] BTRFS critical (device vdb): unable to find chunk map for logical 1033007497216 length 4096
[ 4290.774076] BTRFS critical (device vdb): unable to find chunk map for logical 1033007497216 length 4096
[ 4290.774195] BTRFS critical (device vdb): unable to find chunk map for logical 1033007501312 length 4096
[ 4290.774314] BTRFS critical (device vdb): unable to find chunk map for logical 1033007501312 length 4096
[ 4290.774432] BTRFS critical (device vdb): unable to find chunk map for logical 1033007505408 length 4096
[ 4290.774550] BTRFS critical (device vdb): unable to find chunk map for logical 1033007505408 length 4096
[ 4290.774665] BTRFS critical (device vdb): unable to find chunk map for logical 1033007509504 length 4096
[ 4290.774786] BTRFS critical (device vdb): unable to find chunk map for logical 1033007509504 length 4096
[ 4290.774908] BTRFS critical (device vdb): unable to find chunk map for logical 1033007513600 length 4096
[ 4290.775016] BTRFS critical (device vdb): unable to find chunk map for logical 1033007513600 length 4096
[ 4290.775127] BTRFS critical (device vdb): unable to find chunk map for logical 1033007517696 length 4096
[ 4290.775237] BTRFS critical (device vdb): unable to find chunk map for logical 1033007517696 length 4096
[ 4290.775346] BTRFS critical (device vdb): unable to find chunk map for logical 1033007521792 length 4096
[ 4290.775455] BTRFS critical (device vdb): unable to find chunk map for logical 1033007521792 length 4096
[ 4290.775563] BTRFS critical (device vdb): unable to find chunk map for logical 1033007525888 length 4096
[ 4290.775684] BTRFS critical (device vdb): unable to find chunk map for logical 1033007525888 length 4096
[ 4290.776011] BTRFS error (device vdb): fixed up error at logical 1033007464448 on dev /dev/vdb physical 1033007464448
[ 4290.776016] BTRFS error (device vdb): fixed up error at logical 1033007464448 on dev /dev/vdb physical 1033007464448
[ 4290.776018] BTRFS error (device vdb): fixed up error at logical 1033007464448 on dev /dev/vdb physical 1033007464448
[ 4294.622500] BTRFS critical (device vdb): unable to find chunk map for logical 1035155181568 length 4096
[ 4294.622907] BTRFS critical (device vdb): unable to find chunk map for logical 1035155181568 length 8192
[ 4294.628408] BTRFS critical (device vdb): unable to find chunk map for logical 1035155181568 length 4096
[ 4294.628686] BTRFS critical (device vdb): unable to find chunk map for logical 1035155181568 length 4096
[ 4294.628915] BTRFS critical (device vdb): unable to find chunk map for logical 1035155185664 length 4096
[ 4294.629303] BTRFS critical (device vdb): unable to find chunk map for logical 1035155185664 length 4096
[ 4311.484610] BTRFS critical (device vdb): unable to find chunk map for logical 1048041410560 length 4096
[ 4311.484844] BTRFS critical (device vdb): unable to find chunk map for logical 1048041410560 length 12288
[ 4311.486751] BTRFS critical (device vdb): unable to find chunk map for logical 1048041410560 length 4096
[ 4311.486941] BTRFS critical (device vdb): unable to find chunk map for logical 1048041410560 length 4096
[ 4311.487119] BTRFS critical (device vdb): unable to find chunk map for logical 1048041414656 length 4096
[ 4311.487258] BTRFS critical (device vdb): unable to find chunk map for logical 1048041414656 length 4096
[ 4311.487397] BTRFS critical (device vdb): unable to find chunk map for logical 1048041418752 length 4096
[ 4311.487532] BTRFS critical (device vdb): unable to find chunk map for logical 1048041418752 length 4096
[ 4311.488040] scrub_stripe_report_errors: 14 callbacks suppressed
[ 4311.488043] BTRFS error (device vdb): fixed up error at logical 1048041357312 on dev /dev/vdb physical 1048041357312
[ 4311.488049] BTRFS error (device vdb): fixed up error at logical 1048041357312 on dev /dev/vdb physical 1048041357312
[ 4311.488063] BTRFS error (device vdb): fixed up error at logical 1048041357312 on dev /dev/vdb physical 1048041357312
[ 4311.488065] BTRFS error (device vdb): fixed up error at logical 1048041357312 on dev /dev/vdb physical 1048041357312
[ 4311.488068] BTRFS error (device vdb): fixed up error at logical 1048041357312 on dev /dev/vdb physical 1048041357312
[ 4311.488070] BTRFS error (device vdb): fixed up error at logical 1048041357312 on dev /dev/vdb physical 1048041357312
[ 4311.488073] BTRFS error (device vdb): fixed up error at logical 1048041357312 on dev /dev/vdb physical 1048041357312
[ 4311.488075] BTRFS error (device vdb): fixed up error at logical 1048041357312 on dev /dev/vdb physical 1048041357312
[ 4311.488078] BTRFS error (device vdb): fixed up error at logical 1048041357312 on dev /dev/vdb physical 1048041357312
[ 4311.488080] BTRFS error (device vdb): fixed up error at logical 1048041357312 on dev /dev/vdb physical 1048041357312
[ 4326.465476] BTRFS critical (device vdb): unable to find chunk map for logical 1084548718592 length 4096
[ 4326.467188] BTRFS critical (device vdb): unable to find chunk map for logical 1084548718592 length 57344
[ 4326.482365] BTRFS critical (device vdb): unable to find chunk map for logical 1084548718592 length 4096
[ 4326.482829] BTRFS critical (device vdb): unable to find chunk map for logical 1084548718592 length 4096
[ 4326.483347] BTRFS critical (device vdb): unable to find chunk map for logical 1084548722688 length 4096
[ 4326.483781] BTRFS critical (device vdb): unable to find chunk map for logical 1084548722688 length 4096
[ 4326.484191] BTRFS critical (device vdb): unable to find chunk map for logical 1084548726784 length 4096
[ 4326.484610] BTRFS critical (device vdb): unable to find chunk map for logical 1084548726784 length 4096
[ 4326.485021] BTRFS critical (device vdb): unable to find chunk map for logical 1084548730880 length 4096
[ 4326.485439] BTRFS critical (device vdb): unable to find chunk map for logical 1084548730880 length 4096
[ 4326.485918] BTRFS critical (device vdb): unable to find chunk map for logical 1084548734976 length 4096
[ 4326.486311] BTRFS critical (device vdb): unable to find chunk map for logical 1084548734976 length 4096
[ 4326.486717] BTRFS critical (device vdb): unable to find chunk map for logical 1084548739072 length 4096
[ 4326.487564] BTRFS critical (device vdb): unable to find chunk map for logical 1084548739072 length 4096
[ 4326.487970] BTRFS critical (device vdb): unable to find chunk map for logical 1084548743168 length 4096
[ 4326.488332] BTRFS critical (device vdb): unable to find chunk map for logical 1084548743168 length 4096
[ 4326.488705] BTRFS critical (device vdb): unable to find chunk map for logical 1084548747264 length 4096
[ 4326.489141] BTRFS critical (device vdb): unable to find chunk map for logical 1084548747264 length 4096
[ 4326.489524] BTRFS critical (device vdb): unable to find chunk map for logical 1084548751360 length 4096
[ 4326.489905] BTRFS critical (device vdb): unable to find chunk map for logical 1084548751360 length 4096
[ 4326.490359] BTRFS critical (device vdb): unable to find chunk map for logical 1084548755456 length 4096
[ 4326.490748] BTRFS critical (device vdb): unable to find chunk map for logical 1084548755456 length 4096
[ 4326.491112] BTRFS critical (device vdb): unable to find chunk map for logical 1084548759552 length 4096
[ 4326.491860] BTRFS critical (device vdb): unable to find chunk map for logical 1084548759552 length 4096
[ 4326.492300] BTRFS critical (device vdb): unable to find chunk map for logical 1084548763648 length 4096
[ 4326.492709] BTRFS critical (device vdb): unable to find chunk map for logical 1084548763648 length 4096
[ 4326.493078] BTRFS critical (device vdb): unable to find chunk map for logical 1084548767744 length 4096
[ 4326.493440] BTRFS critical (device vdb): unable to find chunk map for logical 1084548767744 length 4096
[ 4326.493804] BTRFS critical (device vdb): unable to find chunk map for logical 1084548771840 length 4096
[ 4326.494573] BTRFS critical (device vdb): unable to find chunk map for logical 1084548771840 length 4096
[ 4326.495686] scrub_stripe_report_errors: 3 callbacks suppressed
[ 4326.495694] BTRFS error (device vdb): fixed up error at logical 1084548710400 on dev /dev/vdb physical 1084548710400
[ 4326.495706] BTRFS error (device vdb): fixed up error at logical 1084548710400 on dev /dev/vdb physical 1084548710400
[ 4327.165378] BTRFS critical (device vdb): unable to find chunk map for logical 1091216695296 length 4096
[ 4327.166489] BTRFS critical (device vdb): unable to find chunk map for logical 1091216695296 length 40960
[ 4327.171116] BTRFS critical (device vdb): unable to find chunk map for logical 1091216695296 length 4096
[ 4327.171656] BTRFS critical (device vdb): unable to find chunk map for logical 1091216695296 length 4096
[ 4327.172254] BTRFS critical (device vdb): unable to find chunk map for logical 1091216699392 length 4096
[ 4327.174234] BTRFS critical (device vdb): unable to find chunk map for logical 1091216699392 length 4096
[ 4327.174682] BTRFS critical (device vdb): unable to find chunk map for logical 1091216703488 length 4096
[ 4327.175111] BTRFS critical (device vdb): unable to find chunk map for logical 1091216703488 length 4096
[ 4327.175596] BTRFS critical (device vdb): unable to find chunk map for logical 1091216707584 length 4096
[ 4327.176035] BTRFS critical (device vdb): unable to find chunk map for logical 1091216707584 length 4096
[ 4327.176597] BTRFS critical (device vdb): unable to find chunk map for logical 1091216711680 length 4096
[ 4327.177020] BTRFS critical (device vdb): unable to find chunk map for logical 1091216711680 length 4096
[ 4327.177430] BTRFS critical (device vdb): unable to find chunk map for logical 1091216715776 length 4096
[ 4327.177848] BTRFS critical (device vdb): unable to find chunk map for logical 1091216715776 length 4096
[ 4327.178309] BTRFS critical (device vdb): unable to find chunk map for logical 1091216719872 length 4096
[ 4327.178722] BTRFS critical (device vdb): unable to find chunk map for logical 1091216719872 length 4096
[ 4327.179136] BTRFS critical (device vdb): unable to find chunk map for logical 1091216723968 length 4096
[ 4327.179589] BTRFS critical (device vdb): unable to find chunk map for logical 1091216723968 length 4096
[ 4327.180002] BTRFS critical (device vdb): unable to find chunk map for logical 1091216728064 length 4096
[ 4327.180404] BTRFS critical (device vdb): unable to find chunk map for logical 1091216728064 length 4096
[ 4327.180807] BTRFS critical (device vdb): unable to find chunk map for logical 1091216732160 length 4096
[ 4327.181221] BTRFS critical (device vdb): unable to find chunk map for logical 1091216732160 length 4096
[ 4327.182456] BTRFS error (device vdb): fixed up error at logical 1091216670720 on dev /dev/vdb physical 1091216670720
[ 4327.182473] BTRFS error (device vdb): fixed up error at logical 1091216670720 on dev /dev/vdb physical 1091216670720
[ 4327.182481] BTRFS error (device vdb): fixed up error at logical 1091216670720 on dev /dev/vdb physical 1091216670720
[ 4327.182510] BTRFS error (device vdb): fixed up error at logical 1091216670720 on dev /dev/vdb physical 1091216670720
[ 4327.182518] BTRFS error (device vdb): fixed up error at logical 1091216670720 on dev /dev/vdb physical 1091216670720
[ 4327.182525] BTRFS error (device vdb): fixed up error at logical 1091216670720 on dev /dev/vdb physical 1091216670720
[ 4327.636367] BTRFS critical (device vdb): unable to find chunk map for logical 1095442223104 length 4096
[ 4327.636800] BTRFS critical (device vdb): unable to find chunk map for logical 1095442223104 length 12288
[ 4327.653195] BTRFS critical (device vdb): unable to find chunk map for logical 1095442223104 length 4096
[ 4327.653630] BTRFS critical (device vdb): unable to find chunk map for logical 1095442223104 length 4096
[ 4327.653928] BTRFS critical (device vdb): unable to find chunk map for logical 1095442227200 length 4096
[ 4327.654229] BTRFS critical (device vdb): unable to find chunk map for logical 1095442227200 length 4096
[ 4327.654466] BTRFS critical (device vdb): unable to find chunk map for logical 1095442231296 length 4096
[ 4327.654712] BTRFS critical (device vdb): unable to find chunk map for logical 1095442231296 length 4096
[ 4327.655880] BTRFS error (device vdb): fixed up error at logical 1095442169856 on dev /dev/vdb physical 1095442169856
[ 4327.655896] BTRFS error (device vdb): fixed up error at logical 1095442169856 on dev /dev/vdb physical 1095442169856
[ 4332.400889] BTRFS critical (device vdb): unable to find chunk map for logical 1104076398592 length 4096
[ 4332.401329] BTRFS critical (device vdb): unable to find chunk map for logical 1104076398592 length 8192
[ 4332.407269] BTRFS critical (device vdb): unable to find chunk map for logical 1104076398592 length 4096
[ 4332.407670] BTRFS critical (device vdb): unable to find chunk map for logical 1104076398592 length 4096
[ 4332.407943] BTRFS critical (device vdb): unable to find chunk map for logical 1104076402688 length 4096
[ 4332.408200] BTRFS critical (device vdb): unable to find chunk map for logical 1104076402688 length 4096
[ 4332.409137] scrub_stripe_report_errors: 11 callbacks suppressed
[ 4332.409146] BTRFS error (device vdb): fixed up error at logical 1104076341248 on dev /dev/vdb physical 1104076341248
[ 4332.409158] BTRFS error (device vdb): fixed up error at logical 1104076341248 on dev /dev/vdb physical 1104076341248
[ 4332.409164] BTRFS error (device vdb): fixed up error at logical 1104076341248 on dev /dev/vdb physical 1104076341248
[ 4332.409170] BTRFS error (device vdb): fixed up error at logical 1104076341248 on dev /dev/vdb physical 1104076341248
[ 4332.409175] BTRFS error (device vdb): fixed up error at logical 1104076341248 on dev /dev/vdb physical 1104076341248
[ 4332.409180] BTRFS error (device vdb): fixed up error at logical 1104076341248 on dev /dev/vdb physical 1104076341248
[ 4332.409186] BTRFS error (device vdb): fixed up error at logical 1104076341248 on dev /dev/vdb physical 1104076341248
[ 4333.796966] BTRFS critical (device vdb): unable to find chunk map for logical 1106023555072 length 4096
[ 4333.797468] BTRFS critical (device vdb): unable to find chunk map for logical 1106023555072 length 57344
[ 4333.805456] BTRFS critical (device vdb): unable to find chunk map for logical 1106023555072 length 4096
[ 4333.805790] BTRFS critical (device vdb): unable to find chunk map for logical 1106023555072 length 4096
[ 4333.806102] BTRFS critical (device vdb): unable to find chunk map for logical 1106023559168 length 4096
[ 4333.806364] BTRFS critical (device vdb): unable to find chunk map for logical 1106023559168 length 4096
[ 4333.806624] BTRFS critical (device vdb): unable to find chunk map for logical 1106023563264 length 4096
[ 4333.806882] BTRFS critical (device vdb): unable to find chunk map for logical 1106023563264 length 4096
[ 4333.807253] BTRFS critical (device vdb): unable to find chunk map for logical 1106023567360 length 4096
[ 4333.807540] BTRFS critical (device vdb): unable to find chunk map for logical 1106023567360 length 4096
[ 4333.807799] BTRFS critical (device vdb): unable to find chunk map for logical 1106023571456 length 4096
[ 4333.808056] BTRFS critical (device vdb): unable to find chunk map for logical 1106023571456 length 4096
[ 4333.808309] BTRFS critical (device vdb): unable to find chunk map for logical 1106023575552 length 4096
[ 4333.808602] BTRFS critical (device vdb): unable to find chunk map for logical 1106023575552 length 4096
[ 4333.808995] BTRFS critical (device vdb): unable to find chunk map for logical 1106023579648 length 4096
[ 4333.809298] BTRFS critical (device vdb): unable to find chunk map for logical 1106023579648 length 4096
[ 4333.809855] BTRFS critical (device vdb): unable to find chunk map for logical 1106023583744 length 4096
[ 4333.810285] BTRFS critical (device vdb): unable to find chunk map for logical 1106023583744 length 4096
[ 4333.810726] BTRFS critical (device vdb): unable to find chunk map for logical 1106023587840 length 4096
[ 4333.814611] BTRFS critical (device vdb): unable to find chunk map for logical 1106023587840 length 4096
[ 4333.818479] BTRFS critical (device vdb): unable to find chunk map for logical 1106023591936 length 4096
[ 4333.818939] BTRFS critical (device vdb): unable to find chunk map for logical 1106023591936 length 4096
[ 4333.819419] BTRFS critical (device vdb): unable to find chunk map for logical 1106023596032 length 4096
[ 4333.819828] BTRFS critical (device vdb): unable to find chunk map for logical 1106023596032 length 4096
[ 4333.820238] BTRFS critical (device vdb): unable to find chunk map for logical 1106023600128 length 4096
[ 4333.820665] BTRFS critical (device vdb): unable to find chunk map for logical 1106023600128 length 4096
[ 4333.821081] BTRFS critical (device vdb): unable to find chunk map for logical 1106023604224 length 4096
[ 4333.821489] BTRFS critical (device vdb): unable to find chunk map for logical 1106023604224 length 4096
[ 4333.821872] BTRFS critical (device vdb): unable to find chunk map for logical 1106023608320 length 4096
[ 4333.822311] BTRFS critical (device vdb): unable to find chunk map for logical 1106023608320 length 4096
[ 4333.827132] BTRFS error (device vdb): fixed up error at logical 1106023546880 on dev /dev/vdb physical 1106023546880
[ 4333.827148] BTRFS error (device vdb): fixed up error at logical 1106023546880 on dev /dev/vdb physical 1106023546880
[ 4340.583273] BTRFS critical (device vdb): unable to find chunk map for logical 1116741795840 length 4096
[ 4340.583415] BTRFS critical (device vdb): unable to find chunk map for logical 1116741795840 length 32768
[ 4340.585185] BTRFS critical (device vdb): unable to find chunk map for logical 1116741795840 length 4096
[ 4340.585324] BTRFS critical (device vdb): unable to find chunk map for logical 1116741795840 length 4096
[ 4340.585443] BTRFS critical (device vdb): unable to find chunk map for logical 1116741799936 length 4096
[ 4340.585560] BTRFS critical (device vdb): unable to find chunk map for logical 1116741799936 length 4096
[ 4340.585676] BTRFS critical (device vdb): unable to find chunk map for logical 1116741804032 length 4096
[ 4340.585797] BTRFS critical (device vdb): unable to find chunk map for logical 1116741804032 length 4096
[ 4340.585916] BTRFS critical (device vdb): unable to find chunk map for logical 1116741808128 length 4096
[ 4340.586026] BTRFS critical (device vdb): unable to find chunk map for logical 1116741808128 length 4096
[ 4340.586133] BTRFS critical (device vdb): unable to find chunk map for logical 1116741812224 length 4096
[ 4340.586244] BTRFS critical (device vdb): unable to find chunk map for logical 1116741812224 length 4096
[ 4340.586350] BTRFS critical (device vdb): unable to find chunk map for logical 1116741816320 length 4096
[ 4340.586455] BTRFS critical (device vdb): unable to find chunk map for logical 1116741816320 length 4096
[ 4340.586562] BTRFS critical (device vdb): unable to find chunk map for logical 1116741820416 length 4096
[ 4340.586668] BTRFS critical (device vdb): unable to find chunk map for logical 1116741820416 length 4096
[ 4340.586784] BTRFS critical (device vdb): unable to find chunk map for logical 1116741824512 length 4096
[ 4340.586901] BTRFS critical (device vdb): unable to find chunk map for logical 1116741824512 length 4096
[ 4340.588261] BTRFS error (device vdb): fixed up error at logical 1116741763072 on dev /dev/vdb physical 1116741763072
[ 4340.588266] BTRFS error (device vdb): fixed up error at logical 1116741763072 on dev /dev/vdb physical 1116741763072
[ 4340.588269] BTRFS error (device vdb): fixed up error at logical 1116741763072 on dev /dev/vdb physical 1116741763072
[ 4340.588271] BTRFS error (device vdb): fixed up error at logical 1116741763072 on dev /dev/vdb physical 1116741763072
[ 4340.588273] BTRFS error (device vdb): fixed up error at logical 1116741763072 on dev /dev/vdb physical 1116741763072
[ 4341.400766] BTRFS critical (device vdb): unable to find chunk map for logical 1119192186880 length 4096
[ 4341.400900] BTRFS critical (device vdb): unable to find chunk map for logical 1119192186880 length 32768
[ 4341.407012] BTRFS critical (device vdb): unable to find chunk map for logical 1119192186880 length 4096
[ 4341.407142] BTRFS critical (device vdb): unable to find chunk map for logical 1119192186880 length 4096
[ 4341.407255] BTRFS critical (device vdb): unable to find chunk map for logical 1119192190976 length 4096
[ 4341.407366] BTRFS critical (device vdb): unable to find chunk map for logical 1119192190976 length 4096
[ 4341.407484] BTRFS critical (device vdb): unable to find chunk map for logical 1119192195072 length 4096
[ 4341.407593] BTRFS critical (device vdb): unable to find chunk map for logical 1119192195072 length 4096
[ 4341.407713] BTRFS critical (device vdb): unable to find chunk map for logical 1119192199168 length 4096
[ 4341.407816] BTRFS critical (device vdb): unable to find chunk map for logical 1119192199168 length 4096
[ 4341.407920] BTRFS critical (device vdb): unable to find chunk map for logical 1119192203264 length 4096
[ 4341.408024] BTRFS critical (device vdb): unable to find chunk map for logical 1119192203264 length 4096
[ 4341.408128] BTRFS critical (device vdb): unable to find chunk map for logical 1119192207360 length 4096
[ 4341.408233] BTRFS critical (device vdb): unable to find chunk map for logical 1119192207360 length 4096
[ 4341.408337] BTRFS critical (device vdb): unable to find chunk map for logical 1119192211456 length 4096
[ 4341.408442] BTRFS critical (device vdb): unable to find chunk map for logical 1119192211456 length 4096
[ 4341.408545] BTRFS critical (device vdb): unable to find chunk map for logical 1119192215552 length 4096
[ 4341.408650] BTRFS critical (device vdb): unable to find chunk map for logical 1119192215552 length 4096
[ 4341.410403] BTRFS error (device vdb): fixed up error at logical 1119192154112 on dev /dev/vdb physical 1119192154112
[ 4341.410409] BTRFS error (device vdb): fixed up error at logical 1119192154112 on dev /dev/vdb physical 1119192154112
[ 4341.410411] BTRFS error (device vdb): fixed up error at logical 1119192154112 on dev /dev/vdb physical 1119192154112
[ 4341.410413] BTRFS error (device vdb): fixed up error at logical 1119192154112 on dev /dev/vdb physical 1119192154112
[ 4341.410415] BTRFS error (device vdb): fixed up error at logical 1119192154112 on dev /dev/vdb physical 1119192154112
[ 4459.527565] BTRFS critical (device vdb): unable to find chunk map for logical 1232789102592 length 4096
[ 4459.528101] BTRFS critical (device vdb): unable to find chunk map for logical 1232789102592 length 8192
[ 4459.542066] BTRFS critical (device vdb): unable to find chunk map for logical 1232789102592 length 4096
[ 4459.542520] BTRFS critical (device vdb): unable to find chunk map for logical 1232789102592 length 4096
[ 4459.542937] BTRFS critical (device vdb): unable to find chunk map for logical 1232789106688 length 4096
[ 4459.543310] BTRFS critical (device vdb): unable to find chunk map for logical 1232789106688 length 4096
[ 4459.544225] scrub_stripe_report_errors: 3 callbacks suppressed
[ 4459.544233] BTRFS error (device vdb): fixed up error at logical 1232789045248 on dev /dev/vdb physical 1232789045248
[ 4459.544246] BTRFS error (device vdb): fixed up error at logical 1232789045248 on dev /dev/vdb physical 1232789045248
[ 4459.544253] BTRFS error (device vdb): fixed up error at logical 1232789045248 on dev /dev/vdb physical 1232789045248
[ 4459.544259] BTRFS error (device vdb): fixed up error at logical 1232789045248 on dev /dev/vdb physical 1232789045248
[ 4459.544265] BTRFS error (device vdb): fixed up error at logical 1232789045248 on dev /dev/vdb physical 1232789045248
[ 4459.544271] BTRFS error (device vdb): fixed up error at logical 1232789045248 on dev /dev/vdb physical 1232789045248
[ 4459.544277] BTRFS error (device vdb): fixed up error at logical 1232789045248 on dev /dev/vdb physical 1232789045248
[ 4459.544283] BTRFS error (device vdb): fixed up error at logical 1232789045248 on dev /dev/vdb physical 1232789045248
[ 4459.544289] BTRFS error (device vdb): fixed up error at logical 1232789045248 on dev /dev/vdb physical 1232789045248
[ 4459.544295] BTRFS error (device vdb): fixed up error at logical 1232789045248 on dev /dev/vdb physical 1232789045248
[ 4524.131000] BTRFS critical (device vdb): unable to find chunk map for logical 1309241815040 length 4096
[ 4524.134872] BTRFS critical (device vdb): unable to find chunk map for logical 1309241815040 length 20480
[ 4524.149071] BTRFS critical (device vdb): unable to find chunk map for logical 1309241815040 length 4096
[ 4524.149611] BTRFS critical (device vdb): unable to find chunk map for logical 1309241815040 length 4096
[ 4524.150080] BTRFS critical (device vdb): unable to find chunk map for logical 1309241819136 length 4096
[ 4524.150514] BTRFS critical (device vdb): unable to find chunk map for logical 1309241819136 length 4096
[ 4524.150992] BTRFS critical (device vdb): unable to find chunk map for logical 1309241823232 length 4096
[ 4524.151433] BTRFS critical (device vdb): unable to find chunk map for logical 1309241823232 length 4096
[ 4524.151854] BTRFS critical (device vdb): unable to find chunk map for logical 1309241827328 length 4096
[ 4524.152272] BTRFS critical (device vdb): unable to find chunk map for logical 1309241827328 length 4096
[ 4524.152695] BTRFS critical (device vdb): unable to find chunk map for logical 1309241831424 length 4096
[ 4524.153120] BTRFS critical (device vdb): unable to find chunk map for logical 1309241831424 length 4096
[ 4524.154014] scrub_stripe_report_errors: 4 callbacks suppressed
[ 4524.154021] BTRFS error (device vdb): fixed up error at logical 1309241769984 on dev /dev/vdb physical 1309241769984
[ 4524.154056] BTRFS error (device vdb): fixed up error at logical 1309241769984 on dev /dev/vdb physical 1309241769984
[ 4524.154065] BTRFS error (device vdb): fixed up error at logical 1309241769984 on dev /dev/vdb physical 1309241769984
[ 4524.154071] BTRFS error (device vdb): fixed up error at logical 1309241769984 on dev /dev/vdb physical 1309241769984
[ 4524.154076] BTRFS error (device vdb): fixed up error at logical 1309241769984 on dev /dev/vdb physical 1309241769984
[ 4524.154080] BTRFS error (device vdb): fixed up error at logical 1309241769984 on dev /dev/vdb physical 1309241769984
[ 4524.154084] BTRFS error (device vdb): fixed up error at logical 1309241769984 on dev /dev/vdb physical 1309241769984
[ 4524.154088] BTRFS error (device vdb): fixed up error at logical 1309241769984 on dev /dev/vdb physical 1309241769984
[ 4524.154092] BTRFS error (device vdb): fixed up error at logical 1309241769984 on dev /dev/vdb physical 1309241769984
[ 4556.718165] BTRFS critical (device vdb): unable to find chunk map for logical 1348653420544 length 4096
[ 4556.718686] BTRFS critical (device vdb): unable to find chunk map for logical 1348653420544 length 61440
[ 4556.721897] BTRFS critical (device vdb): unable to find chunk map for logical 1348653420544 length 4096
[ 4556.722250] BTRFS critical (device vdb): unable to find chunk map for logical 1348653420544 length 4096
[ 4556.722519] BTRFS critical (device vdb): unable to find chunk map for logical 1348653424640 length 4096
[ 4556.722779] BTRFS critical (device vdb): unable to find chunk map for logical 1348653424640 length 4096
[ 4556.723039] BTRFS critical (device vdb): unable to find chunk map for logical 1348653428736 length 4096
[ 4556.723297] BTRFS critical (device vdb): unable to find chunk map for logical 1348653428736 length 4096
[ 4556.723554] BTRFS critical (device vdb): unable to find chunk map for logical 1348653432832 length 4096
[ 4556.723813] BTRFS critical (device vdb): unable to find chunk map for logical 1348653432832 length 4096
[ 4556.724069] BTRFS critical (device vdb): unable to find chunk map for logical 1348653436928 length 4096
[ 4556.724327] BTRFS critical (device vdb): unable to find chunk map for logical 1348653436928 length 4096
[ 4556.724581] BTRFS critical (device vdb): unable to find chunk map for logical 1348653441024 length 4096
[ 4556.724835] BTRFS critical (device vdb): unable to find chunk map for logical 1348653441024 length 4096
[ 4556.725087] BTRFS critical (device vdb): unable to find chunk map for logical 1348653445120 length 4096
[ 4556.725341] BTRFS critical (device vdb): unable to find chunk map for logical 1348653445120 length 4096
[ 4556.725735] BTRFS critical (device vdb): unable to find chunk map for logical 1348653449216 length 4096
[ 4556.726173] BTRFS critical (device vdb): unable to find chunk map for logical 1348653449216 length 4096
[ 4556.726600] BTRFS critical (device vdb): unable to find chunk map for logical 1348653453312 length 4096
[ 4556.727054] BTRFS critical (device vdb): unable to find chunk map for logical 1348653453312 length 4096
[ 4556.727492] BTRFS critical (device vdb): unable to find chunk map for logical 1348653457408 length 4096
[ 4556.727864] BTRFS critical (device vdb): unable to find chunk map for logical 1348653457408 length 4096
[ 4556.728231] BTRFS critical (device vdb): unable to find chunk map for logical 1348653461504 length 4096
[ 4556.728591] BTRFS critical (device vdb): unable to find chunk map for logical 1348653461504 length 4096
[ 4556.728952] BTRFS critical (device vdb): unable to find chunk map for logical 1348653465600 length 4096
[ 4556.729297] BTRFS critical (device vdb): unable to find chunk map for logical 1348653465600 length 4096
[ 4556.729677] BTRFS critical (device vdb): unable to find chunk map for logical 1348653469696 length 4096
[ 4556.730190] BTRFS critical (device vdb): unable to find chunk map for logical 1348653469696 length 4096
[ 4556.730621] BTRFS critical (device vdb): unable to find chunk map for logical 1348653473792 length 4096
[ 4556.731019] BTRFS critical (device vdb): unable to find chunk map for logical 1348653473792 length 4096
[ 4556.731390] BTRFS critical (device vdb): unable to find chunk map for logical 1348653477888 length 4096
[ 4556.731776] BTRFS critical (device vdb): unable to find chunk map for logical 1348653477888 length 4096
[ 4556.732757] BTRFS error (device vdb): fixed up error at logical 1348653416448 on dev /dev/vdb physical 1348653416448
[ 4593.306592] BTRFS critical (device vdb): unable to find chunk map for logical 1375150882816 length 4096
[ 4593.307672] BTRFS critical (device vdb): unable to find chunk map for logical 1375150882816 length 49152
[ 4593.318334] BTRFS critical (device vdb): unable to find chunk map for logical 1375150882816 length 4096
[ 4593.318735] BTRFS critical (device vdb): unable to find chunk map for logical 1375150882816 length 4096
[ 4593.319175] BTRFS critical (device vdb): unable to find chunk map for logical 1375150886912 length 4096
[ 4593.319483] BTRFS critical (device vdb): unable to find chunk map for logical 1375150886912 length 4096
[ 4593.319844] BTRFS critical (device vdb): unable to find chunk map for logical 1375150891008 length 4096
[ 4593.320216] BTRFS critical (device vdb): unable to find chunk map for logical 1375150891008 length 4096
[ 4593.320643] BTRFS critical (device vdb): unable to find chunk map for logical 1375150895104 length 4096
[ 4593.321039] BTRFS critical (device vdb): unable to find chunk map for logical 1375150895104 length 4096
[ 4593.324880] BTRFS critical (device vdb): unable to find chunk map for logical 1375150899200 length 4096
[ 4593.325308] BTRFS critical (device vdb): unable to find chunk map for logical 1375150899200 length 4096
[ 4593.325743] BTRFS critical (device vdb): unable to find chunk map for logical 1375150903296 length 4096
[ 4593.326176] BTRFS critical (device vdb): unable to find chunk map for logical 1375150903296 length 4096
[ 4593.326567] BTRFS critical (device vdb): unable to find chunk map for logical 1375150907392 length 4096
[ 4593.326961] BTRFS critical (device vdb): unable to find chunk map for logical 1375150907392 length 4096
[ 4593.327575] BTRFS critical (device vdb): unable to find chunk map for logical 1375150911488 length 4096
[ 4593.328002] BTRFS critical (device vdb): unable to find chunk map for logical 1375150911488 length 4096
[ 4593.328390] BTRFS critical (device vdb): unable to find chunk map for logical 1375150915584 length 4096
[ 4593.328876] BTRFS critical (device vdb): unable to find chunk map for logical 1375150915584 length 4096
[ 4593.332960] BTRFS critical (device vdb): unable to find chunk map for logical 1375150919680 length 4096
[ 4593.336037] BTRFS critical (device vdb): unable to find chunk map for logical 1375150919680 length 4096
[ 4593.336341] BTRFS critical (device vdb): unable to find chunk map for logical 1375150923776 length 4096
[ 4593.336589] BTRFS critical (device vdb): unable to find chunk map for logical 1375150923776 length 4096
[ 4593.336878] BTRFS critical (device vdb): unable to find chunk map for logical 1375150927872 length 4096
[ 4593.337122] BTRFS critical (device vdb): unable to find chunk map for logical 1375150927872 length 4096
[ 4593.338035] BTRFS error (device vdb): fixed up error at logical 1375150866432 on dev /dev/vdb physical 1375150866432
[ 4602.103589] BTRFS critical (device vdb): unable to find chunk map for logical 1380060139520 length 4096
[ 4602.103731] BTRFS critical (device vdb): unable to find chunk map for logical 1380060139520 length 28672
[ 4602.118569] BTRFS critical (device vdb): unable to find chunk map for logical 1380060139520 length 4096
[ 4602.118656] BTRFS critical (device vdb): unable to find chunk map for logical 1380060139520 length 4096
[ 4602.118723] BTRFS critical (device vdb): unable to find chunk map for logical 1380060143616 length 4096
[ 4602.118790] BTRFS critical (device vdb): unable to find chunk map for logical 1380060143616 length 4096
[ 4602.118854] BTRFS critical (device vdb): unable to find chunk map for logical 1380060147712 length 4096
[ 4602.118918] BTRFS critical (device vdb): unable to find chunk map for logical 1380060147712 length 4096
[ 4602.118982] BTRFS critical (device vdb): unable to find chunk map for logical 1380060151808 length 4096
[ 4602.119046] BTRFS critical (device vdb): unable to find chunk map for logical 1380060151808 length 4096
[ 4602.119109] BTRFS critical (device vdb): unable to find chunk map for logical 1380060155904 length 4096
[ 4602.119173] BTRFS critical (device vdb): unable to find chunk map for logical 1380060155904 length 4096
[ 4602.119236] BTRFS critical (device vdb): unable to find chunk map for logical 1380060160000 length 4096
[ 4602.119300] BTRFS critical (device vdb): unable to find chunk map for logical 1380060160000 length 4096
[ 4602.119363] BTRFS critical (device vdb): unable to find chunk map for logical 1380060164096 length 4096
[ 4602.119426] BTRFS critical (device vdb): unable to find chunk map for logical 1380060164096 length 4096
[ 4602.119600] BTRFS error (device vdb): fixed up error at logical 1380060102656 on dev /dev/vdb physical 1380060102656
[ 4602.119605] BTRFS error (device vdb): fixed up error at logical 1380060102656 on dev /dev/vdb physical 1380060102656
[ 4602.119616] BTRFS error (device vdb): fixed up error at logical 1380060102656 on dev /dev/vdb physical 1380060102656
[ 4602.119617] BTRFS error (device vdb): fixed up error at logical 1380060102656 on dev /dev/vdb physical 1380060102656
[ 4602.119619] BTRFS error (device vdb): fixed up error at logical 1380060102656 on dev /dev/vdb physical 1380060102656
[ 4602.119621] BTRFS error (device vdb): fixed up error at logical 1380060102656 on dev /dev/vdb physical 1380060102656
[ 4950.948505] BTRFS critical (device vdb): unable to find chunk map for logical 1589173469184 length 4096
[ 4950.948710] BTRFS critical (device vdb): unable to find chunk map for logical 1589173469184 length 16384
[ 4950.953764] BTRFS critical (device vdb): unable to find chunk map for logical 1589173469184 length 4096
[ 4950.953864] BTRFS critical (device vdb): unable to find chunk map for logical 1589173469184 length 4096
[ 4950.953950] BTRFS critical (device vdb): unable to find chunk map for logical 1589173473280 length 4096
[ 4950.954048] BTRFS critical (device vdb): unable to find chunk map for logical 1589173473280 length 4096
[ 4950.954144] BTRFS critical (device vdb): unable to find chunk map for logical 1589173477376 length 4096
[ 4950.954238] BTRFS critical (device vdb): unable to find chunk map for logical 1589173477376 length 4096
[ 4950.954332] BTRFS critical (device vdb): unable to find chunk map for logical 1589173481472 length 4096
[ 4950.954527] BTRFS critical (device vdb): unable to find chunk map for logical 1589173481472 length 4096
[ 4950.954921] BTRFS error (device vdb): fixed up error at logical 1589173420032 on dev /dev/vdb physical 1589173420032
[ 4950.954925] BTRFS error (device vdb): fixed up error at logical 1589173420032 on dev /dev/vdb physical 1589173420032
[ 4950.954927] BTRFS error (device vdb): fixed up error at logical 1589173420032 on dev /dev/vdb physical 1589173420032
[ 5014.644792] BTRFS critical (device vdb): unable to find chunk map for logical 1655601790976 length 4096
[ 5014.644901] BTRFS critical (device vdb): unable to find chunk map for logical 1655601790976 length 36864
[ 5014.646790] BTRFS critical (device vdb): unable to find chunk map for logical 1655601790976 length 4096
[ 5014.646931] BTRFS critical (device vdb): unable to find chunk map for logical 1655601790976 length 4096
[ 5014.647013] BTRFS critical (device vdb): unable to find chunk map for logical 1655601795072 length 4096
[ 5014.647085] BTRFS critical (device vdb): unable to find chunk map for logical 1655601795072 length 4096
[ 5014.647156] BTRFS critical (device vdb): unable to find chunk map for logical 1655601799168 length 4096
[ 5014.647227] BTRFS critical (device vdb): unable to find chunk map for logical 1655601799168 length 4096
[ 5014.647298] BTRFS critical (device vdb): unable to find chunk map for logical 1655601803264 length 4096
[ 5014.647369] BTRFS critical (device vdb): unable to find chunk map for logical 1655601803264 length 4096
[ 5014.647439] BTRFS critical (device vdb): unable to find chunk map for logical 1655601807360 length 4096
[ 5014.647510] BTRFS critical (device vdb): unable to find chunk map for logical 1655601807360 length 4096
[ 5014.647581] BTRFS critical (device vdb): unable to find chunk map for logical 1655601811456 length 4096
[ 5014.647651] BTRFS critical (device vdb): unable to find chunk map for logical 1655601811456 length 4096
[ 5014.647721] BTRFS critical (device vdb): unable to find chunk map for logical 1655601815552 length 4096
[ 5014.647792] BTRFS critical (device vdb): unable to find chunk map for logical 1655601815552 length 4096
[ 5014.647886] BTRFS critical (device vdb): unable to find chunk map for logical 1655601819648 length 4096
[ 5014.647954] BTRFS critical (device vdb): unable to find chunk map for logical 1655601819648 length 4096
[ 5014.648020] BTRFS critical (device vdb): unable to find chunk map for logical 1655601823744 length 4096
[ 5014.648086] BTRFS critical (device vdb): unable to find chunk map for logical 1655601823744 length 4096
[ 5014.649856] BTRFS error (device vdb): fixed up error at logical 1655601762304 on dev /dev/vdb physical 1655601762304
[ 5014.649862] BTRFS error (device vdb): fixed up error at logical 1655601762304 on dev /dev/vdb physical 1655601762304
[ 5014.649864] BTRFS error (device vdb): fixed up error at logical 1655601762304 on dev /dev/vdb physical 1655601762304
[ 5014.649866] BTRFS error (device vdb): fixed up error at logical 1655601762304 on dev /dev/vdb physical 1655601762304
[ 5014.649867] BTRFS error (device vdb): fixed up error at logical 1655601762304 on dev /dev/vdb physical 1655601762304
[ 5016.622492] BTRFS critical (device vdb): unable to find chunk map for logical 1661099732992 length 4096
[ 5016.622626] BTRFS critical (device vdb): unable to find chunk map for logical 1661099732992 length 36864
[ 5016.632877] BTRFS critical (device vdb): unable to find chunk map for logical 1661099732992 length 4096
[ 5016.632966] BTRFS critical (device vdb): unable to find chunk map for logical 1661099732992 length 4096
[ 5016.633043] BTRFS critical (device vdb): unable to find chunk map for logical 1661099737088 length 4096
[ 5016.633111] BTRFS critical (device vdb): unable to find chunk map for logical 1661099737088 length 4096
[ 5016.633183] BTRFS critical (device vdb): unable to find chunk map for logical 1661099741184 length 4096
[ 5016.633267] BTRFS critical (device vdb): unable to find chunk map for logical 1661099741184 length 4096
[ 5016.633368] BTRFS critical (device vdb): unable to find chunk map for logical 1661099745280 length 4096
[ 5016.633468] BTRFS critical (device vdb): unable to find chunk map for logical 1661099745280 length 4096
[ 5016.633538] BTRFS critical (device vdb): unable to find chunk map for logical 1661099749376 length 4096
[ 5016.633605] BTRFS critical (device vdb): unable to find chunk map for logical 1661099749376 length 4096
[ 5016.633672] BTRFS critical (device vdb): unable to find chunk map for logical 1661099753472 length 4096
[ 5016.633739] BTRFS critical (device vdb): unable to find chunk map for logical 1661099753472 length 4096
[ 5016.633805] BTRFS critical (device vdb): unable to find chunk map for logical 1661099757568 length 4096
[ 5016.633903] BTRFS critical (device vdb): unable to find chunk map for logical 1661099757568 length 4096
[ 5016.633974] BTRFS critical (device vdb): unable to find chunk map for logical 1661099761664 length 4096
[ 5016.634041] BTRFS critical (device vdb): unable to find chunk map for logical 1661099761664 length 4096
[ 5016.634106] BTRFS critical (device vdb): unable to find chunk map for logical 1661099765760 length 4096
[ 5016.634171] BTRFS critical (device vdb): unable to find chunk map for logical 1661099765760 length 4096
[ 5016.634411] BTRFS error (device vdb): fixed up error at logical 1661099704320 on dev /dev/vdb physical 1661099704320
[ 5016.634415] BTRFS error (device vdb): fixed up error at logical 1661099704320 on dev /dev/vdb physical 1661099704320
[ 5016.634416] BTRFS error (device vdb): fixed up error at logical 1661099704320 on dev /dev/vdb physical 1661099704320
[ 5016.634418] BTRFS error (device vdb): fixed up error at logical 1661099704320 on dev /dev/vdb physical 1661099704320
[ 5086.410044] BTRFS critical (device vdb): unable to find chunk map for logical 1752384831488 length 4096
[ 5086.410703] BTRFS critical (device vdb): unable to find chunk map for logical 1752384831488 length 32768
[ 5086.421647] BTRFS critical (device vdb): unable to find chunk map for logical 1752384831488 length 4096
[ 5086.422000] BTRFS critical (device vdb): unable to find chunk map for logical 1752384831488 length 4096
[ 5086.422408] BTRFS critical (device vdb): unable to find chunk map for logical 1752384835584 length 4096
[ 5086.422878] BTRFS critical (device vdb): unable to find chunk map for logical 1752384835584 length 4096
[ 5086.423282] BTRFS critical (device vdb): unable to find chunk map for logical 1752384839680 length 4096
[ 5086.423644] BTRFS critical (device vdb): unable to find chunk map for logical 1752384839680 length 4096
[ 5086.424117] BTRFS critical (device vdb): unable to find chunk map for logical 1752384843776 length 4096
[ 5086.424507] BTRFS critical (device vdb): unable to find chunk map for logical 1752384843776 length 4096
[ 5086.424867] BTRFS critical (device vdb): unable to find chunk map for logical 1752384847872 length 4096
[ 5086.425126] BTRFS critical (device vdb): unable to find chunk map for logical 1752384847872 length 4096
[ 5086.425469] BTRFS critical (device vdb): unable to find chunk map for logical 1752384851968 length 4096
[ 5086.425850] BTRFS critical (device vdb): unable to find chunk map for logical 1752384851968 length 4096
[ 5086.426202] BTRFS critical (device vdb): unable to find chunk map for logical 1752384856064 length 4096
[ 5086.426551] BTRFS critical (device vdb): unable to find chunk map for logical 1752384856064 length 4096
[ 5086.427200] BTRFS critical (device vdb): unable to find chunk map for logical 1752384860160 length 4096
[ 5086.427580] BTRFS critical (device vdb): unable to find chunk map for logical 1752384860160 length 4096
[ 5086.431809] BTRFS error (device vdb): fixed up error at logical 1752384798720 on dev /dev/vdb physical 1752384798720
[ 5086.431827] BTRFS error (device vdb): fixed up error at logical 1752384798720 on dev /dev/vdb physical 1752384798720
[ 5086.431835] BTRFS error (device vdb): fixed up error at logical 1752384798720 on dev /dev/vdb physical 1752384798720
[ 5088.285913] BTRFS critical (device vdb): unable to find chunk map for logical 1756680941568 length 4096
[ 5088.286397] BTRFS critical (device vdb): unable to find chunk map for logical 1756680941568 length 4096
[ 5088.318028] BTRFS critical (device vdb): unable to find chunk map for logical 1756680941568 length 4096
[ 5088.318470] BTRFS critical (device vdb): unable to find chunk map for logical 1756680941568 length 4096
[ 5088.319567] BTRFS error (device vdb): fixed up error at logical 1756680880128 on dev /dev/vdb physical 1756680880128
[ 5088.319581] BTRFS error (device vdb): fixed up error at logical 1756680880128 on dev /dev/vdb physical 1756680880128
[ 5088.319607] BTRFS error (device vdb): fixed up error at logical 1756680880128 on dev /dev/vdb physical 1756680880128
[ 5088.319614] BTRFS error (device vdb): fixed up error at logical 1756680880128 on dev /dev/vdb physical 1756680880128
[ 5088.319626] BTRFS error (device vdb): fixed up error at logical 1756680880128 on dev /dev/vdb physical 1756680880128
[ 5088.319632] BTRFS error (device vdb): fixed up error at logical 1756680880128 on dev /dev/vdb physical 1756680880128
[ 5088.319637] BTRFS error (device vdb): fixed up error at logical 1756680880128 on dev /dev/vdb physical 1756680880128
[ 5481.024173] BTRFS info (device vdb): scrub: finished on devid 1 with status: 0
// ---------- btrfs-progs v6.6.3 (readonly) ----------
[ 5788.677830] BTRFS info (device vdb): last unmount of filesystem 1e4fb969-7384-48fb-9377-6fb8817279ee
[ 5800.419638] BTRFS: device fsid 1e4fb969-7384-48fb-9377-6fb8817279ee devid 1 transid 38189 /dev/vdb scanned by mount (6210)
[ 5800.422239] BTRFS info (device vdb): first mount of filesystem 1e4fb969-7384-48fb-9377-6fb8817279ee
[ 5800.422299] BTRFS info (device vdb): using crc32c (crc32c-intel) checksum algorithm
[ 5800.422308] BTRFS info (device vdb): enabling auto defrag
[ 5800.422312] BTRFS info (device vdb): force zstd compression, level 3
[ 5800.422315] BTRFS info (device vdb): using free space tree
[ 5800.436143] BTRFS info (device vdb): auto enabling async discard
[ 5860.410759] BTRFS info (device vdb): scrub: started on devid 1
[ 5863.568074] BTRFS critical (device vdb): unable to find chunk map for logical 2214744064 length 4096
[ 5863.568312] BTRFS critical (device vdb): unable to find chunk map for logical 2214744064 length 45056
[ 5863.569178] BTRFS critical (device vdb): unable to find chunk map for logical 2214744064 length 4096
[ 5863.569323] BTRFS critical (device vdb): unable to find chunk map for logical 2214744064 length 4096
[ 5863.569450] BTRFS critical (device vdb): unable to find chunk map for logical 2214748160 length 4096
[ 5863.569572] BTRFS critical (device vdb): unable to find chunk map for logical 2214748160 length 4096
[ 5863.569694] BTRFS critical (device vdb): unable to find chunk map for logical 2214752256 length 4096
[ 5863.569811] BTRFS critical (device vdb): unable to find chunk map for logical 2214752256 length 4096
[ 5863.569972] BTRFS critical (device vdb): unable to find chunk map for logical 2214756352 length 4096
[ 5863.570157] BTRFS critical (device vdb): unable to find chunk map for logical 2214756352 length 4096
[ 5863.570363] BTRFS critical (device vdb): unable to find chunk map for logical 2214760448 length 4096
[ 5863.570548] BTRFS critical (device vdb): unable to find chunk map for logical 2214760448 length 4096
[ 5863.570769] BTRFS critical (device vdb): unable to find chunk map for logical 2214764544 length 4096
[ 5863.570955] BTRFS critical (device vdb): unable to find chunk map for logical 2214764544 length 4096
[ 5863.571141] BTRFS critical (device vdb): unable to find chunk map for logical 2214768640 length 4096
[ 5863.571330] BTRFS critical (device vdb): unable to find chunk map for logical 2214768640 length 4096
[ 5863.571521] BTRFS critical (device vdb): unable to find chunk map for logical 2214772736 length 4096
[ 5863.571749] BTRFS critical (device vdb): unable to find chunk map for logical 2214772736 length 4096
[ 5863.571921] BTRFS critical (device vdb): unable to find chunk map for logical 2214776832 length 4096
[ 5863.572100] BTRFS critical (device vdb): unable to find chunk map for logical 2214776832 length 4096
[ 5863.572371] BTRFS critical (device vdb): unable to find chunk map for logical 2214780928 length 4096
[ 5863.572554] BTRFS critical (device vdb): unable to find chunk map for logical 2214780928 length 4096
[ 5863.572737] BTRFS critical (device vdb): unable to find chunk map for logical 2214785024 length 4096
[ 5863.572926] BTRFS critical (device vdb): unable to find chunk map for logical 2214785024 length 4096
[ 5863.573128] scrub_stripe_report_errors: 3 callbacks suppressed
[ 5863.573132] BTRFS error (device vdb): fixed up error at logical 2214723584 on dev /dev/vdb physical 2214723584
[ 5863.573136] BTRFS error (device vdb): fixed up error at logical 2214723584 on dev /dev/vdb physical 2214723584
[ 5863.573140] BTRFS error (device vdb): fixed up error at logical 2214723584 on dev /dev/vdb physical 2214723584
[ 5863.573155] BTRFS error (device vdb): fixed up error at logical 2214723584 on dev /dev/vdb physical 2214723584
[ 5863.573158] BTRFS error (device vdb): fixed up error at logical 2214723584 on dev /dev/vdb physical 2214723584
[ 6370.709822] BTRFS critical (device vdb): unable to find chunk map for logical 463895601152 length 4096
[ 6370.710219] BTRFS critical (device vdb): unable to find chunk map for logical 463895601152 length 57344
[ 6370.711620] BTRFS critical (device vdb): unable to find chunk map for logical 463895601152 length 4096
[ 6370.711935] BTRFS critical (device vdb): unable to find chunk map for logical 463895601152 length 4096
[ 6370.712393] BTRFS critical (device vdb): unable to find chunk map for logical 463895605248 length 4096
[ 6370.712792] BTRFS critical (device vdb): unable to find chunk map for logical 463895605248 length 4096
[ 6370.713185] BTRFS critical (device vdb): unable to find chunk map for logical 463895609344 length 4096
[ 6370.713577] BTRFS critical (device vdb): unable to find chunk map for logical 463895609344 length 4096
[ 6370.714101] BTRFS critical (device vdb): unable to find chunk map for logical 463895613440 length 4096
[ 6370.714495] BTRFS critical (device vdb): unable to find chunk map for logical 463895613440 length 4096
[ 6370.714769] BTRFS critical (device vdb): unable to find chunk map for logical 463895617536 length 4096
[ 6370.715028] BTRFS critical (device vdb): unable to find chunk map for logical 463895617536 length 4096
[ 6370.715287] BTRFS critical (device vdb): unable to find chunk map for logical 463895621632 length 4096
[ 6370.715593] BTRFS critical (device vdb): unable to find chunk map for logical 463895621632 length 4096
[ 6370.715853] BTRFS critical (device vdb): unable to find chunk map for logical 463895625728 length 4096
[ 6370.716174] BTRFS critical (device vdb): unable to find chunk map for logical 463895625728 length 4096
[ 6370.716479] BTRFS critical (device vdb): unable to find chunk map for logical 463895629824 length 4096
[ 6370.716770] BTRFS critical (device vdb): unable to find chunk map for logical 463895629824 length 4096
[ 6370.717133] BTRFS critical (device vdb): unable to find chunk map for logical 463895633920 length 4096
[ 6370.717589] BTRFS critical (device vdb): unable to find chunk map for logical 463895633920 length 4096
[ 6370.717990] BTRFS critical (device vdb): unable to find chunk map for logical 463895638016 length 4096
[ 6370.718369] BTRFS critical (device vdb): unable to find chunk map for logical 463895638016 length 4096
[ 6370.718758] BTRFS critical (device vdb): unable to find chunk map for logical 463895642112 length 4096
[ 6370.719138] BTRFS critical (device vdb): unable to find chunk map for logical 463895642112 length 4096
[ 6370.719555] BTRFS critical (device vdb): unable to find chunk map for logical 463895646208 length 4096
[ 6370.719934] BTRFS critical (device vdb): unable to find chunk map for logical 463895646208 length 4096
[ 6370.720374] BTRFS critical (device vdb): unable to find chunk map for logical 463895650304 length 4096
[ 6370.720755] BTRFS critical (device vdb): unable to find chunk map for logical 463895650304 length 4096
[ 6370.721130] BTRFS critical (device vdb): unable to find chunk map for logical 463895654400 length 4096
[ 6370.721408] BTRFS critical (device vdb): unable to find chunk map for logical 463895654400 length 4096
[ 6370.721782] BTRFS error (device vdb): fixed up error at logical 463895592960 on dev /dev/vdb physical 463895592960
[ 6370.721792] BTRFS error (device vdb): fixed up error at logical 463895592960 on dev /dev/vdb physical 463895592960
[ 6663.010941] BTRFS critical (device vdb): unable to find chunk map for logical 839699791872 length 4096
[ 6663.011083] BTRFS critical (device vdb): unable to find chunk map for logical 839699791872 length 16384
[ 6663.013581] BTRFS critical (device vdb): unable to find chunk map for logical 839699791872 length 4096
[ 6663.013733] BTRFS critical (device vdb): unable to find chunk map for logical 839699791872 length 4096
[ 6663.013839] BTRFS critical (device vdb): unable to find chunk map for logical 839699795968 length 4096
[ 6663.013964] BTRFS critical (device vdb): unable to find chunk map for logical 839699795968 length 4096
[ 6663.014088] BTRFS critical (device vdb): unable to find chunk map for logical 839699800064 length 4096
[ 6663.014255] BTRFS critical (device vdb): unable to find chunk map for logical 839699800064 length 4096
[ 6663.014369] BTRFS critical (device vdb): unable to find chunk map for logical 839699804160 length 4096
[ 6663.014456] BTRFS critical (device vdb): unable to find chunk map for logical 839699804160 length 4096
[ 6663.014550] BTRFS error (device vdb): fixed up error at logical 839699742720 on dev /dev/vdb physical 839699742720
[ 6663.014553] BTRFS error (device vdb): fixed up error at logical 839699742720 on dev /dev/vdb physical 839699742720
[ 6663.014554] BTRFS error (device vdb): fixed up error at logical 839699742720 on dev /dev/vdb physical 839699742720
[ 6663.014556] BTRFS error (device vdb): fixed up error at logical 839699742720 on dev /dev/vdb physical 839699742720
[ 6663.014557] BTRFS error (device vdb): fixed up error at logical 839699742720 on dev /dev/vdb physical 839699742720
[ 6663.014558] BTRFS error (device vdb): fixed up error at logical 839699742720 on dev /dev/vdb physical 839699742720
[ 6663.014565] BTRFS error (device vdb): fixed up error at logical 839699742720 on dev /dev/vdb physical 839699742720
[ 6663.014566] BTRFS error (device vdb): fixed up error at logical 839699742720 on dev /dev/vdb physical 839699742720
[ 6663.014568] BTRFS error (device vdb): fixed up error at logical 839699742720 on dev /dev/vdb physical 839699742720
[ 6663.014569] BTRFS error (device vdb): fixed up error at logical 839699742720 on dev /dev/vdb physical 839699742720
[ 6800.316669] BTRFS critical (device vdb): unable to find chunk map for logical 1016250572800 length 4096
[ 6800.317216] BTRFS critical (device vdb): unable to find chunk map for logical 1016250572800 length 57344
[ 6800.320101] BTRFS critical (device vdb): unable to find chunk map for logical 1016250572800 length 4096
[ 6800.320417] BTRFS critical (device vdb): unable to find chunk map for logical 1016250572800 length 4096
[ 6800.320692] BTRFS critical (device vdb): unable to find chunk map for logical 1016250576896 length 4096
[ 6800.320956] BTRFS critical (device vdb): unable to find chunk map for logical 1016250576896 length 4096
[ 6800.321218] BTRFS critical (device vdb): unable to find chunk map for logical 1016250580992 length 4096
[ 6800.321482] BTRFS critical (device vdb): unable to find chunk map for logical 1016250580992 length 4096
[ 6800.321737] BTRFS critical (device vdb): unable to find chunk map for logical 1016250585088 length 4096
[ 6800.321990] BTRFS critical (device vdb): unable to find chunk map for logical 1016250585088 length 4096
[ 6800.322242] BTRFS critical (device vdb): unable to find chunk map for logical 1016250589184 length 4096
[ 6800.322550] BTRFS critical (device vdb): unable to find chunk map for logical 1016250589184 length 4096
[ 6800.322937] BTRFS critical (device vdb): unable to find chunk map for logical 1016250593280 length 4096
[ 6800.323315] BTRFS critical (device vdb): unable to find chunk map for logical 1016250593280 length 4096
[ 6800.323713] BTRFS critical (device vdb): unable to find chunk map for logical 1016250597376 length 4096
[ 6800.324101] BTRFS critical (device vdb): unable to find chunk map for logical 1016250597376 length 4096
[ 6800.324491] BTRFS critical (device vdb): unable to find chunk map for logical 1016250601472 length 4096
[ 6800.324787] BTRFS critical (device vdb): unable to find chunk map for logical 1016250601472 length 4096
[ 6800.325424] BTRFS critical (device vdb): unable to find chunk map for logical 1016250605568 length 4096
[ 6800.325830] BTRFS critical (device vdb): unable to find chunk map for logical 1016250605568 length 4096
[ 6800.326243] BTRFS critical (device vdb): unable to find chunk map for logical 1016250609664 length 4096
[ 6800.326673] BTRFS critical (device vdb): unable to find chunk map for logical 1016250609664 length 4096
[ 6800.327131] BTRFS critical (device vdb): unable to find chunk map for logical 1016250613760 length 4096
[ 6800.327564] BTRFS critical (device vdb): unable to find chunk map for logical 1016250613760 length 4096
[ 6800.327976] BTRFS critical (device vdb): unable to find chunk map for logical 1016250617856 length 4096
[ 6800.328385] BTRFS critical (device vdb): unable to find chunk map for logical 1016250617856 length 4096
[ 6800.328959] BTRFS critical (device vdb): unable to find chunk map for logical 1016250621952 length 4096
[ 6800.329376] BTRFS critical (device vdb): unable to find chunk map for logical 1016250621952 length 4096
[ 6800.329783] BTRFS critical (device vdb): unable to find chunk map for logical 1016250626048 length 4096
[ 6800.330199] BTRFS critical (device vdb): unable to find chunk map for logical 1016250626048 length 4096
[ 6800.330927] scrub_stripe_report_errors: 2 callbacks suppressed
[ 6800.330936] BTRFS error (device vdb): fixed up error at logical 1016250564608 on dev /dev/vdb physical 1016250564608
[ 6800.330948] BTRFS error (device vdb): fixed up error at logical 1016250564608 on dev /dev/vdb physical 1016250564608
[ 6805.751651] BTRFS critical (device vdb): unable to find chunk map for logical 1020487249920 length 4096
[ 6805.752261] BTRFS critical (device vdb): unable to find chunk map for logical 1020487249920 length 20480
[ 6805.762165] BTRFS critical (device vdb): unable to find chunk map for logical 1020487249920 length 4096
[ 6805.762685] BTRFS critical (device vdb): unable to find chunk map for logical 1020487249920 length 4096
[ 6805.763054] BTRFS critical (device vdb): unable to find chunk map for logical 1020487254016 length 4096
[ 6805.763440] BTRFS critical (device vdb): unable to find chunk map for logical 1020487254016 length 4096
[ 6805.763848] BTRFS critical (device vdb): unable to find chunk map for logical 1020487258112 length 4096
[ 6805.764383] BTRFS critical (device vdb): unable to find chunk map for logical 1020487258112 length 4096
[ 6805.764832] BTRFS critical (device vdb): unable to find chunk map for logical 1020487262208 length 4096
[ 6805.765227] BTRFS critical (device vdb): unable to find chunk map for logical 1020487262208 length 4096
[ 6805.765567] BTRFS critical (device vdb): unable to find chunk map for logical 1020487266304 length 4096
[ 6805.765928] BTRFS critical (device vdb): unable to find chunk map for logical 1020487266304 length 4096
[ 6805.766318] BTRFS error (device vdb): fixed up error at logical 1020487204864 on dev /dev/vdb physical 1020487204864
[ 6805.766356] BTRFS error (device vdb): fixed up error at logical 1020487204864 on dev /dev/vdb physical 1020487204864
[ 6805.766364] BTRFS error (device vdb): fixed up error at logical 1020487204864 on dev /dev/vdb physical 1020487204864
[ 6805.766370] BTRFS error (device vdb): fixed up error at logical 1020487204864 on dev /dev/vdb physical 1020487204864
[ 6805.766376] BTRFS error (device vdb): fixed up error at logical 1020487204864 on dev /dev/vdb physical 1020487204864
[ 6805.766383] BTRFS error (device vdb): fixed up error at logical 1020487204864 on dev /dev/vdb physical 1020487204864
[ 6805.766391] BTRFS error (device vdb): fixed up error at logical 1020487204864 on dev /dev/vdb physical 1020487204864
[ 6805.766398] BTRFS error (device vdb): fixed up error at logical 1020487204864 on dev /dev/vdb physical 1020487204864
[ 6805.766405] BTRFS error (device vdb): fixed up error at logical 1020487204864 on dev /dev/vdb physical 1020487204864
[ 6805.766413] BTRFS error (device vdb): fixed up error at logical 1020487204864 on dev /dev/vdb physical 1020487204864
[ 6819.031197] BTRFS critical (device vdb): unable to find chunk map for logical 1030859419648 length 4096
[ 6819.031608] BTRFS critical (device vdb): unable to find chunk map for logical 1030859419648 length 36864
[ 6819.034853] BTRFS critical (device vdb): unable to find chunk map for logical 1030859419648 length 4096
[ 6819.035323] BTRFS critical (device vdb): unable to find chunk map for logical 1030859419648 length 4096
[ 6819.035766] BTRFS critical (device vdb): unable to find chunk map for logical 1030859423744 length 4096
[ 6819.036335] BTRFS critical (device vdb): unable to find chunk map for logical 1030859423744 length 4096
[ 6819.036775] BTRFS critical (device vdb): unable to find chunk map for logical 1030859427840 length 4096
[ 6819.037180] BTRFS critical (device vdb): unable to find chunk map for logical 1030859427840 length 4096
[ 6819.037583] BTRFS critical (device vdb): unable to find chunk map for logical 1030859431936 length 4096
[ 6819.037993] BTRFS critical (device vdb): unable to find chunk map for logical 1030859431936 length 4096
[ 6819.038523] BTRFS critical (device vdb): unable to find chunk map for logical 1030859436032 length 4096
[ 6819.038935] BTRFS critical (device vdb): unable to find chunk map for logical 1030859436032 length 4096
[ 6819.039342] BTRFS critical (device vdb): unable to find chunk map for logical 1030859440128 length 4096
[ 6819.039881] BTRFS critical (device vdb): unable to find chunk map for logical 1030859440128 length 4096
[ 6819.040290] BTRFS critical (device vdb): unable to find chunk map for logical 1030859444224 length 4096
[ 6819.040691] BTRFS critical (device vdb): unable to find chunk map for logical 1030859444224 length 4096
[ 6819.041423] BTRFS critical (device vdb): unable to find chunk map for logical 1030859448320 length 4096
[ 6819.041843] BTRFS critical (device vdb): unable to find chunk map for logical 1030859448320 length 4096
[ 6819.042422] BTRFS critical (device vdb): unable to find chunk map for logical 1030859452416 length 4096
[ 6819.042836] BTRFS critical (device vdb): unable to find chunk map for logical 1030859452416 length 4096
[ 6819.043261] scrub_stripe_report_errors: 1 callbacks suppressed
[ 6819.043268] BTRFS error (device vdb): fixed up error at logical 1030859390976 on dev /dev/vdb physical 1030859390976
[ 6819.043278] BTRFS error (device vdb): fixed up error at logical 1030859390976 on dev /dev/vdb physical 1030859390976
[ 6819.043286] BTRFS error (device vdb): fixed up error at logical 1030859390976 on dev /dev/vdb physical 1030859390976
[ 6819.043292] BTRFS error (device vdb): fixed up error at logical 1030859390976 on dev /dev/vdb physical 1030859390976
[ 6819.043298] BTRFS error (device vdb): fixed up error at logical 1030859390976 on dev /dev/vdb physical 1030859390976
[ 6819.043304] BTRFS error (device vdb): fixed up error at logical 1030859390976 on dev /dev/vdb physical 1030859390976
[ 6819.043311] BTRFS error (device vdb): fixed up error at logical 1030859390976 on dev /dev/vdb physical 1030859390976
[ 6819.708275] BTRFS critical (device vdb): unable to find chunk map for logical 1033007480832 length 4096
[ 6819.708635] BTRFS critical (device vdb): unable to find chunk map for logical 1033007480832 length 49152
[ 6819.711236] BTRFS critical (device vdb): unable to find chunk map for logical 1033007480832 length 4096
[ 6819.711695] BTRFS critical (device vdb): unable to find chunk map for logical 1033007480832 length 4096
[ 6819.712198] BTRFS critical (device vdb): unable to find chunk map for logical 1033007484928 length 4096
[ 6819.712544] BTRFS critical (device vdb): unable to find chunk map for logical 1033007484928 length 4096
[ 6819.712920] BTRFS critical (device vdb): unable to find chunk map for logical 1033007489024 length 4096
[ 6819.713379] BTRFS critical (device vdb): unable to find chunk map for logical 1033007489024 length 4096
[ 6819.713838] BTRFS critical (device vdb): unable to find chunk map for logical 1033007493120 length 4096
[ 6819.714414] BTRFS critical (device vdb): unable to find chunk map for logical 1033007493120 length 4096
[ 6819.714879] BTRFS critical (device vdb): unable to find chunk map for logical 1033007497216 length 4096
[ 6819.715337] BTRFS critical (device vdb): unable to find chunk map for logical 1033007497216 length 4096
[ 6819.716037] BTRFS critical (device vdb): unable to find chunk map for logical 1033007501312 length 4096
[ 6819.716666] BTRFS critical (device vdb): unable to find chunk map for logical 1033007501312 length 4096
[ 6819.717137] BTRFS critical (device vdb): unable to find chunk map for logical 1033007505408 length 4096
[ 6819.717589] BTRFS critical (device vdb): unable to find chunk map for logical 1033007505408 length 4096
[ 6819.718200] BTRFS critical (device vdb): unable to find chunk map for logical 1033007509504 length 4096
[ 6819.718712] BTRFS critical (device vdb): unable to find chunk map for logical 1033007509504 length 4096
[ 6819.719157] BTRFS critical (device vdb): unable to find chunk map for logical 1033007513600 length 4096
[ 6819.719718] BTRFS critical (device vdb): unable to find chunk map for logical 1033007513600 length 4096
[ 6819.720168] BTRFS critical (device vdb): unable to find chunk map for logical 1033007517696 length 4096
[ 6819.720626] BTRFS critical (device vdb): unable to find chunk map for logical 1033007517696 length 4096
[ 6819.721103] BTRFS critical (device vdb): unable to find chunk map for logical 1033007521792 length 4096
[ 6819.721563] BTRFS critical (device vdb): unable to find chunk map for logical 1033007521792 length 4096
[ 6819.722022] BTRFS critical (device vdb): unable to find chunk map for logical 1033007525888 length 4096
[ 6819.722550] BTRFS critical (device vdb): unable to find chunk map for logical 1033007525888 length 4096
[ 6819.723032] BTRFS error (device vdb): fixed up error at logical 1033007464448 on dev /dev/vdb physical 1033007464448
[ 6819.723043] BTRFS error (device vdb): fixed up error at logical 1033007464448 on dev /dev/vdb physical 1033007464448
[ 6819.723051] BTRFS error (device vdb): fixed up error at logical 1033007464448 on dev /dev/vdb physical 1033007464448
[ 6823.735952] BTRFS critical (device vdb): unable to find chunk map for logical 1035155181568 length 4096
[ 6823.736527] BTRFS critical (device vdb): unable to find chunk map for logical 1035155181568 length 8192
[ 6823.759292] BTRFS critical (device vdb): unable to find chunk map for logical 1035155181568 length 4096
[ 6823.759568] BTRFS critical (device vdb): unable to find chunk map for logical 1035155181568 length 4096
[ 6823.759760] BTRFS critical (device vdb): unable to find chunk map for logical 1035155185664 length 4096
[ 6823.759950] BTRFS critical (device vdb): unable to find chunk map for logical 1035155185664 length 4096
[ 6841.425020] BTRFS critical (device vdb): unable to find chunk map for logical 1048041410560 length 4096
[ 6841.425213] BTRFS critical (device vdb): unable to find chunk map for logical 1048041410560 length 12288
[ 6841.430618] BTRFS critical (device vdb): unable to find chunk map for logical 1048041410560 length 4096
[ 6841.430758] BTRFS critical (device vdb): unable to find chunk map for logical 1048041410560 length 4096
[ 6841.430860] BTRFS critical (device vdb): unable to find chunk map for logical 1048041414656 length 4096
[ 6841.430941] BTRFS critical (device vdb): unable to find chunk map for logical 1048041414656 length 4096
[ 6841.431020] BTRFS critical (device vdb): unable to find chunk map for logical 1048041418752 length 4096
[ 6841.431097] BTRFS critical (device vdb): unable to find chunk map for logical 1048041418752 length 4096
[ 6841.431181] scrub_stripe_report_errors: 14 callbacks suppressed
[ 6841.431183] BTRFS error (device vdb): fixed up error at logical 1048041357312 on dev /dev/vdb physical 1048041357312
[ 6841.431185] BTRFS error (device vdb): fixed up error at logical 1048041357312 on dev /dev/vdb physical 1048041357312
[ 6841.431187] BTRFS error (device vdb): fixed up error at logical 1048041357312 on dev /dev/vdb physical 1048041357312
[ 6841.431188] BTRFS error (device vdb): fixed up error at logical 1048041357312 on dev /dev/vdb physical 1048041357312
[ 6841.431189] BTRFS error (device vdb): fixed up error at logical 1048041357312 on dev /dev/vdb physical 1048041357312
[ 6841.431190] BTRFS error (device vdb): fixed up error at logical 1048041357312 on dev /dev/vdb physical 1048041357312
[ 6841.431191] BTRFS error (device vdb): fixed up error at logical 1048041357312 on dev /dev/vdb physical 1048041357312
[ 6841.431193] BTRFS error (device vdb): fixed up error at logical 1048041357312 on dev /dev/vdb physical 1048041357312
[ 6841.431201] BTRFS error (device vdb): fixed up error at logical 1048041357312 on dev /dev/vdb physical 1048041357312
[ 6841.431202] BTRFS error (device vdb): fixed up error at logical 1048041357312 on dev /dev/vdb physical 1048041357312
[ 6856.919562] BTRFS critical (device vdb): unable to find chunk map for logical 1084548718592 length 4096
[ 6856.919711] BTRFS critical (device vdb): unable to find chunk map for logical 1084548718592 length 57344
[ 6856.924351] BTRFS critical (device vdb): unable to find chunk map for logical 1084548718592 length 4096
[ 6856.924537] BTRFS critical (device vdb): unable to find chunk map for logical 1084548718592 length 4096
[ 6856.924681] BTRFS critical (device vdb): unable to find chunk map for logical 1084548722688 length 4096
[ 6856.924821] BTRFS critical (device vdb): unable to find chunk map for logical 1084548722688 length 4096
[ 6856.924959] BTRFS critical (device vdb): unable to find chunk map for logical 1084548726784 length 4096
[ 6856.925097] BTRFS critical (device vdb): unable to find chunk map for logical 1084548726784 length 4096
[ 6856.925234] BTRFS critical (device vdb): unable to find chunk map for logical 1084548730880 length 4096
[ 6856.925382] BTRFS critical (device vdb): unable to find chunk map for logical 1084548730880 length 4096
[ 6856.925583] BTRFS critical (device vdb): unable to find chunk map for logical 1084548734976 length 4096
[ 6856.925722] BTRFS critical (device vdb): unable to find chunk map for logical 1084548734976 length 4096
[ 6856.925854] BTRFS critical (device vdb): unable to find chunk map for logical 1084548739072 length 4096
[ 6856.926070] BTRFS critical (device vdb): unable to find chunk map for logical 1084548739072 length 4096
[ 6856.926222] BTRFS critical (device vdb): unable to find chunk map for logical 1084548743168 length 4096
[ 6856.926368] BTRFS critical (device vdb): unable to find chunk map for logical 1084548743168 length 4096
[ 6856.926520] BTRFS critical (device vdb): unable to find chunk map for logical 1084548747264 length 4096
[ 6856.926652] BTRFS critical (device vdb): unable to find chunk map for logical 1084548747264 length 4096
[ 6856.926744] BTRFS critical (device vdb): unable to find chunk map for logical 1084548751360 length 4096
[ 6856.926933] BTRFS critical (device vdb): unable to find chunk map for logical 1084548751360 length 4096
[ 6856.927052] BTRFS critical (device vdb): unable to find chunk map for logical 1084548755456 length 4096
[ 6856.927161] BTRFS critical (device vdb): unable to find chunk map for logical 1084548755456 length 4096
[ 6856.927268] BTRFS critical (device vdb): unable to find chunk map for logical 1084548759552 length 4096
[ 6856.927369] BTRFS critical (device vdb): unable to find chunk map for logical 1084548759552 length 4096
[ 6856.927461] BTRFS critical (device vdb): unable to find chunk map for logical 1084548763648 length 4096
[ 6856.927587] BTRFS critical (device vdb): unable to find chunk map for logical 1084548763648 length 4096
[ 6856.927705] BTRFS critical (device vdb): unable to find chunk map for logical 1084548767744 length 4096
[ 6856.927792] BTRFS critical (device vdb): unable to find chunk map for logical 1084548767744 length 4096
[ 6856.927878] BTRFS critical (device vdb): unable to find chunk map for logical 1084548771840 length 4096
[ 6856.927961] BTRFS critical (device vdb): unable to find chunk map for logical 1084548771840 length 4096
[ 6856.928062] scrub_stripe_report_errors: 3 callbacks suppressed
[ 6856.928064] BTRFS error (device vdb): fixed up error at logical 1084548710400 on dev /dev/vdb physical 1084548710400
[ 6856.928067] BTRFS error (device vdb): fixed up error at logical 1084548710400 on dev /dev/vdb physical 1084548710400
[ 6857.600179] BTRFS critical (device vdb): unable to find chunk map for logical 1091216695296 length 4096
[ 6857.600590] BTRFS critical (device vdb): unable to find chunk map for logical 1091216695296 length 40960
[ 6857.604823] BTRFS critical (device vdb): unable to find chunk map for logical 1091216695296 length 4096
[ 6857.605177] BTRFS critical (device vdb): unable to find chunk map for logical 1091216695296 length 4096
[ 6857.605643] BTRFS critical (device vdb): unable to find chunk map for logical 1091216699392 length 4096
[ 6857.605939] BTRFS critical (device vdb): unable to find chunk map for logical 1091216699392 length 4096
[ 6857.606217] BTRFS critical (device vdb): unable to find chunk map for logical 1091216703488 length 4096
[ 6857.606698] BTRFS critical (device vdb): unable to find chunk map for logical 1091216703488 length 4096
[ 6857.607081] BTRFS critical (device vdb): unable to find chunk map for logical 1091216707584 length 4096
[ 6857.607362] BTRFS critical (device vdb): unable to find chunk map for logical 1091216707584 length 4096
[ 6857.607636] BTRFS critical (device vdb): unable to find chunk map for logical 1091216711680 length 4096
[ 6857.607909] BTRFS critical (device vdb): unable to find chunk map for logical 1091216711680 length 4096
[ 6857.608195] BTRFS critical (device vdb): unable to find chunk map for logical 1091216715776 length 4096
[ 6857.608469] BTRFS critical (device vdb): unable to find chunk map for logical 1091216715776 length 4096
[ 6857.608741] BTRFS critical (device vdb): unable to find chunk map for logical 1091216719872 length 4096
[ 6857.609012] BTRFS critical (device vdb): unable to find chunk map for logical 1091216719872 length 4096
[ 6857.609401] BTRFS critical (device vdb): unable to find chunk map for logical 1091216723968 length 4096
[ 6857.610895] BTRFS critical (device vdb): unable to find chunk map for logical 1091216723968 length 4096
[ 6857.611333] BTRFS critical (device vdb): unable to find chunk map for logical 1091216728064 length 4096
[ 6857.611704] BTRFS critical (device vdb): unable to find chunk map for logical 1091216728064 length 4096
[ 6857.612047] BTRFS critical (device vdb): unable to find chunk map for logical 1091216732160 length 4096
[ 6857.612388] BTRFS critical (device vdb): unable to find chunk map for logical 1091216732160 length 4096
[ 6857.612749] BTRFS error (device vdb): fixed up error at logical 1091216670720 on dev /dev/vdb physical 1091216670720
[ 6857.612758] BTRFS error (device vdb): fixed up error at logical 1091216670720 on dev /dev/vdb physical 1091216670720
[ 6857.612764] BTRFS error (device vdb): fixed up error at logical 1091216670720 on dev /dev/vdb physical 1091216670720
[ 6857.612770] BTRFS error (device vdb): fixed up error at logical 1091216670720 on dev /dev/vdb physical 1091216670720
[ 6857.612776] BTRFS error (device vdb): fixed up error at logical 1091216670720 on dev /dev/vdb physical 1091216670720
[ 6857.612781] BTRFS error (device vdb): fixed up error at logical 1091216670720 on dev /dev/vdb physical 1091216670720
[ 6858.089876] BTRFS critical (device vdb): unable to find chunk map for logical 1095442223104 length 4096
[ 6858.090311] BTRFS critical (device vdb): unable to find chunk map for logical 1095442223104 length 12288
[ 6858.099902] BTRFS critical (device vdb): unable to find chunk map for logical 1095442223104 length 4096
[ 6858.100286] BTRFS critical (device vdb): unable to find chunk map for logical 1095442223104 length 4096
[ 6858.100574] BTRFS critical (device vdb): unable to find chunk map for logical 1095442227200 length 4096
[ 6858.100913] BTRFS critical (device vdb): unable to find chunk map for logical 1095442227200 length 4096
[ 6858.101210] BTRFS critical (device vdb): unable to find chunk map for logical 1095442231296 length 4096
[ 6858.101696] BTRFS critical (device vdb): unable to find chunk map for logical 1095442231296 length 4096
[ 6858.102033] BTRFS error (device vdb): fixed up error at logical 1095442169856 on dev /dev/vdb physical 1095442169856
[ 6858.102041] BTRFS error (device vdb): fixed up error at logical 1095442169856 on dev /dev/vdb physical 1095442169856
[ 6862.894441] BTRFS critical (device vdb): unable to find chunk map for logical 1104076398592 length 4096
[ 6862.894915] BTRFS critical (device vdb): unable to find chunk map for logical 1104076398592 length 8192
[ 6862.904279] BTRFS critical (device vdb): unable to find chunk map for logical 1104076398592 length 4096
[ 6862.904847] BTRFS critical (device vdb): unable to find chunk map for logical 1104076398592 length 4096
[ 6862.905616] BTRFS critical (device vdb): unable to find chunk map for logical 1104076402688 length 4096
[ 6862.906152] BTRFS critical (device vdb): unable to find chunk map for logical 1104076402688 length 4096
[ 6862.906690] scrub_stripe_report_errors: 11 callbacks suppressed
[ 6862.906722] BTRFS error (device vdb): fixed up error at logical 1104076341248 on dev /dev/vdb physical 1104076341248
[ 6862.906735] BTRFS error (device vdb): fixed up error at logical 1104076341248 on dev /dev/vdb physical 1104076341248
[ 6862.906745] BTRFS error (device vdb): fixed up error at logical 1104076341248 on dev /dev/vdb physical 1104076341248
[ 6862.906753] BTRFS error (device vdb): fixed up error at logical 1104076341248 on dev /dev/vdb physical 1104076341248
[ 6862.906762] BTRFS error (device vdb): fixed up error at logical 1104076341248 on dev /dev/vdb physical 1104076341248
[ 6862.906770] BTRFS error (device vdb): fixed up error at logical 1104076341248 on dev /dev/vdb physical 1104076341248
[ 6862.906778] BTRFS error (device vdb): fixed up error at logical 1104076341248 on dev /dev/vdb physical 1104076341248
[ 6864.337452] BTRFS critical (device vdb): unable to find chunk map for logical 1106023555072 length 4096
[ 6864.337966] BTRFS critical (device vdb): unable to find chunk map for logical 1106023555072 length 57344
[ 6864.339593] BTRFS critical (device vdb): unable to find chunk map for logical 1106023555072 length 4096
[ 6864.340056] BTRFS critical (device vdb): unable to find chunk map for logical 1106023555072 length 4096
[ 6864.340465] BTRFS critical (device vdb): unable to find chunk map for logical 1106023559168 length 4096
[ 6864.340856] BTRFS critical (device vdb): unable to find chunk map for logical 1106023559168 length 4096
[ 6864.341446] BTRFS critical (device vdb): unable to find chunk map for logical 1106023563264 length 4096
[ 6864.341945] BTRFS critical (device vdb): unable to find chunk map for logical 1106023563264 length 4096
[ 6864.342415] BTRFS critical (device vdb): unable to find chunk map for logical 1106023567360 length 4096
[ 6864.345560] BTRFS critical (device vdb): unable to find chunk map for logical 1106023567360 length 4096
[ 6864.345998] BTRFS critical (device vdb): unable to find chunk map for logical 1106023571456 length 4096
[ 6864.346394] BTRFS critical (device vdb): unable to find chunk map for logical 1106023571456 length 4096
[ 6864.346837] BTRFS critical (device vdb): unable to find chunk map for logical 1106023575552 length 4096
[ 6864.347312] BTRFS critical (device vdb): unable to find chunk map for logical 1106023575552 length 4096
[ 6864.347770] BTRFS critical (device vdb): unable to find chunk map for logical 1106023579648 length 4096
[ 6864.348191] BTRFS critical (device vdb): unable to find chunk map for logical 1106023579648 length 4096
[ 6864.348602] BTRFS critical (device vdb): unable to find chunk map for logical 1106023583744 length 4096
[ 6864.349010] BTRFS critical (device vdb): unable to find chunk map for logical 1106023583744 length 4096
[ 6864.353535] BTRFS critical (device vdb): unable to find chunk map for logical 1106023587840 length 4096
[ 6864.353881] BTRFS critical (device vdb): unable to find chunk map for logical 1106023587840 length 4096
[ 6864.354198] BTRFS critical (device vdb): unable to find chunk map for logical 1106023591936 length 4096
[ 6864.354545] BTRFS critical (device vdb): unable to find chunk map for logical 1106023591936 length 4096
[ 6864.354894] BTRFS critical (device vdb): unable to find chunk map for logical 1106023596032 length 4096
[ 6864.355242] BTRFS critical (device vdb): unable to find chunk map for logical 1106023596032 length 4096
[ 6864.355582] BTRFS critical (device vdb): unable to find chunk map for logical 1106023600128 length 4096
[ 6864.355896] BTRFS critical (device vdb): unable to find chunk map for logical 1106023600128 length 4096
[ 6864.356209] BTRFS critical (device vdb): unable to find chunk map for logical 1106023604224 length 4096
[ 6864.356519] BTRFS critical (device vdb): unable to find chunk map for logical 1106023604224 length 4096
[ 6864.356830] BTRFS critical (device vdb): unable to find chunk map for logical 1106023608320 length 4096
[ 6864.359928] BTRFS critical (device vdb): unable to find chunk map for logical 1106023608320 length 4096
[ 6864.360261] BTRFS error (device vdb): fixed up error at logical 1106023546880 on dev /dev/vdb physical 1106023546880
[ 6864.360282] BTRFS error (device vdb): fixed up error at logical 1106023546880 on dev /dev/vdb physical 1106023546880
[ 6871.567520] BTRFS critical (device vdb): unable to find chunk map for logical 1116741795840 length 4096
[ 6871.568491] BTRFS critical (device vdb): unable to find chunk map for logical 1116741795840 length 32768
[ 6871.577594] BTRFS critical (device vdb): unable to find chunk map for logical 1116741795840 length 4096
[ 6871.577992] BTRFS critical (device vdb): unable to find chunk map for logical 1116741795840 length 4096
[ 6871.578290] BTRFS critical (device vdb): unable to find chunk map for logical 1116741799936 length 4096
[ 6871.578576] BTRFS critical (device vdb): unable to find chunk map for logical 1116741799936 length 4096
[ 6871.579169] BTRFS critical (device vdb): unable to find chunk map for logical 1116741804032 length 4096
[ 6871.579463] BTRFS critical (device vdb): unable to find chunk map for logical 1116741804032 length 4096
[ 6871.579750] BTRFS critical (device vdb): unable to find chunk map for logical 1116741808128 length 4096
[ 6871.580036] BTRFS critical (device vdb): unable to find chunk map for logical 1116741808128 length 4096
[ 6871.580321] BTRFS critical (device vdb): unable to find chunk map for logical 1116741812224 length 4096
[ 6871.580598] BTRFS critical (device vdb): unable to find chunk map for logical 1116741812224 length 4096
[ 6871.580851] BTRFS critical (device vdb): unable to find chunk map for logical 1116741816320 length 4096
[ 6871.581781] BTRFS critical (device vdb): unable to find chunk map for logical 1116741816320 length 4096
[ 6871.582242] BTRFS critical (device vdb): unable to find chunk map for logical 1116741820416 length 4096
[ 6871.583150] BTRFS critical (device vdb): unable to find chunk map for logical 1116741820416 length 4096
[ 6871.583917] BTRFS critical (device vdb): unable to find chunk map for logical 1116741824512 length 4096
[ 6871.584557] BTRFS critical (device vdb): unable to find chunk map for logical 1116741824512 length 4096
[ 6871.585354] BTRFS error (device vdb): fixed up error at logical 1116741763072 on dev /dev/vdb physical 1116741763072
[ 6871.585369] BTRFS error (device vdb): fixed up error at logical 1116741763072 on dev /dev/vdb physical 1116741763072
[ 6871.585377] BTRFS error (device vdb): fixed up error at logical 1116741763072 on dev /dev/vdb physical 1116741763072
[ 6871.585404] BTRFS error (device vdb): fixed up error at logical 1116741763072 on dev /dev/vdb physical 1116741763072
[ 6871.585411] BTRFS error (device vdb): fixed up error at logical 1116741763072 on dev /dev/vdb physical 1116741763072
[ 6872.501760] BTRFS critical (device vdb): unable to find chunk map for logical 1119192186880 length 4096
[ 6872.502240] BTRFS critical (device vdb): unable to find chunk map for logical 1119192186880 length 32768
[ 6872.512720] BTRFS critical (device vdb): unable to find chunk map for logical 1119192186880 length 4096
[ 6872.513141] BTRFS critical (device vdb): unable to find chunk map for logical 1119192186880 length 4096
[ 6872.513571] BTRFS critical (device vdb): unable to find chunk map for logical 1119192190976 length 4096
[ 6872.513938] BTRFS critical (device vdb): unable to find chunk map for logical 1119192190976 length 4096
[ 6872.514230] BTRFS critical (device vdb): unable to find chunk map for logical 1119192195072 length 4096
[ 6872.514532] BTRFS critical (device vdb): unable to find chunk map for logical 1119192195072 length 4096
[ 6872.514890] BTRFS critical (device vdb): unable to find chunk map for logical 1119192199168 length 4096
[ 6872.515262] BTRFS critical (device vdb): unable to find chunk map for logical 1119192199168 length 4096
[ 6872.515624] BTRFS critical (device vdb): unable to find chunk map for logical 1119192203264 length 4096
[ 6872.516019] BTRFS critical (device vdb): unable to find chunk map for logical 1119192203264 length 4096
[ 6872.516556] BTRFS critical (device vdb): unable to find chunk map for logical 1119192207360 length 4096
[ 6872.516899] BTRFS critical (device vdb): unable to find chunk map for logical 1119192207360 length 4096
[ 6872.519029] BTRFS critical (device vdb): unable to find chunk map for logical 1119192211456 length 4096
[ 6872.519499] BTRFS critical (device vdb): unable to find chunk map for logical 1119192211456 length 4096
[ 6872.519931] BTRFS critical (device vdb): unable to find chunk map for logical 1119192215552 length 4096
[ 6872.520361] BTRFS critical (device vdb): unable to find chunk map for logical 1119192215552 length 4096
[ 6872.520828] BTRFS error (device vdb): fixed up error at logical 1119192154112 on dev /dev/vdb physical 1119192154112
[ 6872.520839] BTRFS error (device vdb): fixed up error at logical 1119192154112 on dev /dev/vdb physical 1119192154112
[ 6872.520846] BTRFS error (device vdb): fixed up error at logical 1119192154112 on dev /dev/vdb physical 1119192154112
[ 6872.520853] BTRFS error (device vdb): fixed up error at logical 1119192154112 on dev /dev/vdb physical 1119192154112
[ 6872.520859] BTRFS error (device vdb): fixed up error at logical 1119192154112 on dev /dev/vdb physical 1119192154112
[ 6993.937654] BTRFS critical (device vdb): unable to find chunk map for logical 1232789102592 length 4096
[ 6993.937880] BTRFS critical (device vdb): unable to find chunk map for logical 1232789102592 length 8192
[ 6993.941008] BTRFS critical (device vdb): unable to find chunk map for logical 1232789102592 length 4096
[ 6993.941234] BTRFS critical (device vdb): unable to find chunk map for logical 1232789102592 length 4096
[ 6993.941434] BTRFS critical (device vdb): unable to find chunk map for logical 1232789106688 length 4096
[ 6993.941632] BTRFS critical (device vdb): unable to find chunk map for logical 1232789106688 length 4096
[ 6993.941843] scrub_stripe_report_errors: 3 callbacks suppressed
[ 6993.941846] BTRFS error (device vdb): fixed up error at logical 1232789045248 on dev /dev/vdb physical 1232789045248
[ 6993.941851] BTRFS error (device vdb): fixed up error at logical 1232789045248 on dev /dev/vdb physical 1232789045248
[ 6993.941854] BTRFS error (device vdb): fixed up error at logical 1232789045248 on dev /dev/vdb physical 1232789045248
[ 6993.941858] BTRFS error (device vdb): fixed up error at logical 1232789045248 on dev /dev/vdb physical 1232789045248
[ 6993.941861] BTRFS error (device vdb): fixed up error at logical 1232789045248 on dev /dev/vdb physical 1232789045248
[ 6993.941864] BTRFS error (device vdb): fixed up error at logical 1232789045248 on dev /dev/vdb physical 1232789045248
[ 6993.941867] BTRFS error (device vdb): fixed up error at logical 1232789045248 on dev /dev/vdb physical 1232789045248
[ 6993.941870] BTRFS error (device vdb): fixed up error at logical 1232789045248 on dev /dev/vdb physical 1232789045248
[ 6993.941873] BTRFS error (device vdb): fixed up error at logical 1232789045248 on dev /dev/vdb physical 1232789045248
[ 6993.941876] BTRFS error (device vdb): fixed up error at logical 1232789045248 on dev /dev/vdb physical 1232789045248
[ 7060.956372] BTRFS critical (device vdb): unable to find chunk map for logical 1309241815040 length 4096
[ 7060.956952] BTRFS critical (device vdb): unable to find chunk map for logical 1309241815040 length 20480
[ 7060.967017] BTRFS critical (device vdb): unable to find chunk map for logical 1309241815040 length 4096
[ 7060.967439] BTRFS critical (device vdb): unable to find chunk map for logical 1309241815040 length 4096
[ 7060.967896] BTRFS critical (device vdb): unable to find chunk map for logical 1309241819136 length 4096
[ 7060.968275] BTRFS critical (device vdb): unable to find chunk map for logical 1309241819136 length 4096
[ 7060.968627] BTRFS critical (device vdb): unable to find chunk map for logical 1309241823232 length 4096
[ 7060.969094] BTRFS critical (device vdb): unable to find chunk map for logical 1309241823232 length 4096
[ 7060.970986] BTRFS critical (device vdb): unable to find chunk map for logical 1309241827328 length 4096
[ 7060.971439] BTRFS critical (device vdb): unable to find chunk map for logical 1309241827328 length 4096
[ 7060.971862] BTRFS critical (device vdb): unable to find chunk map for logical 1309241831424 length 4096
[ 7060.972546] BTRFS critical (device vdb): unable to find chunk map for logical 1309241831424 length 4096
[ 7060.973471] scrub_stripe_report_errors: 4 callbacks suppressed
[ 7060.973479] BTRFS error (device vdb): fixed up error at logical 1309241769984 on dev /dev/vdb physical 1309241769984
[ 7060.973491] BTRFS error (device vdb): fixed up error at logical 1309241769984 on dev /dev/vdb physical 1309241769984
[ 7060.973498] BTRFS error (device vdb): fixed up error at logical 1309241769984 on dev /dev/vdb physical 1309241769984
[ 7060.973504] BTRFS error (device vdb): fixed up error at logical 1309241769984 on dev /dev/vdb physical 1309241769984
[ 7060.973510] BTRFS error (device vdb): fixed up error at logical 1309241769984 on dev /dev/vdb physical 1309241769984
[ 7060.973516] BTRFS error (device vdb): fixed up error at logical 1309241769984 on dev /dev/vdb physical 1309241769984
[ 7060.973521] BTRFS error (device vdb): fixed up error at logical 1309241769984 on dev /dev/vdb physical 1309241769984
[ 7060.973527] BTRFS error (device vdb): fixed up error at logical 1309241769984 on dev /dev/vdb physical 1309241769984
[ 7060.973533] BTRFS error (device vdb): fixed up error at logical 1309241769984 on dev /dev/vdb physical 1309241769984
[ 7094.522031] BTRFS critical (device vdb): unable to find chunk map for logical 1348653420544 length 4096
[ 7094.522566] BTRFS critical (device vdb): unable to find chunk map for logical 1348653420544 length 61440
[ 7094.523601] BTRFS critical (device vdb): unable to find chunk map for logical 1348653420544 length 4096
[ 7094.523949] BTRFS critical (device vdb): unable to find chunk map for logical 1348653420544 length 4096
[ 7094.524249] BTRFS critical (device vdb): unable to find chunk map for logical 1348653424640 length 4096
[ 7094.524664] BTRFS critical (device vdb): unable to find chunk map for logical 1348653424640 length 4096
[ 7094.525118] BTRFS critical (device vdb): unable to find chunk map for logical 1348653428736 length 4096
[ 7094.525544] BTRFS critical (device vdb): unable to find chunk map for logical 1348653428736 length 4096
[ 7094.525857] BTRFS critical (device vdb): unable to find chunk map for logical 1348653432832 length 4096
[ 7094.526415] BTRFS critical (device vdb): unable to find chunk map for logical 1348653432832 length 4096
[ 7094.526776] BTRFS critical (device vdb): unable to find chunk map for logical 1348653436928 length 4096
[ 7094.527071] BTRFS critical (device vdb): unable to find chunk map for logical 1348653436928 length 4096
[ 7094.527358] BTRFS critical (device vdb): unable to find chunk map for logical 1348653441024 length 4096
[ 7094.527643] BTRFS critical (device vdb): unable to find chunk map for logical 1348653441024 length 4096
[ 7094.527933] BTRFS critical (device vdb): unable to find chunk map for logical 1348653445120 length 4096
[ 7094.528217] BTRFS critical (device vdb): unable to find chunk map for logical 1348653445120 length 4096
[ 7094.528582] BTRFS critical (device vdb): unable to find chunk map for logical 1348653449216 length 4096
[ 7094.528909] BTRFS critical (device vdb): unable to find chunk map for logical 1348653449216 length 4096
[ 7094.529200] BTRFS critical (device vdb): unable to find chunk map for logical 1348653453312 length 4096
[ 7094.529484] BTRFS critical (device vdb): unable to find chunk map for logical 1348653453312 length 4096
[ 7094.529775] BTRFS critical (device vdb): unable to find chunk map for logical 1348653457408 length 4096
[ 7094.530319] BTRFS critical (device vdb): unable to find chunk map for logical 1348653457408 length 4096
[ 7094.530723] BTRFS critical (device vdb): unable to find chunk map for logical 1348653461504 length 4096
[ 7094.531011] BTRFS critical (device vdb): unable to find chunk map for logical 1348653461504 length 4096
[ 7094.531294] BTRFS critical (device vdb): unable to find chunk map for logical 1348653465600 length 4096
[ 7094.531645] BTRFS critical (device vdb): unable to find chunk map for logical 1348653465600 length 4096
[ 7094.532072] BTRFS critical (device vdb): unable to find chunk map for logical 1348653469696 length 4096
[ 7094.532571] BTRFS critical (device vdb): unable to find chunk map for logical 1348653469696 length 4096
[ 7094.533017] BTRFS critical (device vdb): unable to find chunk map for logical 1348653473792 length 4096
[ 7094.533400] BTRFS critical (device vdb): unable to find chunk map for logical 1348653473792 length 4096
[ 7094.533803] BTRFS critical (device vdb): unable to find chunk map for logical 1348653477888 length 4096
[ 7094.534234] BTRFS critical (device vdb): unable to find chunk map for logical 1348653477888 length 4096
[ 7094.534711] BTRFS error (device vdb): fixed up error at logical 1348653416448 on dev /dev/vdb physical 1348653416448
[ 7131.611897] BTRFS critical (device vdb): unable to find chunk map for logical 1375150882816 length 4096
[ 7131.612075] BTRFS critical (device vdb): unable to find chunk map for logical 1375150882816 length 49152
[ 7131.620378] BTRFS critical (device vdb): unable to find chunk map for logical 1375150882816 length 4096
[ 7131.620496] BTRFS critical (device vdb): unable to find chunk map for logical 1375150882816 length 4096
[ 7131.620588] BTRFS critical (device vdb): unable to find chunk map for logical 1375150886912 length 4096
[ 7131.620679] BTRFS critical (device vdb): unable to find chunk map for logical 1375150886912 length 4096
[ 7131.620767] BTRFS critical (device vdb): unable to find chunk map for logical 1375150891008 length 4096
[ 7131.620853] BTRFS critical (device vdb): unable to find chunk map for logical 1375150891008 length 4096
[ 7131.620940] BTRFS critical (device vdb): unable to find chunk map for logical 1375150895104 length 4096
[ 7131.621052] BTRFS critical (device vdb): unable to find chunk map for logical 1375150895104 length 4096
[ 7131.621180] BTRFS critical (device vdb): unable to find chunk map for logical 1375150899200 length 4096
[ 7131.621308] BTRFS critical (device vdb): unable to find chunk map for logical 1375150899200 length 4096
[ 7131.621436] BTRFS critical (device vdb): unable to find chunk map for logical 1375150903296 length 4096
[ 7131.621562] BTRFS critical (device vdb): unable to find chunk map for logical 1375150903296 length 4096
[ 7131.621688] BTRFS critical (device vdb): unable to find chunk map for logical 1375150907392 length 4096
[ 7131.621775] BTRFS critical (device vdb): unable to find chunk map for logical 1375150907392 length 4096
[ 7131.621859] BTRFS critical (device vdb): unable to find chunk map for logical 1375150911488 length 4096
[ 7131.621943] BTRFS critical (device vdb): unable to find chunk map for logical 1375150911488 length 4096
[ 7131.622027] BTRFS critical (device vdb): unable to find chunk map for logical 1375150915584 length 4096
[ 7131.622111] BTRFS critical (device vdb): unable to find chunk map for logical 1375150915584 length 4096
[ 7131.622195] BTRFS critical (device vdb): unable to find chunk map for logical 1375150919680 length 4096
[ 7131.622278] BTRFS critical (device vdb): unable to find chunk map for logical 1375150919680 length 4096
[ 7131.622363] BTRFS critical (device vdb): unable to find chunk map for logical 1375150923776 length 4096
[ 7131.622466] BTRFS critical (device vdb): unable to find chunk map for logical 1375150923776 length 4096
[ 7131.622550] BTRFS critical (device vdb): unable to find chunk map for logical 1375150927872 length 4096
[ 7131.622644] BTRFS critical (device vdb): unable to find chunk map for logical 1375150927872 length 4096
[ 7131.622733] BTRFS error (device vdb): fixed up error at logical 1375150866432 on dev /dev/vdb physical 1375150866432
[ 7140.606696] BTRFS critical (device vdb): unable to find chunk map for logical 1380060139520 length 4096
[ 7140.607305] BTRFS critical (device vdb): unable to find chunk map for logical 1380060139520 length 28672
[ 7140.613594] BTRFS critical (device vdb): unable to find chunk map for logical 1380060139520 length 4096
[ 7140.614015] BTRFS critical (device vdb): unable to find chunk map for logical 1380060139520 length 4096
[ 7140.614311] BTRFS critical (device vdb): unable to find chunk map for logical 1380060143616 length 4096
[ 7140.614601] BTRFS critical (device vdb): unable to find chunk map for logical 1380060143616 length 4096
[ 7140.614882] BTRFS critical (device vdb): unable to find chunk map for logical 1380060147712 length 4096
[ 7140.615164] BTRFS critical (device vdb): unable to find chunk map for logical 1380060147712 length 4096
[ 7140.616139] BTRFS critical (device vdb): unable to find chunk map for logical 1380060151808 length 4096
[ 7140.616576] BTRFS critical (device vdb): unable to find chunk map for logical 1380060151808 length 4096
[ 7140.616989] BTRFS critical (device vdb): unable to find chunk map for logical 1380060155904 length 4096
[ 7140.617400] BTRFS critical (device vdb): unable to find chunk map for logical 1380060155904 length 4096
[ 7140.617819] BTRFS critical (device vdb): unable to find chunk map for logical 1380060160000 length 4096
[ 7140.618253] BTRFS critical (device vdb): unable to find chunk map for logical 1380060160000 length 4096
[ 7140.618672] BTRFS critical (device vdb): unable to find chunk map for logical 1380060164096 length 4096
[ 7140.619104] BTRFS critical (device vdb): unable to find chunk map for logical 1380060164096 length 4096
[ 7140.619786] BTRFS error (device vdb): fixed up error at logical 1380060102656 on dev /dev/vdb physical 1380060102656
[ 7140.619799] BTRFS error (device vdb): fixed up error at logical 1380060102656 on dev /dev/vdb physical 1380060102656
[ 7140.619806] BTRFS error (device vdb): fixed up error at logical 1380060102656 on dev /dev/vdb physical 1380060102656
[ 7140.619812] BTRFS error (device vdb): fixed up error at logical 1380060102656 on dev /dev/vdb physical 1380060102656
[ 7140.619818] BTRFS error (device vdb): fixed up error at logical 1380060102656 on dev /dev/vdb physical 1380060102656
[ 7140.619823] BTRFS error (device vdb): fixed up error at logical 1380060102656 on dev /dev/vdb physical 1380060102656
[ 7499.793197] BTRFS critical (device vdb): unable to find chunk map for logical 1589173469184 length 4096
[ 7499.793639] BTRFS critical (device vdb): unable to find chunk map for logical 1589173469184 length 16384
[ 7499.801158] BTRFS critical (device vdb): unable to find chunk map for logical 1589173469184 length 4096
[ 7499.801543] BTRFS critical (device vdb): unable to find chunk map for logical 1589173469184 length 4096
[ 7499.801840] BTRFS critical (device vdb): unable to find chunk map for logical 1589173473280 length 4096
[ 7499.802153] BTRFS critical (device vdb): unable to find chunk map for logical 1589173473280 length 4096
[ 7499.802547] BTRFS critical (device vdb): unable to find chunk map for logical 1589173477376 length 4096
[ 7499.802924] BTRFS critical (device vdb): unable to find chunk map for logical 1589173477376 length 4096
[ 7499.803302] BTRFS critical (device vdb): unable to find chunk map for logical 1589173481472 length 4096
[ 7499.803585] BTRFS critical (device vdb): unable to find chunk map for logical 1589173481472 length 4096
[ 7499.804055] BTRFS error (device vdb): fixed up error at logical 1589173420032 on dev /dev/vdb physical 1589173420032
[ 7499.804068] BTRFS error (device vdb): fixed up error at logical 1589173420032 on dev /dev/vdb physical 1589173420032
[ 7499.804075] BTRFS error (device vdb): fixed up error at logical 1589173420032 on dev /dev/vdb physical 1589173420032
[ 7564.680064] BTRFS critical (device vdb): unable to find chunk map for logical 1655601790976 length 4096
[ 7564.680592] BTRFS critical (device vdb): unable to find chunk map for logical 1655601790976 length 36864
[ 7564.685422] BTRFS critical (device vdb): unable to find chunk map for logical 1655601790976 length 4096
[ 7564.685933] BTRFS critical (device vdb): unable to find chunk map for logical 1655601790976 length 4096
[ 7564.686403] BTRFS critical (device vdb): unable to find chunk map for logical 1655601795072 length 4096
[ 7564.686965] BTRFS critical (device vdb): unable to find chunk map for logical 1655601795072 length 4096
[ 7564.687427] BTRFS critical (device vdb): unable to find chunk map for logical 1655601799168 length 4096
[ 7564.688122] BTRFS critical (device vdb): unable to find chunk map for logical 1655601799168 length 4096
[ 7564.688627] BTRFS critical (device vdb): unable to find chunk map for logical 1655601803264 length 4096
[ 7564.689086] BTRFS critical (device vdb): unable to find chunk map for logical 1655601803264 length 4096
[ 7564.689545] BTRFS critical (device vdb): unable to find chunk map for logical 1655601807360 length 4096
[ 7564.690010] BTRFS critical (device vdb): unable to find chunk map for logical 1655601807360 length 4096
[ 7564.690505] BTRFS critical (device vdb): unable to find chunk map for logical 1655601811456 length 4096
[ 7564.691593] BTRFS critical (device vdb): unable to find chunk map for logical 1655601811456 length 4096
[ 7564.692257] BTRFS critical (device vdb): unable to find chunk map for logical 1655601815552 length 4096
[ 7564.692834] BTRFS critical (device vdb): unable to find chunk map for logical 1655601815552 length 4096
[ 7564.693298] BTRFS critical (device vdb): unable to find chunk map for logical 1655601819648 length 4096
[ 7564.693730] BTRFS critical (device vdb): unable to find chunk map for logical 1655601819648 length 4096
[ 7564.694094] BTRFS critical (device vdb): unable to find chunk map for logical 1655601823744 length 4096
[ 7564.694519] BTRFS critical (device vdb): unable to find chunk map for logical 1655601823744 length 4096
[ 7564.694975] BTRFS error (device vdb): fixed up error at logical 1655601762304 on dev /dev/vdb physical 1655601762304
[ 7564.694986] BTRFS error (device vdb): fixed up error at logical 1655601762304 on dev /dev/vdb physical 1655601762304
[ 7564.694993] BTRFS error (device vdb): fixed up error at logical 1655601762304 on dev /dev/vdb physical 1655601762304
[ 7564.694998] BTRFS error (device vdb): fixed up error at logical 1655601762304 on dev /dev/vdb physical 1655601762304
[ 7564.695004] BTRFS error (device vdb): fixed up error at logical 1655601762304 on dev /dev/vdb physical 1655601762304
[ 7566.790559] BTRFS critical (device vdb): unable to find chunk map for logical 1661099732992 length 4096
[ 7566.790872] BTRFS critical (device vdb): unable to find chunk map for logical 1661099732992 length 36864
[ 7566.794228] BTRFS critical (device vdb): unable to find chunk map for logical 1661099732992 length 4096
[ 7566.794457] BTRFS critical (device vdb): unable to find chunk map for logical 1661099732992 length 4096
[ 7566.794588] BTRFS critical (device vdb): unable to find chunk map for logical 1661099737088 length 4096
[ 7566.794713] BTRFS critical (device vdb): unable to find chunk map for logical 1661099737088 length 4096
[ 7566.794867] BTRFS critical (device vdb): unable to find chunk map for logical 1661099741184 length 4096
[ 7566.794992] BTRFS critical (device vdb): unable to find chunk map for logical 1661099741184 length 4096
[ 7566.795115] BTRFS critical (device vdb): unable to find chunk map for logical 1661099745280 length 4096
[ 7566.795239] BTRFS critical (device vdb): unable to find chunk map for logical 1661099745280 length 4096
[ 7566.795363] BTRFS critical (device vdb): unable to find chunk map for logical 1661099749376 length 4096
[ 7566.795486] BTRFS critical (device vdb): unable to find chunk map for logical 1661099749376 length 4096
[ 7566.795610] BTRFS critical (device vdb): unable to find chunk map for logical 1661099753472 length 4096
[ 7566.795733] BTRFS critical (device vdb): unable to find chunk map for logical 1661099753472 length 4096
[ 7566.795855] BTRFS critical (device vdb): unable to find chunk map for logical 1661099757568 length 4096
[ 7566.795976] BTRFS critical (device vdb): unable to find chunk map for logical 1661099757568 length 4096
[ 7566.796098] BTRFS critical (device vdb): unable to find chunk map for logical 1661099761664 length 4096
[ 7566.796222] BTRFS critical (device vdb): unable to find chunk map for logical 1661099761664 length 4096
[ 7566.796341] BTRFS critical (device vdb): unable to find chunk map for logical 1661099765760 length 4096
[ 7566.796461] BTRFS critical (device vdb): unable to find chunk map for logical 1661099765760 length 4096
[ 7566.796586] BTRFS error (device vdb): fixed up error at logical 1661099704320 on dev /dev/vdb physical 1661099704320
[ 7566.796590] BTRFS error (device vdb): fixed up error at logical 1661099704320 on dev /dev/vdb physical 1661099704320
[ 7566.796592] BTRFS error (device vdb): fixed up error at logical 1661099704320 on dev /dev/vdb physical 1661099704320
[ 7566.796595] BTRFS error (device vdb): fixed up error at logical 1661099704320 on dev /dev/vdb physical 1661099704320
[ 7637.983957] BTRFS critical (device vdb): unable to find chunk map for logical 1752384831488 length 4096
[ 7637.984491] BTRFS critical (device vdb): unable to find chunk map for logical 1752384831488 length 32768
[ 7638.010802] BTRFS critical (device vdb): unable to find chunk map for logical 1752384831488 length 4096
[ 7638.011386] BTRFS critical (device vdb): unable to find chunk map for logical 1752384831488 length 4096
[ 7638.011904] BTRFS critical (device vdb): unable to find chunk map for logical 1752384835584 length 4096
[ 7638.012459] BTRFS critical (device vdb): unable to find chunk map for logical 1752384835584 length 4096
[ 7638.013043] BTRFS critical (device vdb): unable to find chunk map for logical 1752384839680 length 4096
[ 7638.014217] BTRFS critical (device vdb): unable to find chunk map for logical 1752384839680 length 4096
[ 7638.014689] BTRFS critical (device vdb): unable to find chunk map for logical 1752384843776 length 4096
[ 7638.015138] BTRFS critical (device vdb): unable to find chunk map for logical 1752384843776 length 4096
[ 7638.015557] BTRFS critical (device vdb): unable to find chunk map for logical 1752384847872 length 4096
[ 7638.015959] BTRFS critical (device vdb): unable to find chunk map for logical 1752384847872 length 4096
[ 7638.016373] BTRFS critical (device vdb): unable to find chunk map for logical 1752384851968 length 4096
[ 7638.016742] BTRFS critical (device vdb): unable to find chunk map for logical 1752384851968 length 4096
[ 7638.017134] BTRFS critical (device vdb): unable to find chunk map for logical 1752384856064 length 4096
[ 7638.017649] BTRFS critical (device vdb): unable to find chunk map for logical 1752384856064 length 4096
[ 7638.018014] BTRFS critical (device vdb): unable to find chunk map for logical 1752384860160 length 4096
[ 7638.018357] BTRFS critical (device vdb): unable to find chunk map for logical 1752384860160 length 4096
[ 7638.018798] BTRFS error (device vdb): fixed up error at logical 1752384798720 on dev /dev/vdb physical 1752384798720
[ 7638.018810] BTRFS error (device vdb): fixed up error at logical 1752384798720 on dev /dev/vdb physical 1752384798720
[ 7638.018817] BTRFS error (device vdb): fixed up error at logical 1752384798720 on dev /dev/vdb physical 1752384798720
[ 7639.960636] BTRFS critical (device vdb): unable to find chunk map for logical 1756680941568 length 4096
[ 7639.961314] BTRFS critical (device vdb): unable to find chunk map for logical 1756680941568 length 4096
[ 7639.979041] BTRFS critical (device vdb): unable to find chunk map for logical 1756680941568 length 4096
[ 7639.979555] BTRFS critical (device vdb): unable to find chunk map for logical 1756680941568 length 4096
[ 7639.980085] BTRFS error (device vdb): fixed up error at logical 1756680880128 on dev /dev/vdb physical 1756680880128
[ 7639.980097] BTRFS error (device vdb): fixed up error at logical 1756680880128 on dev /dev/vdb physical 1756680880128
[ 7639.980106] BTRFS error (device vdb): fixed up error at logical 1756680880128 on dev /dev/vdb physical 1756680880128
[ 7639.980114] BTRFS error (device vdb): fixed up error at logical 1756680880128 on dev /dev/vdb physical 1756680880128
[ 7639.980121] BTRFS error (device vdb): fixed up error at logical 1756680880128 on dev /dev/vdb physical 1756680880128
[ 7639.980129] BTRFS error (device vdb): fixed up error at logical 1756680880128 on dev /dev/vdb physical 1756680880128
[ 7639.980136] BTRFS error (device vdb): fixed up error at logical 1756680880128 on dev /dev/vdb physical 1756680880128
[ 8041.881163] BTRFS info (device vdb): scrub: finished on devid 1 with status: 0
[ 9358.091499] BTRFS info (device vdb): last unmount of filesystem 1e4fb969-7384-48fb-9377-6fb8817279ee

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: Scrub reports uncorrectable errors with correctable errors unrepaired, but all files are fine
  2024-01-10 13:51       ` Zhang Rongrong
@ 2024-01-10 22:52         ` Qu Wenruo
  2024-01-12  7:38           ` Rongrong
  0 siblings, 1 reply; 14+ messages in thread
From: Qu Wenruo @ 2024-01-10 22:52 UTC (permalink / raw)
  To: Zhang Rongrong, linux-btrfs



On 2024/1/11 00:21, Zhang Rongrong wrote:
> On Wed, 2024-01-10 at 20:10 +1030, Qu Wenruo wrote:
>>
>> On 2024/1/10 19:42, Rongrong wrote:
>>> On Wed, 2024-01-10 at 07:49 +1030, Qu Wenruo wrote:
>>>>
>>>>
>>>> On 2024/1/10 04:36, Rongrong wrote:
>>>>> I guess the root cause of the issue is that one of the DUP metadata
>>>>> copies was somehow corrupted. Am I right?
>>>>
>>>> I don't think so, I think there may be some false alerts, either from
>>>> kernel scrub interface, or btrfs-progs.
>>>
>>> OK then. But I just wonder, if this is the case:
>>> Why `btrfs inspect-internal logical-resolve [LoC]` returned a file
>>> instead of ENOENT?
>>
>> Then we're having very conflicting results.
>>
>> "btrfs check --check-data-csum" is really the equivalent of scrub (just
>> offline), which will ensure EVERY copy is verified.
>>
>> If "btrfs check --check-data-csum" shows no error, I can only came up
>> with one possibility.
>>
>> - There is something missing csum and btrfs check doesn't report
>>     the problem in the first place
>>
>> This doesn't looks that correct to me though, as we have test cases to
>> ensure btrfs check can detect extents without csum.
>>
>> Can you provide the full dmesg/logical-resolve/btrfs-check result
>> without hiding the bytenrs?
>> That would help us to really clue all the problems.
>>
>> Especially for dmesg, the full one (from boot to crash/report) is
>> appreciated.
>
> dmesg:
> Please check the attachment. Some log were rate limited. I may disable
> the rate limit and retry if you need.
>
> logical-resolve:
> It either reported ENOENT or /path/to/file. Did you mean you want the
> address in command? I guess the full dmesg should help in that case.

Both would help.

If "logical-resolve" leads to -ENOENT, and extra dmesg output caused by
it, please attach the extra dmesg and the logical bytenr.

If "logical-resolve" leads to some file, and the filename is not
sensitive, please provide the filename and the logical bytenr.

>
> btrfs-check:
> # btrfs check -p --check-data-csum /dev/vdb
> Opening filesystem to check...
> Checking filesystem on /dev/vdb
> UUID: 1e4fb969-7384-48fb-9377-6fb8817279ee
> [1/7] checking root items                      (0:00:04 elapsed, 5675044 items checked)
> [2/7] checking extents                         (0:00:16 elapsed, 156729 items checked)
> [3/7] checking free space tree                 (0:00:01 elapsed, 1193 items checked)
> [4/7] checking fs roots                        (0:01:38 elapsed, 49161 items checked)
> [5/7] checking csums against data              (0:36:47 elapsed, 474124 items checked)

Yeah, this really means the whole fs is good.

[...]
>
> Hmmm, I might make a mistake. Actually it should be virtio-blk?
>
> [    1.185335] virtio_blk virtio2: [vda] 83886080 512-byte logical blocks (42.9 GB/40.0 GiB)
> [    1.216577] virtio_blk virtio6: [vdb] 3907035136 512-byte logical blocks (2.00 TB/1.82 TiB)
> # cat /sys/block/vdb/queue/scheduler
> [none] mq-deadline

We can rule out IO scheduler and virtio-scsi now.

>
>> Finally, since you're using USB-SATA convertor, have you tried to
>> connect the SATA disk to a native SATA connector on a desktop motherboard?
>> (I guess it may not be possible)
>
> As said above, I've tried test on "Intel CPU (i7-7567U), host,
> intel_iommu=off, SATA HDD". The test was done with the disk connected
> to the native SATA connector, though it is not quite "desktop" (Intel
> NUC7i7BNH). Should it be enough?

Yes, with a known good SATA controller, it should be more than good enough.

And according to the attached dmesg, the most interesting thing is the
unable to find chunk map error.
I believe this is the biggest clue.

Another thing is, for regular non-zoned device scrubbing, the new btrfs
scrub code would always read a full 64K stripe in one go.
But in your case, the range we're mapping is not 64K aligned:

2214744064 % 65536 = 20480
2214748160 % 65536 = 20480
...

I'm not 100% sure if this is related, but for any newer btrfs, we should
have all chunks start at a bytenr aligned to 64K.

Since you have a disk dump of it already, mind to full balance the fs,
then retry to see if there is any difference?

Thanks,
Qu

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: Scrub reports uncorrectable errors with correctable errors unrepaired, but all files are fine
  2024-01-10 22:52         ` Qu Wenruo
@ 2024-01-12  7:38           ` Rongrong
  2024-01-12  9:53             ` Qu Wenruo
  0 siblings, 1 reply; 14+ messages in thread
From: Rongrong @ 2024-01-12  7:38 UTC (permalink / raw)
  To: Qu Wenruo, linux-btrfs

[-- Attachment #1: Type: text/plain, Size: 9492 bytes --]

On Thu, 2024-01-11 at 09:22 +1030, Qu Wenruo wrote:
> 
> On 2024/1/11 00:21, Zhang Rongrong wrote:
> > On Wed, 2024-01-10 at 20:10 +1030, Qu Wenruo wrote:
> > > 
> > > On 2024/1/10 19:42, Rongrong wrote:
> > > > On Wed, 2024-01-10 at 07:49 +1030, Qu Wenruo wrote:
> > > > > 
> > > > > 
> > > > > On 2024/1/10 04:36, Rongrong wrote:
> > > > > > I guess the root cause of the issue is that one of the DUP metadata
> > > > > > copies was somehow corrupted. Am I right?
> > > > > 
> > > > > I don't think so, I think there may be some false alerts, either from
> > > > > kernel scrub interface, or btrfs-progs.
> > > > 
> > > > OK then. But I just wonder, if this is the case:
> > > > Why `btrfs inspect-internal logical-resolve [LoC]` returned a file
> > > > instead of ENOENT?
> > > 
> > > Then we're having very conflicting results.
> > > 
> > > "btrfs check --check-data-csum" is really the equivalent of scrub (just
> > > offline), which will ensure EVERY copy is verified.
> > > 
> > > If "btrfs check --check-data-csum" shows no error, I can only came up
> > > with one possibility.
> > > 
> > > - There is something missing csum and btrfs check doesn't report
> > >     the problem in the first place
> > > 
> > > This doesn't looks that correct to me though, as we have test cases to
> > > ensure btrfs check can detect extents without csum.
> > > 
> > > Can you provide the full dmesg/logical-resolve/btrfs-check result
> > > without hiding the bytenrs?
> > > That would help us to really clue all the problems.
> > > 
> > > Especially for dmesg, the full one (from boot to crash/report) is
> > > appreciated.
> > 
> > dmesg:
> > Please check the attachment. Some log were rate limited. I may disable
> > the rate limit and retry if you need.
> > 
> > logical-resolve:
> > It either reported ENOENT or /path/to/file. Did you mean you want the
> > address in command? I guess the full dmesg should help in that case.
> 
> Both would help.
> 
> If "logical-resolve" leads to -ENOENT, and extra dmesg output caused by
> it, please attach the extra dmesg and the logical bytenr.

#!/bin/sh
for addr in $(journalctl -t kernel -p 3 -o cat -g 'find logical' | cut -d' ' -f9 | sort -nu); do
        btrfs inspect-internal logical-resolve "$addr" /mnt/tmp
done

All bytenr leaded to -ENOENT, but no extra dmesg. 

> If "logical-resolve" leads to some file, and the filename is not
> sensitive, please provide the filename and the logical bytenr.

#!/bin/bash
files=""
for addr in $(journalctl -t kernel -p 3 -o cat -g 'fixed up' | cut -d' ' -f10 | sort -nu); do
        file="$(btrfs inspect-internal logical-resolve "$addr" /mnt/tmp)"
        files="$file"$'\n'"$files"
        echo "$addr: $file"
done
IFS=$'\n'
ls -lhins --time-style=long-iso $(sort -u <<< "$files")

2214723584: /mnt/tmp/backup.img
463895592960: [SENSITIVE_1]
839699742720: [SENSITIVE_2]
1016250564608: /mnt/tmp/backup.img
1020487204864: /mnt/tmp/backup-1.img
1030859390976: /mnt/tmp/backup.img
1033007464448: /mnt/tmp/backup.img
1035155124224: [SENSITIVE_3].jpg
1048041357312: /mnt/tmp/backup.img
1084548710400: /mnt/tmp/backup.img
1091216670720: /mnt/tmp/backup.img
1095442169856: /mnt/tmp/backup.img
1104076341248: [SENSITIVE_4].mp4
1106023546880: /mnt/tmp/backup.img
1116741763072: [SENSITIVE_5].flac
1119192154112: /mnt/tmp/backup-1.img
1232789045248: [SENSITIVE_6].bak
1309241769984: [SENSITIVE_7].jpg
1348653416448: [SENSITIVE_8].m4a
1375150866432: [SENSITIVE_9].JPG
1380060102656: [SENSITIVE_10].jpg
1589173420032: [SENSITIVE_11]
1655601762304: [SENSITIVE_12].jpg
1661099704320: [SENSITIVE_13].jpg
1752384798720: [SENSITIVE_14].jpg
1756680880128: [SENSITIVE_15].jpg
     276  58G -rw-r--r-- 1 1000 1000  58G 2022-01-09 10:53  /mnt/tmp/backup-1.img
     266  58G -rw-r--r-- 1    0    0  58G 2021-08-03 15:00  /mnt/tmp/backup.img
96078331 448K -rw-rw-rw- 1 1000 1000 448K 2038-01-19 11:14  [SENSITIVE_11]
63324217 872K -rw-r--r-- 1 1000 1000 872K 2022-01-17 13:46 '[SENSITIVE_4].mp4'
59771572 4.7M -rw-rw-rw- 1 1000 1000 4.7M 2020-02-26 16:20  [SENSITIVE_10].jpg
     267 2.4G -rw-r--r-- 1 1000 1000 2.4G 2022-01-24 05:22 '[SENSITIVE_2]'
99353010 244K -rw-rw-rw- 1 1000 1000 241K 2019-10-11 23:00 '[SENSITIVE_12].jpg'
99485427 3.7M -rw-rw-rw- 1 1000 1000 3.7M 2018-05-04 06:21 '[SENSITIVE_13].jpg'
59506999  28M -rw-rw-rw- 1 1000 1000  28M 2021-08-09 15:42 '[SENSITIVE_1]'
59507881  11G -rwxr-xr-x 1 1000 1000  11G 2021-11-06 07:05 '[SENSITIVE_6].bak'
59638058  39M -rwxr-xr-x 1 1000 1000  39M 2021-11-06 07:45 '[SENSITIVE_5].flac'
60958833 4.7M -rwxr-xr-x 1 1000 1000 4.7M 2023-07-04 05:53  [SENSITIVE_3].jpg
60952438 1.3M -rwxr-xr-x 1 1000 1000 1.3M 2023-07-04 05:56  [SENSITIVE_15].jpg
60954090 6.7M -rwxr-xr-x 1 1000 1000 6.7M 2023-07-04 05:59  [SENSITIVE_14].jpg
60967686 260K -rwxr-xr-x 1 1000 1000 259K 2023-07-04 06:02  [SENSITIVE_8].m4a
41949177  12M -rw-r--r-- 1 1000 1000  12M 2019-08-31 16:32  [SENSITIVE_9].JPG
41966502 1.8M -rw-r--r-- 1 1000 1000 1.8M 2019-10-15 16:59  [SENSITIVE_7].jpg

No extra dmesg too.
All these files have no reflink copies.
The file with mtime 2038-01-19 should be intentional considering its
usage. Its last modification occurred before 2023 I guess.

[...]

> And according to the attached dmesg, the most interesting thing is the
> unable to find chunk map error.
> I believe this is the biggest clue.
> 
> Another thing is, for regular non-zoned device scrubbing, the new btrfs
> scrub code would always read a full 64K stripe in one go.
> But in your case, the range we're mapping is not 64K aligned:
> 
> 2214744064 % 65536 = 20480
> 2214748160 % 65536 = 20480
> ...
> 
> I'm not 100% sure if this is related, but for any newer btrfs, we should
> have all chunks start at a bytenr aligned to 64K.

Hmm, let me recall...
Seeing the mtime of files above, I just remembered that:
The fs was converted from ext4 using btrfs-convert. Roughly at the end
of 2023-07. I always use the latest stable kernel, and the btrfs-progs
I used then should be v6.3.2 (from Debian sid).
Soon after the conversion, I deleted the ext4_saved subvolume and then
did balance (-m/-d/--full-balance? I am not sure) and defrag.
I had used the fs a lot until scrub said there are errors. I might or
might not have scrubbed it before. I can't recall it clearly. But I am
sure that this was the first time I saw errors in the fs.

The mtime of files probably hints that there may be bugs in both btrfs-
convert and scrub.


> Since you have a disk dump of it already, mind to full balance the fs,
> then retry to see if there is any difference?

Full balance eliminated all scrub errors.

Usage before:

Overall:
    Device size:                   1.82TiB
    Device allocated:              1.07TiB
    Device unallocated:          766.84GiB
    Device missing:                  0.00B
    Device slack:                  3.50KiB
    Used:                          1.03TiB
    Free (estimated):            805.79GiB      (min: 422.37GiB)
    Free (statfs, df):           766.83GiB
    Data ratio:                       1.00
    Metadata ratio:                   2.00
    Global reserve:              512.00MiB      (used: 0.00B)
    Multiple profiles:                  no

            Data    Metadata System
Id Path     single  DUP      DUP       Unallocated Total   Slack
-- -------- ------- -------- --------- ----------- ------- -------
 1 /dev/vdc 1.06TiB  6.00GiB 128.00MiB   766.84GiB 1.82TiB 3.50KiB
-- -------- ------- -------- --------- ----------- ------- -------
   Total    1.06TiB  3.00GiB  64.00MiB   766.84GiB 1.82TiB 3.50KiB
   Used     1.03TiB  2.39GiB 208.00KiB

Usage after:

Overall:
    Device size:                   1.82TiB
    Device allocated:              1.04TiB
    Device unallocated:          793.95GiB
    Device missing:                  0.00B
    Device slack:                  3.92MiB
    Used:                          1.03TiB
    Free (estimated):            795.85GiB      (min: 398.87GiB)
    Free (statfs, df):           795.85GiB
    Data ratio:                       1.00
    Metadata ratio:                   2.00
    Global reserve:              512.00MiB      (used: 0.00B)
    Multiple profiles:                  no

            Data    Metadata System
Id Path     single  DUP      DUP       Unallocated Total   Slack
-- -------- ------- -------- --------- ----------- ------- -------
 1 /dev/vdb 1.03TiB 16.00GiB  64.00MiB   793.95GiB 1.82TiB 3.92MiB
-- -------- ------- -------- --------- ----------- ------- -------
   Total    1.03TiB  8.00GiB  32.00MiB   793.95GiB 1.82TiB 3.92MiB
   Used     1.03TiB  2.61GiB 144.00KiB

Metadata got even more puffiness, weird.

See also the attached dmesg.
Explanation of the kernel version (6.7.0-x64v3-dbg-dirty):
KASAN enabled
My previous scrub patch applied, which should have no side effect for
what we are discussing about mainly in this thread.
(And yes, while scrubbing the fs before balancing without the patch,
KASAN discovered UAF — I am not sure if it is a vulnerability that
shouldn't report in public. I will make another bug report this weekend
if it is OK to do that)

Should I test balancing only data/metadata to find more clues? Maybe
metadata? Cuz balancing data is painfully slow :( But if there is
indeed such a need, I'll do it!

> Thanks,
> Qu

Thanks,
Rongrong


[-- Attachment #2: dmesg-balance.txt --]
[-- Type: text/plain, Size: 372776 bytes --]

[    0.000000] Linux version 6.7.0-x64v3-dbg-dirty (icenowy@edelgard) (gcc (GCC) 13.2.0 20230727 (AOSC OS, Core), GNU ld (GNU Binutils) 2.41) #12 SMP PREEMPT_DYNAMIC Thu Jan 11 13:20:19 CST 2024
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-6.7.0-x64v3-dbg-dirty root=UUID=5d5180c8-c108-490a-ba5e-16e23b89e553 ro quiet
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Hygon HygonGenuine
[    0.000000]   Centaur CentaurHauls
[    0.000000]   zhaoxin   Shanghai  
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000002ffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000030000-0x000000000004ffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000050000-0x000000000009efff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009f000-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000007e79dfff] usable
[    0.000000] BIOS-e820: [mem 0x000000007e79e000-0x000000007e9ebfff] reserved
[    0.000000] BIOS-e820: [mem 0x000000007e9ec000-0x000000007eaebfff] type 20
[    0.000000] BIOS-e820: [mem 0x000000007eaec000-0x000000007eb6bfff] reserved
[    0.000000] BIOS-e820: [mem 0x000000007eb6c000-0x000000007eb7dfff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000007eb7e000-0x000000007ebfdfff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000007ebfe000-0x000000007effffff] usable
[    0.000000] BIOS-e820: [mem 0x000000007f000000-0x000000007fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000027fffffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] APIC: Static calls initialized
[    0.000000] efi: EFI v2.7 by Debian distribution of EDK II
[    0.000000] efi: SMBIOS=0x7e9d4000 SMBIOS 3.0=0x7e9d2000 ACPI=0x7eb7d000 ACPI 2.0=0x7eb7d014 MEMATTR=0x7d564018 MOKvar=0x7e97d000 
[    0.000000] SMBIOS 3.0.0 present.
[    0.000000] DMI: QEMU Standard PC (Q35 + ICH9, 2009), BIOS 2023.11-2 12/24/2023
[    0.000000] Hypervisor detected: KVM
[    0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00
[    0.000001] kvm-clock: using sched offset of 14331957743 cycles
[    0.000003] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns
[    0.000007] tsc: Detected 3503.998 MHz processor
[    0.000071] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000076] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000088] last_pfn = 0x280000 max_arch_pfn = 0x400000000
[    0.000105] MTRR map: 4 entries (2 fixed + 2 variable; max 18), built from 8 variable MTRRs
[    0.000109] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.000130] last_pfn = 0x7f000 max_arch_pfn = 0x400000000
[    0.016192] Secure boot disabled
[    0.016194] RAMDISK: [mem 0x2f505000-0x33a79fff]
[    0.016202] ACPI: Early table checksum verification disabled
[    0.016206] ACPI: RSDP 0x000000007EB7D014 000024 (v02 BOCHS )
[    0.016213] ACPI: XSDT 0x000000007EB7C0E8 00004C (v01 BOCHS  BXPC     00000001      01000013)
[    0.016224] ACPI: FACP 0x000000007EB78000 0000F4 (v03 BOCHS  BXPC     00000001 BXPC 00000001)
[    0.016239] ACPI: DSDT 0x000000007EB79000 002B91 (v01 BOCHS  BXPC     00000001 BXPC 00000001)
[    0.016248] ACPI: FACS 0x000000007EBDC000 000040
[    0.016255] ACPI: APIC 0x000000007EB77000 000090 (v03 BOCHS  BXPC     00000001 BXPC 00000001)
[    0.016263] ACPI: MCFG 0x000000007EB76000 00003C (v01 BOCHS  BXPC     00000001 BXPC 00000001)
[    0.016271] ACPI: WAET 0x000000007EB75000 000028 (v01 BOCHS  BXPC     00000001 BXPC 00000001)
[    0.016279] ACPI: BGRT 0x000000007EB74000 000038 (v01 INTEL  EDK2     00000002      01000013)
[    0.016285] ACPI: Reserving FACP table memory at [mem 0x7eb78000-0x7eb780f3]
[    0.016288] ACPI: Reserving DSDT table memory at [mem 0x7eb79000-0x7eb7bb90]
[    0.016290] ACPI: Reserving FACS table memory at [mem 0x7ebdc000-0x7ebdc03f]
[    0.016293] ACPI: Reserving APIC table memory at [mem 0x7eb77000-0x7eb7708f]
[    0.016295] ACPI: Reserving MCFG table memory at [mem 0x7eb76000-0x7eb7603b]
[    0.016297] ACPI: Reserving WAET table memory at [mem 0x7eb75000-0x7eb75027]
[    0.016299] ACPI: Reserving BGRT table memory at [mem 0x7eb74000-0x7eb74037]
[    0.016705] No NUMA configuration found
[    0.016707] Faking a node at [mem 0x0000000000000000-0x000000027fffffff]
[    0.016741] NODE_DATA(0) allocated [mem 0x27ffd0000-0x27fffafff]
[    0.017417] Zone ranges:
[    0.017419]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.017422]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.017425]   Normal   [mem 0x0000000100000000-0x000000027fffffff]
[    0.017428]   Device   empty
[    0.017429] Movable zone start for each node
[    0.017434] Early memory node ranges
[    0.017434]   node   0: [mem 0x0000000000001000-0x000000000002ffff]
[    0.017437]   node   0: [mem 0x0000000000050000-0x000000000009efff]
[    0.017439]   node   0: [mem 0x0000000000100000-0x000000007e79dfff]
[    0.017441]   node   0: [mem 0x000000007ebfe000-0x000000007effffff]
[    0.017443]   node   0: [mem 0x0000000100000000-0x000000027fffffff]
[    0.017446] Initmem setup node 0 [mem 0x0000000000001000-0x000000027fffffff]
[    0.017459] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.017471] On node 0, zone DMA: 32 pages in unavailable ranges
[    0.017773] On node 0, zone DMA: 97 pages in unavailable ranges
[    0.058102] On node 0, zone DMA32: 1120 pages in unavailable ranges
[    0.181811] On node 0, zone Normal: 4096 pages in unavailable ranges
[    0.632269] kasan: KernelAddressSanitizer initialized
[    0.632853] ACPI: PM-Timer IO Port: 0x608
[    0.632872] ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1])
[    0.632896] IOAPIC[0]: apic_id 0, version 17, address 0xfec00000, GSI 0-23
[    0.632902] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.632905] ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level)
[    0.632907] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.632910] ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level)
[    0.632913] ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level)
[    0.632922] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.632939] e820: update [mem 0x7ce91000-0x7ce99fff] usable ==> reserved
[    0.632958] TSC deadline timer available
[    0.632959] smpboot: Allowing 4 CPUs, 0 hotplug CPUs
[    0.632978] kvm-guest: APIC: eoi() replaced with kvm_guest_apic_eoi_write()
[    0.633014] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.633018] PM: hibernation: Registered nosave memory: [mem 0x00030000-0x0004ffff]
[    0.633021] PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
[    0.633023] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[    0.633027] PM: hibernation: Registered nosave memory: [mem 0x7ce91000-0x7ce99fff]
[    0.633030] PM: hibernation: Registered nosave memory: [mem 0x7e79e000-0x7e9ebfff]
[    0.633032] PM: hibernation: Registered nosave memory: [mem 0x7e9ec000-0x7eaebfff]
[    0.633034] PM: hibernation: Registered nosave memory: [mem 0x7eaec000-0x7eb6bfff]
[    0.633036] PM: hibernation: Registered nosave memory: [mem 0x7eb6c000-0x7eb7dfff]
[    0.633038] PM: hibernation: Registered nosave memory: [mem 0x7eb7e000-0x7ebfdfff]
[    0.633042] PM: hibernation: Registered nosave memory: [mem 0x7f000000-0x7fffffff]
[    0.633044] PM: hibernation: Registered nosave memory: [mem 0x80000000-0xdfffffff]
[    0.633045] PM: hibernation: Registered nosave memory: [mem 0xe0000000-0xefffffff]
[    0.633047] PM: hibernation: Registered nosave memory: [mem 0xf0000000-0xfeffbfff]
[    0.633049] PM: hibernation: Registered nosave memory: [mem 0xfeffc000-0xfeffffff]
[    0.633051] PM: hibernation: Registered nosave memory: [mem 0xff000000-0xffffffff]
[    0.633055] [mem 0x80000000-0xdfffffff] available for PCI devices
[    0.633058] Booting paravirtualized kernel on KVM
[    0.633060] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[    0.641736] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1
[    0.642658] percpu: Embedded 69 pages/cpu s245760 r8192 d28672 u524288
[    0.642671] pcpu-alloc: s245760 r8192 d28672 u524288 alloc=1*2097152
[    0.642675] pcpu-alloc: [0] 0 1 2 3 
[    0.642723] kvm-guest: PV spinlocks disabled, no host support
[    0.642724] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-6.7.0-x64v3-dbg-dirty root=UUID=5d5180c8-c108-490a-ba5e-16e23b89e553 ro quiet
[    0.642797] Unknown kernel command line parameters "BOOT_IMAGE=/boot/vmlinuz-6.7.0-x64v3-dbg-dirty", will be passed to user space.
[    0.642830] random: crng init done
[    0.646333] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
[    0.648166] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[    0.648630] Fallback order for Node 0: 0 
[    0.648635] Built 1 zonelists, mobility grouping on.  Total pages: 2056977
[    0.648638] Policy zone: Normal
[    0.648647] mem auto-init: stack:off, heap alloc:on, heap free:off
[    0.648650] stackdepot: allocating hash table via alloc_large_system_hash
[    0.652083] stackdepot hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
[    0.652095] software IO TLB: area num 4.
[    0.815863] Memory: 6930412K/8367224K available (22528K kernel code, 7515K rwdata, 8912K rodata, 3040K init, 5368K bss, 1436556K reserved, 0K cma-reserved)
[    0.816615] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    0.816655] Kernel/User page tables isolation: enabled
[    0.817184] Dynamic Preempt: full
[    0.817658] rcu: Preemptible hierarchical RCU implementation.
[    0.817660] rcu:         RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=4.
[    0.817662]         Trampoline variant of Tasks RCU enabled.
[    0.817664]         Tracing variant of Tasks RCU enabled.
[    0.817665] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[    0.817667] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
[    0.817715] NR_IRQS: 524544, nr_irqs: 456, preallocated irqs: 16
[    0.818274] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[    0.818415] Console: colour dummy device 80x25
[    0.818419] printk: legacy console [tty0] enabled
[    0.818521] ACPI: Core revision 20230628
[    0.818945] APIC: Switch to symmetric I/O mode setup
[    0.819043] x2apic enabled
[    0.819203] APIC: Switched APIC routing to: physical x2apic
[    0.819888] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x328211acd6a, max_idle_ns: 440795259903 ns
[    0.819898] Calibrating delay loop (skipped) preset value.. 7007.99 BogoMIPS (lpj=14015992)
[    0.820001] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
[    0.820004] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
[    0.820011] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    0.820015] Spectre V2 : Mitigation: IBRS
[    0.820018] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    0.820021] Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT
[    0.820024] RETBleed: Mitigation: IBRS
[    0.820028] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    0.820031] Speculative Store Bypass: Vulnerable
[    0.820048] MDS: Vulnerable: Clear CPU buffers attempted, no microcode
[    0.820051] MMIO Stale Data: Vulnerable: Clear CPU buffers attempted, no microcode
[    0.820055] SRBDS: Unknown: Dependent on hypervisor status
[    0.820058] GDS: Unknown: Dependent on hypervisor status
[    0.820070] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.820074] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.820077] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.820081] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.820084] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'compacted' format.
[    0.823894] Freeing SMP alternatives memory: 40K
[    0.823894] pid_max: default: 32768 minimum: 301
[    0.823894] LSM: initializing lsm=lockdown,capability,landlock,yama,apparmor,integrity
[    0.823894] landlock: Up and running.
[    0.823894] Yama: becoming mindful.
[    0.823894] AppArmor: AppArmor initialized
[    0.823894] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    0.823894] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    0.823894] smpboot: CPU0: Intel Core Processor (Skylake, IBRS, no TSX) (family: 0x6, model: 0x5e, stepping: 0x3)
[    0.823894] RCU Tasks: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1.
[    0.823894] RCU Tasks Trace: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1.
[    0.823894] Performance Events: unsupported p6 CPU model 94 no PMU driver, software events only.
[    0.823894] signal: max sigframe size: 1776
[    0.823894] rcu: Hierarchical SRCU implementation.
[    0.823894] rcu:         Max phase no-delay instances is 1000.
[    0.824975] NMI watchdog: Perf NMI watchdog permanently disabled
[    0.825333] smp: Bringing up secondary CPUs ...
[    0.826062] smpboot: x86: Booting SMP configuration:
[    0.826065] .... node  #0, CPUs:      #2 #1 #3
[    0.832025] MDS CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/mds.html for more details.
[    0.832025] MMIO Stale Data CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/processor_mmio_stale_data.html for more details.
[    0.833896] smp: Brought up 1 node, 4 CPUs
[    0.833896] smpboot: Max logical packages: 1
[    0.833896] smpboot: Total of 4 processors activated (28031.98 BogoMIPS)
[    0.836561] devtmpfs: initialized
[    0.836600] x86/mm: Memory block size: 128MB
[    0.856472] ACPI: PM: Registering ACPI NVS region [mem 0x7eb7e000-0x7ebfdfff] (524288 bytes)
[    0.857043] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.857084] futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
[    0.857472] pinctrl core: initialized pinctrl subsystem
[    0.858440] PM: RTC time: 10:02:28, date: 2024-01-11
[    0.862458] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    0.864363] DMA: preallocated 1024 KiB GFP_KERNEL pool for atomic allocations
[    0.864873] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    0.865219] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    0.865326] audit: initializing netlink subsys (disabled)
[    0.865389] audit: type=2000 audit(1704967349.032:1): state=initialized audit_enabled=0 res=1
[    0.865916] thermal_sys: Registered thermal governor 'fair_share'
[    0.865920] thermal_sys: Registered thermal governor 'bang_bang'
[    0.865922] thermal_sys: Registered thermal governor 'step_wise'
[    0.865925] thermal_sys: Registered thermal governor 'user_space'
[    0.865927] thermal_sys: Registered thermal governor 'power_allocator'
[    0.865979] cpuidle: using governor ladder
[    0.865990] cpuidle: using governor menu
[    0.867926] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.868880] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.868897] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved as E820 entry
[    0.868940] PCI: Using configuration type 1 for base access
[    0.870354] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[    0.870378] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[    0.870378] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[    0.875994] ACPI: Added _OSI(Module Device)
[    0.875998] ACPI: Added _OSI(Processor Device)
[    0.876000] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.876003] ACPI: Added _OSI(Processor Aggregator Device)
[    0.984645] ACPI: 1 ACPI AML tables successfully acquired and loaded
[    0.993215] ACPI: _OSC evaluation for CPUs failed, trying _PDC
[    1.001845] ACPI: Interpreter enabled
[    1.001983] ACPI: PM: (supports S0 S5)
[    1.001986] ACPI: Using IOAPIC for interrupt routing
[    1.002771] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    1.002775] PCI: Ignoring E820 reservations for host bridge windows
[    1.006562] ACPI: Enabled 2 GPEs in block 00 to 3F
[    1.113530] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    1.113575] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    1.116888] acpi PNP0A08:00: _OSC: platform does not support [PCIeHotplug LTR DPC]
[    1.122796] acpi PNP0A08:00: _OSC: OS now controls [SHPCHotplug PME AER PCIeCapability]
[    1.130266] PCI host bridge to bus 0000:00
[    1.130280] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    1.130293] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    1.130305] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    1.130317] pci_bus 0000:00: root bus resource [mem 0x80000000-0xdfffffff window]
[    1.130330] pci_bus 0000:00: root bus resource [mem 0xf0000000-0xfebfffff window]
[    1.130342] pci_bus 0000:00: root bus resource [mem 0x800000000-0xfffffffff window]
[    1.130356] pci_bus 0000:00: root bus resource [bus 00-ff]
[    1.130600] pci 0000:00:00.0: [8086:29c0] type 00 class 0x060000
[    1.133186] pci 0000:00:01.0: [1b36:0100] type 00 class 0x030000
[    1.161779] pci 0000:00:01.0: reg 0x10: [mem 0x84000000-0x87ffffff]
[    1.165642] pci 0000:00:01.0: reg 0x14: [mem 0x80000000-0x83ffffff]
[    1.167943] pci 0000:00:01.0: reg 0x18: [mem 0x89c44000-0x89c45fff]
[    1.172003] pci 0000:00:01.0: reg 0x1c: [io  0x6060-0x607f]
[    1.181153] pci 0000:00:01.0: reg 0x30: [mem 0xffff0000-0xffffffff pref]
[    1.181571] pci 0000:00:01.0: BAR 0: assigned to efifb
[    1.181596] pci 0000:00:01.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    1.184538] pci 0000:00:02.0: [1b36:000c] type 01 class 0x060400
[    1.185944] pci 0000:00:02.0: reg 0x10: [mem 0x89c54000-0x89c54fff]
[    1.192197] pci 0000:00:02.1: [1b36:000c] type 01 class 0x060400
[    1.193536] pci 0000:00:02.1: reg 0x10: [mem 0x89c53000-0x89c53fff]
[    1.198675] pci 0000:00:02.2: [1b36:000c] type 01 class 0x060400
[    1.199903] pci 0000:00:02.2: reg 0x10: [mem 0x89c52000-0x89c52fff]
[    1.206812] pci 0000:00:02.3: [1b36:000c] type 01 class 0x060400
[    1.207903] pci 0000:00:02.3: reg 0x10: [mem 0x89c51000-0x89c51fff]
[    1.214139] pci 0000:00:02.4: [1b36:000c] type 01 class 0x060400
[    1.215452] pci 0000:00:02.4: reg 0x10: [mem 0x89c50000-0x89c50fff]
[    1.221373] pci 0000:00:02.5: [1b36:000c] type 01 class 0x060400
[    1.222670] pci 0000:00:02.5: reg 0x10: [mem 0x89c4f000-0x89c4ffff]
[    1.229649] pci 0000:00:02.6: [1b36:000c] type 01 class 0x060400
[    1.230993] pci 0000:00:02.6: reg 0x10: [mem 0x89c4e000-0x89c4efff]
[    1.240232] pci 0000:00:02.7: [1b36:000c] type 01 class 0x060400
[    1.241549] pci 0000:00:02.7: reg 0x10: [mem 0x89c4d000-0x89c4dfff]
[    1.246781] pci 0000:00:03.0: [1b36:000c] type 01 class 0x060400
[    1.247901] pci 0000:00:03.0: reg 0x10: [mem 0x89c4c000-0x89c4cfff]
[    1.255147] pci 0000:00:03.1: [1b36:000c] type 01 class 0x060400
[    1.256312] pci 0000:00:03.1: reg 0x10: [mem 0x89c4b000-0x89c4bfff]
[    1.262805] pci 0000:00:03.2: [1b36:000c] type 01 class 0x060400
[    1.263903] pci 0000:00:03.2: reg 0x10: [mem 0x89c4a000-0x89c4afff]
[    1.269216] pci 0000:00:03.3: [1b36:000c] type 01 class 0x060400
[    1.270537] pci 0000:00:03.3: reg 0x10: [mem 0x89c49000-0x89c49fff]
[    1.277330] pci 0000:00:03.4: [1b36:000c] type 01 class 0x060400
[    1.278672] pci 0000:00:03.4: reg 0x10: [mem 0x89c48000-0x89c48fff]
[    1.284844] pci 0000:00:03.5: [1b36:000c] type 01 class 0x060400
[    1.286226] pci 0000:00:03.5: reg 0x10: [mem 0x89c47000-0x89c47fff]
[    1.296560] pci 0000:00:1b.0: [8086:293e] type 00 class 0x040300
[    1.297056] pci 0000:00:1b.0: reg 0x10: [mem 0x89c40000-0x89c43fff]
[    1.302612] pci 0000:00:1f.0: [8086:2918] type 00 class 0x060100
[    1.302913] pci 0000:00:1f.0: quirk: [io  0x0600-0x067f] claimed by ICH6 ACPI/GPIO/TCO
[    1.305313] pci 0000:00:1f.2: [8086:2922] type 00 class 0x010601
[    1.310343] pci 0000:00:1f.2: reg 0x20: [io  0x6040-0x605f]
[    1.311777] pci 0000:00:1f.2: reg 0x24: [mem 0x89c46000-0x89c46fff]
[    1.314885] pci 0000:00:1f.3: [8086:2930] type 00 class 0x0c0500
[    1.319091] pci 0000:00:1f.3: reg 0x20: [io  0x6000-0x603f]
[    1.323811] acpiphp: Slot [0] registered
[    1.323928] pci 0000:01:00.0: [1af4:1041] type 00 class 0x020000
[    1.325568] pci 0000:01:00.0: reg 0x14: [mem 0x89a00000-0x89a00fff]
[    1.327879] pci 0000:01:00.0: reg 0x20: [mem 0x800000000-0x800003fff 64bit pref]
[    1.328769] pci 0000:01:00.0: reg 0x30: [mem 0xfffc0000-0xffffffff pref]
[    1.381273] pci 0000:00:02.0: PCI bridge to [bus 01]
[    1.381296] pci 0000:00:02.0:   bridge window [mem 0x89a00000-0x89bfffff]
[    1.381315] pci 0000:00:02.0:   bridge window [mem 0x800000000-0x8000fffff 64bit pref]
[    1.383162] acpiphp: Slot [0-2] registered
[    1.383276] pci 0000:02:00.0: [1b36:000d] type 00 class 0x0c0330
[    1.383784] pci 0000:02:00.0: reg 0x10: [mem 0x89800000-0x89803fff 64bit]
[    1.435692] pci 0000:00:02.1: PCI bridge to [bus 02]
[    1.435715] pci 0000:00:02.1:   bridge window [mem 0x89800000-0x899fffff]
[    1.437527] acpiphp: Slot [0-3] registered
[    1.437649] pci 0000:03:00.0: [1af4:1043] type 00 class 0x078000
[    1.439907] pci 0000:03:00.0: reg 0x14: [mem 0x89600000-0x89600fff]
[    1.443911] pci 0000:03:00.0: reg 0x20: [mem 0x800100000-0x800103fff 64bit pref]
[    1.496586] pci 0000:00:02.2: PCI bridge to [bus 03]
[    1.496608] pci 0000:00:02.2:   bridge window [mem 0x89600000-0x897fffff]
[    1.496627] pci 0000:00:02.2:   bridge window [mem 0x800100000-0x8001fffff 64bit pref]
[    1.498707] acpiphp: Slot [0-4] registered
[    1.498838] pci 0000:04:00.0: [1af4:1042] type 00 class 0x010000
[    1.504338] pci 0000:04:00.0: reg 0x14: [mem 0x89400000-0x89400fff]
[    1.507051] pci 0000:04:00.0: reg 0x20: [mem 0x800200000-0x800203fff 64bit pref]
[    1.557846] pci 0000:00:02.3: PCI bridge to [bus 04]
[    1.557869] pci 0000:00:02.3:   bridge window [mem 0x89400000-0x895fffff]
[    1.557888] pci 0000:00:02.3:   bridge window [mem 0x800200000-0x8002fffff 64bit pref]
[    1.559927] acpiphp: Slot [0-5] registered
[    1.560030] pci 0000:05:00.0: [1af4:1045] type 00 class 0x00ff00
[    1.563498] pci 0000:05:00.0: reg 0x20: [mem 0x800300000-0x800303fff 64bit pref]
[    1.614099] pci 0000:00:02.4: PCI bridge to [bus 05]
[    1.614122] pci 0000:00:02.4:   bridge window [mem 0x89200000-0x893fffff]
[    1.614141] pci 0000:00:02.4:   bridge window [mem 0x800300000-0x8003fffff 64bit pref]
[    1.616181] acpiphp: Slot [0-6] registered
[    1.616308] pci 0000:06:00.0: [1af4:1044] type 00 class 0x00ff00
[    1.618996] pci 0000:06:00.0: reg 0x14: [mem 0x89000000-0x89000fff]
[    1.622568] pci 0000:06:00.0: reg 0x20: [mem 0x800400000-0x800403fff 64bit pref]
[    1.675547] pci 0000:00:02.5: PCI bridge to [bus 06]
[    1.675572] pci 0000:00:02.5:   bridge window [mem 0x89000000-0x891fffff]
[    1.675590] pci 0000:00:02.5:   bridge window [mem 0x800400000-0x8004fffff 64bit pref]
[    1.677584] acpiphp: Slot [0-7] registered
[    1.677770] pci 0000:00:02.6: PCI bridge to [bus 07]
[    1.677790] pci 0000:00:02.6:   bridge window [mem 0x88e00000-0x88ffffff]
[    1.679728] acpiphp: Slot [0-8] registered
[    1.679834] pci 0000:08:00.0: [1af4:1042] type 00 class 0x010000
[    1.681919] pci 0000:08:00.0: reg 0x14: [mem 0x88c00000-0x88c00fff]
[    1.687112] pci 0000:08:00.0: reg 0x20: [mem 0x800500000-0x800503fff 64bit pref]
[    1.737649] pci 0000:00:02.7: PCI bridge to [bus 08]
[    1.737672] pci 0000:00:02.7:   bridge window [mem 0x88c00000-0x88dfffff]
[    1.737690] pci 0000:00:02.7:   bridge window [mem 0x800500000-0x8005fffff 64bit pref]
[    1.739477] acpiphp: Slot [0-9] registered
[    1.739610] pci 0000:09:00.0: [1af4:105a] type 00 class 0x018000
[    1.741200] pci 0000:09:00.0: reg 0x14: [mem 0x88a00000-0x88a00fff]
[    1.743903] pci 0000:09:00.0: reg 0x20: [mem 0x800600000-0x800603fff 64bit pref]
[    1.796281] pci 0000:00:03.0: PCI bridge to [bus 09]
[    1.796304] pci 0000:00:03.0:   bridge window [mem 0x88a00000-0x88bfffff]
[    1.796322] pci 0000:00:03.0:   bridge window [mem 0x800600000-0x8006fffff 64bit pref]
[    1.798385] acpiphp: Slot [0-10] registered
[    1.798610] pci 0000:00:03.1: PCI bridge to [bus 0a]
[    1.798630] pci 0000:00:03.1:   bridge window [mem 0x88800000-0x889fffff]
[    1.800656] acpiphp: Slot [0-11] registered
[    1.800876] pci 0000:00:03.2: PCI bridge to [bus 0b]
[    1.800895] pci 0000:00:03.2:   bridge window [mem 0x88600000-0x887fffff]
[    1.802914] acpiphp: Slot [0-12] registered
[    1.803100] pci 0000:00:03.3: PCI bridge to [bus 0c]
[    1.803119] pci 0000:00:03.3:   bridge window [mem 0x88400000-0x885fffff]
[    1.805152] acpiphp: Slot [0-13] registered
[    1.805337] pci 0000:00:03.4: PCI bridge to [bus 0d]
[    1.805356] pci 0000:00:03.4:   bridge window [mem 0x88200000-0x883fffff]
[    1.807963] acpiphp: Slot [0-14] registered
[    1.808150] pci 0000:00:03.5: PCI bridge to [bus 0e]
[    1.808170] pci 0000:00:03.5:   bridge window [mem 0x88000000-0x881fffff]
[    1.827389] ACPI: PCI: Interrupt link LNKA configured for IRQ 10
[    1.831137] ACPI: PCI: Interrupt link LNKB configured for IRQ 10
[    1.834119] ACPI: PCI: Interrupt link LNKC configured for IRQ 11
[    1.837081] ACPI: PCI: Interrupt link LNKD configured for IRQ 11
[    1.839972] ACPI: PCI: Interrupt link LNKE configured for IRQ 10
[    1.842933] ACPI: PCI: Interrupt link LNKF configured for IRQ 10
[    1.845955] ACPI: PCI: Interrupt link LNKG configured for IRQ 11
[    1.848893] ACPI: PCI: Interrupt link LNKH configured for IRQ 11
[    1.849951] ACPI: PCI: Interrupt link GSIA configured for IRQ 16
[    1.850356] ACPI: PCI: Interrupt link GSIB configured for IRQ 17
[    1.850727] ACPI: PCI: Interrupt link GSIC configured for IRQ 18
[    1.851114] ACPI: PCI: Interrupt link GSID configured for IRQ 19
[    1.851504] ACPI: PCI: Interrupt link GSIE configured for IRQ 20
[    1.851892] ACPI: PCI: Interrupt link GSIF configured for IRQ 21
[    1.852265] ACPI: PCI: Interrupt link GSIG configured for IRQ 22
[    1.852663] ACPI: PCI: Interrupt link GSIH configured for IRQ 23
[    1.862484] iommu: Default domain type: Translated
[    1.862484] iommu: DMA domain TLB invalidation policy: lazy mode
[    1.865424] SCSI subsystem initialized
[    1.865504] libata version 3.00 loaded.
[    1.865504] ACPI: bus type USB registered
[    1.865504] usbcore: registered new interface driver usbfs
[    1.865504] usbcore: registered new interface driver hub
[    1.865504] usbcore: registered new device driver usb
[    1.865504] pps_core: LinuxPPS API ver. 1 registered
[    1.865504] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    1.865504] PTP clock support registered
[    1.868086] EDAC MC: Ver: 3.0.0
[    1.868684] efivars: Registered efivars operations
[    1.873739] NetLabel: Initializing
[    1.873743] NetLabel:  domain hash size = 128
[    1.873746] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    1.874012] NetLabel:  unlabeled traffic allowed by default
[    1.876032] mctp: management component transport protocol core
[    1.876032] NET: Registered PF_MCTP protocol family
[    1.876086] PCI: Using ACPI for IRQ routing
[    1.949291] PCI: pci_cache_line_size set to 64 bytes
[    1.949555] e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
[    1.949595] e820: reserve RAM buffer [mem 0x7ce91000-0x7fffffff]
[    1.949611] e820: reserve RAM buffer [mem 0x7e79e000-0x7fffffff]
[    1.949627] e820: reserve RAM buffer [mem 0x7f000000-0x7fffffff]
[    1.951960] pci 0000:00:01.0: vgaarb: setting as boot VGA device
[    1.951967] pci 0000:00:01.0: vgaarb: bridge control possible
[    1.951970] pci 0000:00:01.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    1.951990] vgaarb: loaded
[    1.952786] clocksource: Switched to clocksource kvm-clock
[    1.953271] VFS: Disk quotas dquot_6.6.0
[    1.953329] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    1.955737] AppArmor: AppArmor Filesystem Enabled
[    1.955972] pnp: PnP ACPI init
[    1.959673] system 00:04: [mem 0xe0000000-0xefffffff window] has been reserved
[    1.965806] pnp: PnP ACPI: found 5 devices
[    1.994939] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    1.995551] NET: Registered PF_INET protocol family
[    1.996315] IP idents hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[    2.001503] tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear)
[    2.001691] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[    2.001995] TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    2.003326] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[    2.004611] TCP: Hash tables configured (established 65536 bind 65536)
[    2.005329] MPTCP token hash table entries: 8192 (order: 5, 196608 bytes, linear)
[    2.005582] UDP hash table entries: 4096 (order: 5, 131072 bytes, linear)
[    2.005793] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes, linear)
[    2.006353] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    2.006437] NET: Registered PF_XDP protocol family
[    2.006447] pci 0000:01:00.0: can't claim BAR 6 [mem 0xfffc0000-0xffffffff pref]: no compatible bridge window
[    2.006476] pci 0000:00:02.0: bridge window [io  0x1000-0x0fff] to [bus 01] add_size 1000
[    2.006488] pci 0000:00:02.1: bridge window [io  0x1000-0x0fff] to [bus 02] add_size 1000
[    2.006500] pci 0000:00:02.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 02] add_size 200000 add_align 100000
[    2.006513] pci 0000:00:02.2: bridge window [io  0x1000-0x0fff] to [bus 03] add_size 1000
[    2.006524] pci 0000:00:02.3: bridge window [io  0x1000-0x0fff] to [bus 04] add_size 1000
[    2.006536] pci 0000:00:02.4: bridge window [io  0x1000-0x0fff] to [bus 05] add_size 1000
[    2.006547] pci 0000:00:02.5: bridge window [io  0x1000-0x0fff] to [bus 06] add_size 1000
[    2.006558] pci 0000:00:02.6: bridge window [io  0x1000-0x0fff] to [bus 07] add_size 1000
[    2.006569] pci 0000:00:02.6: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 07] add_size 200000 add_align 100000
[    2.006581] pci 0000:00:02.7: bridge window [io  0x1000-0x0fff] to [bus 08] add_size 1000
[    2.006592] pci 0000:00:03.0: bridge window [io  0x1000-0x0fff] to [bus 09] add_size 1000
[    2.006603] pci 0000:00:03.1: bridge window [io  0x1000-0x0fff] to [bus 0a] add_size 1000
[    2.006613] pci 0000:00:03.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 0a] add_size 200000 add_align 100000
[    2.006626] pci 0000:00:03.2: bridge window [io  0x1000-0x0fff] to [bus 0b] add_size 1000
[    2.006636] pci 0000:00:03.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 0b] add_size 200000 add_align 100000
[    2.006648] pci 0000:00:03.3: bridge window [io  0x1000-0x0fff] to [bus 0c] add_size 1000
[    2.006659] pci 0000:00:03.3: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 0c] add_size 200000 add_align 100000
[    2.006671] pci 0000:00:03.4: bridge window [io  0x1000-0x0fff] to [bus 0d] add_size 1000
[    2.006682] pci 0000:00:03.4: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 0d] add_size 200000 add_align 100000
[    2.006694] pci 0000:00:03.5: bridge window [io  0x1000-0x0fff] to [bus 0e] add_size 1000
[    2.006710] pci 0000:00:03.5: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 0e] add_size 200000 add_align 100000
[    2.006937] pci 0000:00:02.1: BAR 15: assigned [mem 0x800700000-0x8008fffff 64bit pref]
[    2.006947] pci 0000:00:02.6: BAR 15: assigned [mem 0x800900000-0x800afffff 64bit pref]
[    2.006955] pci 0000:00:03.1: BAR 15: assigned [mem 0x800b00000-0x800cfffff 64bit pref]
[    2.006964] pci 0000:00:03.2: BAR 15: assigned [mem 0x800d00000-0x800efffff 64bit pref]
[    2.006973] pci 0000:00:03.3: BAR 15: assigned [mem 0x800f00000-0x8010fffff 64bit pref]
[    2.006982] pci 0000:00:03.4: BAR 15: assigned [mem 0x801100000-0x8012fffff 64bit pref]
[    2.006990] pci 0000:00:03.5: BAR 15: assigned [mem 0x801300000-0x8014fffff 64bit pref]
[    2.006998] pci 0000:00:02.0: BAR 13: assigned [io  0x1000-0x1fff]
[    2.007005] pci 0000:00:02.1: BAR 13: assigned [io  0x2000-0x2fff]
[    2.007011] pci 0000:00:02.2: BAR 13: assigned [io  0x3000-0x3fff]
[    2.007018] pci 0000:00:02.3: BAR 13: assigned [io  0x4000-0x4fff]
[    2.007024] pci 0000:00:02.4: BAR 13: assigned [io  0x5000-0x5fff]
[    2.007031] pci 0000:00:02.5: BAR 13: assigned [io  0x7000-0x7fff]
[    2.007038] pci 0000:00:02.6: BAR 13: assigned [io  0x8000-0x8fff]
[    2.007046] pci 0000:00:02.7: BAR 13: assigned [io  0x9000-0x9fff]
[    2.007053] pci 0000:00:03.0: BAR 13: assigned [io  0xa000-0xafff]
[    2.007060] pci 0000:00:03.1: BAR 13: assigned [io  0xb000-0xbfff]
[    2.007067] pci 0000:00:03.2: BAR 13: assigned [io  0xc000-0xcfff]
[    2.007074] pci 0000:00:03.3: BAR 13: assigned [io  0xd000-0xdfff]
[    2.007082] pci 0000:00:03.4: BAR 13: assigned [io  0xe000-0xefff]
[    2.007090] pci 0000:00:03.5: BAR 13: assigned [io  0xf000-0xffff]
[    2.007426] pci 0000:01:00.0: BAR 6: assigned [mem 0x89a40000-0x89a7ffff pref]
[    2.007438] pci 0000:00:02.0: PCI bridge to [bus 01]
[    2.007463] pci 0000:00:02.0:   bridge window [io  0x1000-0x1fff]
[    2.008784] pci 0000:00:02.0:   bridge window [mem 0x89a00000-0x89bfffff]
[    2.009552] pci 0000:00:02.0:   bridge window [mem 0x800000000-0x8000fffff 64bit pref]
[    2.011146] pci 0000:00:02.1: PCI bridge to [bus 02]
[    2.011160] pci 0000:00:02.1:   bridge window [io  0x2000-0x2fff]
[    2.012310] pci 0000:00:02.1:   bridge window [mem 0x89800000-0x899fffff]
[    2.013091] pci 0000:00:02.1:   bridge window [mem 0x800700000-0x8008fffff 64bit pref]
[    2.014674] pci 0000:00:02.2: PCI bridge to [bus 03]
[    2.014688] pci 0000:00:02.2:   bridge window [io  0x3000-0x3fff]
[    2.015831] pci 0000:00:02.2:   bridge window [mem 0x89600000-0x897fffff]
[    2.016610] pci 0000:00:02.2:   bridge window [mem 0x800100000-0x8001fffff 64bit pref]
[    2.018160] pci 0000:00:02.3: PCI bridge to [bus 04]
[    2.019670] pci 0000:00:02.3:   bridge window [io  0x4000-0x4fff]
[    2.020409] pci 0000:00:02.3:   bridge window [mem 0x89400000-0x895fffff]
[    2.020886] pci 0000:00:02.3:   bridge window [mem 0x800200000-0x8002fffff 64bit pref]
[    2.021834] pci 0000:00:02.4: PCI bridge to [bus 05]
[    2.021847] pci 0000:00:02.4:   bridge window [io  0x5000-0x5fff]
[    2.022555] pci 0000:00:02.4:   bridge window [mem 0x89200000-0x893fffff]
[    2.023020] pci 0000:00:02.4:   bridge window [mem 0x800300000-0x8003fffff 64bit pref]
[    2.023947] pci 0000:00:02.5: PCI bridge to [bus 06]
[    2.023958] pci 0000:00:02.5:   bridge window [io  0x7000-0x7fff]
[    2.024713] pci 0000:00:02.5:   bridge window [mem 0x89000000-0x891fffff]
[    2.025176] pci 0000:00:02.5:   bridge window [mem 0x800400000-0x8004fffff 64bit pref]
[    2.026464] pci 0000:00:02.6: PCI bridge to [bus 07]
[    2.026477] pci 0000:00:02.6:   bridge window [io  0x8000-0x8fff]
[    2.027646] pci 0000:00:02.6:   bridge window [mem 0x88e00000-0x88ffffff]
[    2.028479] pci 0000:00:02.6:   bridge window [mem 0x800900000-0x800afffff 64bit pref]
[    2.032553] pci 0000:00:02.7: PCI bridge to [bus 08]
[    2.032570] pci 0000:00:02.7:   bridge window [io  0x9000-0x9fff]
[    2.033223] pci 0000:00:02.7:   bridge window [mem 0x88c00000-0x88dfffff]
[    2.033689] pci 0000:00:02.7:   bridge window [mem 0x800500000-0x8005fffff 64bit pref]
[    2.034596] pci 0000:00:03.0: PCI bridge to [bus 09]
[    2.034608] pci 0000:00:03.0:   bridge window [io  0xa000-0xafff]
[    2.035256] pci 0000:00:03.0:   bridge window [mem 0x88a00000-0x88bfffff]
[    2.035682] pci 0000:00:03.0:   bridge window [mem 0x800600000-0x8006fffff 64bit pref]
[    2.036581] pci 0000:00:03.1: PCI bridge to [bus 0a]
[    2.036593] pci 0000:00:03.1:   bridge window [io  0xb000-0xbfff]
[    2.037218] pci 0000:00:03.1:   bridge window [mem 0x88800000-0x889fffff]
[    2.037665] pci 0000:00:03.1:   bridge window [mem 0x800b00000-0x800cfffff 64bit pref]
[    2.038595] pci 0000:00:03.2: PCI bridge to [bus 0b]
[    2.038607] pci 0000:00:03.2:   bridge window [io  0xc000-0xcfff]
[    2.039312] pci 0000:00:03.2:   bridge window [mem 0x88600000-0x887fffff]
[    2.039769] pci 0000:00:03.2:   bridge window [mem 0x800d00000-0x800efffff 64bit pref]
[    2.040877] pci 0000:00:03.3: PCI bridge to [bus 0c]
[    2.040890] pci 0000:00:03.3:   bridge window [io  0xd000-0xdfff]
[    2.042063] pci 0000:00:03.3:   bridge window [mem 0x88400000-0x885fffff]
[    2.044618] pci 0000:00:03.3:   bridge window [mem 0x800f00000-0x8010fffff 64bit pref]
[    2.045455] pci 0000:00:03.4: PCI bridge to [bus 0d]
[    2.045467] pci 0000:00:03.4:   bridge window [io  0xe000-0xefff]
[    2.046142] pci 0000:00:03.4:   bridge window [mem 0x88200000-0x883fffff]
[    2.046571] pci 0000:00:03.4:   bridge window [mem 0x801100000-0x8012fffff 64bit pref]
[    2.047438] pci 0000:00:03.5: PCI bridge to [bus 0e]
[    2.047450] pci 0000:00:03.5:   bridge window [io  0xf000-0xffff]
[    2.048075] pci 0000:00:03.5:   bridge window [mem 0x88000000-0x881fffff]
[    2.048497] pci 0000:00:03.5:   bridge window [mem 0x801300000-0x8014fffff 64bit pref]
[    2.049340] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    2.049347] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    2.049352] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    2.049357] pci_bus 0000:00: resource 7 [mem 0x80000000-0xdfffffff window]
[    2.049362] pci_bus 0000:00: resource 8 [mem 0xf0000000-0xfebfffff window]
[    2.049368] pci_bus 0000:00: resource 9 [mem 0x800000000-0xfffffffff window]
[    2.049374] pci_bus 0000:01: resource 0 [io  0x1000-0x1fff]
[    2.049378] pci_bus 0000:01: resource 1 [mem 0x89a00000-0x89bfffff]
[    2.049383] pci_bus 0000:01: resource 2 [mem 0x800000000-0x8000fffff 64bit pref]
[    2.049389] pci_bus 0000:02: resource 0 [io  0x2000-0x2fff]
[    2.049394] pci_bus 0000:02: resource 1 [mem 0x89800000-0x899fffff]
[    2.049398] pci_bus 0000:02: resource 2 [mem 0x800700000-0x8008fffff 64bit pref]
[    2.049404] pci_bus 0000:03: resource 0 [io  0x3000-0x3fff]
[    2.049409] pci_bus 0000:03: resource 1 [mem 0x89600000-0x897fffff]
[    2.049414] pci_bus 0000:03: resource 2 [mem 0x800100000-0x8001fffff 64bit pref]
[    2.049420] pci_bus 0000:04: resource 0 [io  0x4000-0x4fff]
[    2.049424] pci_bus 0000:04: resource 1 [mem 0x89400000-0x895fffff]
[    2.049429] pci_bus 0000:04: resource 2 [mem 0x800200000-0x8002fffff 64bit pref]
[    2.049435] pci_bus 0000:05: resource 0 [io  0x5000-0x5fff]
[    2.049439] pci_bus 0000:05: resource 1 [mem 0x89200000-0x893fffff]
[    2.049444] pci_bus 0000:05: resource 2 [mem 0x800300000-0x8003fffff 64bit pref]
[    2.049450] pci_bus 0000:06: resource 0 [io  0x7000-0x7fff]
[    2.049454] pci_bus 0000:06: resource 1 [mem 0x89000000-0x891fffff]
[    2.049459] pci_bus 0000:06: resource 2 [mem 0x800400000-0x8004fffff 64bit pref]
[    2.049465] pci_bus 0000:07: resource 0 [io  0x8000-0x8fff]
[    2.049470] pci_bus 0000:07: resource 1 [mem 0x88e00000-0x88ffffff]
[    2.049475] pci_bus 0000:07: resource 2 [mem 0x800900000-0x800afffff 64bit pref]
[    2.049480] pci_bus 0000:08: resource 0 [io  0x9000-0x9fff]
[    2.049485] pci_bus 0000:08: resource 1 [mem 0x88c00000-0x88dfffff]
[    2.049490] pci_bus 0000:08: resource 2 [mem 0x800500000-0x8005fffff 64bit pref]
[    2.049495] pci_bus 0000:09: resource 0 [io  0xa000-0xafff]
[    2.049500] pci_bus 0000:09: resource 1 [mem 0x88a00000-0x88bfffff]
[    2.049505] pci_bus 0000:09: resource 2 [mem 0x800600000-0x8006fffff 64bit pref]
[    2.049511] pci_bus 0000:0a: resource 0 [io  0xb000-0xbfff]
[    2.049518] pci_bus 0000:0a: resource 1 [mem 0x88800000-0x889fffff]
[    2.049522] pci_bus 0000:0a: resource 2 [mem 0x800b00000-0x800cfffff 64bit pref]
[    2.049528] pci_bus 0000:0b: resource 0 [io  0xc000-0xcfff]
[    2.049533] pci_bus 0000:0b: resource 1 [mem 0x88600000-0x887fffff]
[    2.049537] pci_bus 0000:0b: resource 2 [mem 0x800d00000-0x800efffff 64bit pref]
[    2.049543] pci_bus 0000:0c: resource 0 [io  0xd000-0xdfff]
[    2.049548] pci_bus 0000:0c: resource 1 [mem 0x88400000-0x885fffff]
[    2.049552] pci_bus 0000:0c: resource 2 [mem 0x800f00000-0x8010fffff 64bit pref]
[    2.049558] pci_bus 0000:0d: resource 0 [io  0xe000-0xefff]
[    2.049562] pci_bus 0000:0d: resource 1 [mem 0x88200000-0x883fffff]
[    2.049567] pci_bus 0000:0d: resource 2 [mem 0x801100000-0x8012fffff 64bit pref]
[    2.049572] pci_bus 0000:0e: resource 0 [io  0xf000-0xffff]
[    2.049577] pci_bus 0000:0e: resource 1 [mem 0x88000000-0x881fffff]
[    2.049582] pci_bus 0000:0e: resource 2 [mem 0x801300000-0x8014fffff 64bit pref]
[    2.072930] ACPI: \_SB_.GSIG: Enabled at IRQ 22
[    2.111712] pci 0000:02:00.0: quirk_usb_early_handoff+0x0/0x8b0 took 59757 usecs
[    2.111845] PCI: CLS 0 bytes, default 64
[    2.111902] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    2.111906] software IO TLB: mapped [mem 0x0000000076fbe000-0x000000007afbe000] (64MB)
[    2.112061] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x328211acd6a, max_idle_ns: 440795259903 ns
[    2.112736] Trying to unpack rootfs image as initramfs...
[    2.116521] Initialise system trusted keyrings
[    2.116656] Key type blacklist registered
[    2.116996] workingset: timestamp_bits=36 max_order=21 bucket_order=0
[    2.119214] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    2.121134] fuse: init (API version 7.39)
[    2.122656] integrity: Platform Keyring initialized
[    2.122713] integrity: Machine keyring initialized
[    2.176897] Key type asymmetric registered
[    2.176911] Asymmetric key parser 'x509' registered
[    2.177434] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 243)
[    2.177873] io scheduler mq-deadline registered
[    2.210143] pcieport 0000:00:02.0: PME: Signaling with IRQ 24
[    2.212122] pcieport 0000:00:02.0: AER: enabled with IRQ 24
[    2.215145] pcieport 0000:00:02.1: PME: Signaling with IRQ 25
[    2.216586] pcieport 0000:00:02.1: AER: enabled with IRQ 25
[    2.242933] pcieport 0000:00:02.2: PME: Signaling with IRQ 26
[    2.244100] pcieport 0000:00:02.2: AER: enabled with IRQ 26
[    2.274325] pcieport 0000:00:02.3: PME: Signaling with IRQ 27
[    2.275463] pcieport 0000:00:02.3: AER: enabled with IRQ 27
[    2.301755] pcieport 0000:00:02.4: PME: Signaling with IRQ 28
[    2.302966] pcieport 0000:00:02.4: AER: enabled with IRQ 28
[    2.329016] pcieport 0000:00:02.5: PME: Signaling with IRQ 29
[    2.330210] pcieport 0000:00:02.5: AER: enabled with IRQ 29
[    2.360039] pcieport 0000:00:02.6: PME: Signaling with IRQ 30
[    2.361388] pcieport 0000:00:02.6: AER: enabled with IRQ 30
[    2.387156] pcieport 0000:00:02.7: PME: Signaling with IRQ 31
[    2.388314] pcieport 0000:00:02.7: AER: enabled with IRQ 31
[    2.416557] ACPI: \_SB_.GSIH: Enabled at IRQ 23
[    2.418269] pcieport 0000:00:03.0: PME: Signaling with IRQ 32
[    2.419328] pcieport 0000:00:03.0: AER: enabled with IRQ 32
[    2.445210] pcieport 0000:00:03.1: PME: Signaling with IRQ 33
[    2.446218] pcieport 0000:00:03.1: AER: enabled with IRQ 33
[    2.479760] pcieport 0000:00:03.2: PME: Signaling with IRQ 34
[    2.480971] pcieport 0000:00:03.2: AER: enabled with IRQ 34
[    2.506871] pcieport 0000:00:03.3: PME: Signaling with IRQ 35
[    2.508503] pcieport 0000:00:03.3: AER: enabled with IRQ 35
[    2.534314] pcieport 0000:00:03.4: PME: Signaling with IRQ 36
[    2.536588] pcieport 0000:00:03.4: AER: enabled with IRQ 36
[    2.569791] pcieport 0000:00:03.5: PME: Signaling with IRQ 37
[    2.570960] pcieport 0000:00:03.5: AER: enabled with IRQ 37
[    2.571895] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    2.572742] efifb: probing for efifb
[    2.572854] efifb: showing boot graphics
[    2.574385] efifb: framebuffer at 0x84000000, using 3072k, total 3072k
[    2.574392] efifb: mode is 1024x768x32, linelength=4096, pages=1
[    2.574396] efifb: scrolling: redraw
[    2.574398] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    2.575103] fbcon: Deferring console take-over
[    2.575108] fb0: EFI VGA frame buffer device
[    2.576058] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[    2.576746] ACPI: button: Power Button [PWRF]
[    2.766246] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    2.790833] 00:00: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    2.843463] Linux agpgart interface v0.103
[    2.879532] loop: module loaded
[    2.881697] tun: Universal TUN/TAP device driver, 1.6
[    2.882168] PPP generic driver version 2.4.2
[    2.883608] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
[    2.884547] serio: i8042 KBD port at 0x60,0x64 irq 1
[    2.884578] serio: i8042 AUX port at 0x60,0x64 irq 12
[    2.885428] mousedev: PS/2 mouse device common for all mice
[    2.886454] rtc_cmos 00:03: RTC can wake from S4
[    2.887141] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1
[    2.889000] rtc_cmos 00:03: registered as rtc0
[    2.889067] rtc_cmos 00:03: setting system clock to 2024-01-11T10:02:30 UTC (1704967350)
[    2.889390] rtc_cmos 00:03: alarms up to one day, y3k, 242 bytes nvram
[    2.889481] i2c_dev: i2c /dev entries driver
[    2.889772] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[    2.889820] device-mapper: uevent: version 1.0.3
[    2.890454] device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@redhat.com
[    2.890470] intel_pstate: CPU model not supported
[    2.893870] ledtrig-cpu: registered to indicate activity on CPUs
[    2.895501] NET: Registered PF_INET6 protocol family
[    6.067580] Freeing initrd memory: 71124K
[    6.096635] Segment Routing with IPv6
[    6.096725] In-situ OAM (IOAM) with IPv6
[    6.096840] NET: Registered PF_PACKET protocol family
[    6.097130] Key type dns_resolver registered
[    6.099635] IPI shorthand broadcast: enabled
[    6.138374] sched_clock: Marking stable (6136002820, 1614059)->(6224867353, -87250474)
[    6.139525] registered taskstats version 1
[    6.140186] Loading compiled-in X.509 certificates
[    6.142932] Loaded X.509 cert 'Build time autogenerated kernel key: 6bf7f016fb3f6df81ed8362a07357c17158fcd93'
[    6.193386] Key type .fscrypt registered
[    6.193392] Key type fscrypt-provisioning registered
[    6.264821] Key type encrypted registered
[    6.264835] AppArmor: AppArmor sha1 policy hashing enabled
[    6.265367] integrity: Loading X.509 certificate: UEFI:db
[    6.265721] integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
[    6.265726] integrity: Loading X.509 certificate: UEFI:db
[    6.266027] integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
[    6.266396] ima: No TPM chip found, activating TPM-bypass!
[    6.266416] Loading compiled-in module X.509 certificates
[    6.268712] Loaded X.509 cert 'Build time autogenerated kernel key: 6bf7f016fb3f6df81ed8362a07357c17158fcd93'
[    6.268725] ima: Allocated hash algorithm: sha1
[    6.268788] ima: No architecture policies found
[    6.268954] evm: Initialising EVM extended attributes:
[    6.268958] evm: security.selinux
[    6.268960] evm: security.SMACK64
[    6.268963] evm: security.SMACK64EXEC
[    6.268965] evm: security.SMACK64TRANSMUTE
[    6.268967] evm: security.SMACK64MMAP
[    6.268970] evm: security.apparmor
[    6.268972] evm: security.ima
[    6.268974] evm: security.capability
[    6.268977] evm: HMAC attrs: 0x1
[    6.274082] PM:   Magic number: 8:814:21
[    6.274222] memory memory61: hash matches
[    6.276081] RAS: Correctable Errors collector initialized.
[    6.276132] clk: Disabling unused clocks
[    6.278059] Freeing unused decrypted memory: 2028K
[    6.279577] Freeing unused kernel image (initmem) memory: 3040K
[    6.293849] Write protecting the kernel read-only data: 32768k
[    6.295634] Freeing unused kernel image (rodata/data gap) memory: 1328K
[    6.412238] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    6.412248] x86/mm: Checking user space page tables
[    6.521389] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    6.521435] Run /init as init process
[    6.521440]   with arguments:
[    6.521444]     /init
[    6.521446]   with environment:
[    6.521449]     HOME=/
[    6.521451]     TERM=linux
[    6.521454]     BOOT_IMAGE=/boot/vmlinuz-6.7.0-x64v3-dbg-dirty
[    7.485520] virtio_blk virtio2: 4/0/0 default/read/poll queues
[    7.495913] virtio_blk virtio2: [vda] 83886080 512-byte logical blocks (42.9 GB/40.0 GiB)
[    7.536367] xhci_hcd 0000:02:00.0: xHCI Host Controller
[    7.536480] xhci_hcd 0000:02:00.0: new USB bus registered, assigned bus number 1
[    7.537082] xhci_hcd 0000:02:00.0: hcc params 0x00087001 hci version 0x100 quirks 0x0000000000000010
[    7.541160] lpc_ich 0000:00:1f.0: I/O space for GPIO uninitialized
[    7.546723]  vda: vda1 vda2 vda3
[    7.556379] virtio_blk virtio5: 4/0/0 default/read/poll queues
[    7.561995] ACPI: bus type drm_connector registered
[    7.579143] virtio_blk virtio5: [vdb] 3907035136 512-byte logical blocks (2.00 TB/1.82 TiB)
[    7.594602] xhci_hcd 0000:02:00.0: xHCI Host Controller
[    7.594666] xhci_hcd 0000:02:00.0: new USB bus registered, assigned bus number 2
[    7.594703] xhci_hcd 0000:02:00.0: Host supports USB 3.0 SuperSpeed
[    7.595768] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.07
[    7.595780] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    7.595786] usb usb1: Product: xHCI Host Controller
[    7.595794] usb usb1: Manufacturer: Linux 6.7.0-x64v3-dbg-dirty xhci-hcd
[    7.595800] usb usb1: SerialNumber: 0000:02:00.0
[    7.603240] ACPI: \_SB_.GSIA: Enabled at IRQ 16
[    7.603672] i801_smbus 0000:00:1f.3: Enabling SMBus device
[    7.603906] i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
[    7.604199] hub 1-0:1.0: USB hub found
[    7.604529] hub 1-0:1.0: 15 ports detected
[    7.605458] i2c i2c-0: 1/1 memory slots populated (from DMI)
[    7.605466] i2c i2c-0: Memory type 0x07 not supported yet, not instantiating SPD
[    7.628774] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[    7.630040] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.07
[    7.630050] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    7.630057] usb usb2: Product: xHCI Host Controller
[    7.630062] usb usb2: Manufacturer: Linux 6.7.0-x64v3-dbg-dirty xhci-hcd
[    7.630068] usb usb2: SerialNumber: 0000:02:00.0
[    7.640797] hub 2-0:1.0: USB hub found
[    7.640958] ahci 0000:00:1f.2: version 3.0
[    7.641942] hub 2-0:1.0: 15 ports detected
[    7.687587] ahci 0000:00:1f.2: AHCI 0001.0000 32 slots 6 ports 1.5 Gbps 0x3f impl SATA mode
[    7.687602] ahci 0000:00:1f.2: flags: 64bit ncq only 
[    7.696298] virtio_net virtio0 enp1s0: renamed from eth0
[    7.718998] scsi host0: ahci
[    7.722744] scsi host1: ahci
[    7.726404] scsi host2: ahci
[    7.737035] scsi host3: ahci
[    7.740081] ACPI: \_SB_.GSIF: Enabled at IRQ 21
[    7.743403] qxl 0000:00:01.0: vgaarb: deactivate vga console
[    7.743731] [drm] Device Version 0.0
[    7.743737] [drm] Compression level 0 log level 0
[    7.743741] [drm] 12286 io pages at offset 0x1000000
[    7.743745] [drm] 16777216 byte draw area at offset 0x0
[    7.743749] [drm] RAM header offset: 0x3ffe000
[    7.744663] scsi host4: ahci
[    7.744862] [drm] qxl: 16M of VRAM memory size
[    7.744867] [drm] qxl: 63M of IO pages memory ready (VRAM domain)
[    7.744871] [drm] qxl: 64M of Surface memory size
[    7.747136] [drm] slot 0 (main): base 0x84000000, size 0x03ffe000
[    7.747246] [drm] slot 1 (surfaces): base 0x80000000, size 0x04000000
[    7.747752] scsi host5: ahci
[    7.750224] ata1: SATA max UDMA/133 abar m4096@0x89c46000 port 0x89c46100 irq 58 lpm-pol 0
[    7.750241] ata2: SATA max UDMA/133 abar m4096@0x89c46000 port 0x89c46180 irq 58 lpm-pol 0
[    7.750253] ata3: SATA max UDMA/133 abar m4096@0x89c46000 port 0x89c46200 irq 58 lpm-pol 0
[    7.750264] ata4: SATA max UDMA/133 abar m4096@0x89c46000 port 0x89c46280 irq 58 lpm-pol 0
[    7.750274] ata5: SATA max UDMA/133 abar m4096@0x89c46000 port 0x89c46300 irq 58 lpm-pol 0
[    7.750285] ata6: SATA max UDMA/133 abar m4096@0x89c46000 port 0x89c46380 irq 58 lpm-pol 0
[    7.757068] [drm] Initialized qxl 0.1.0 20120117 for 0000:00:01.0 on minor 0
[    7.761936] fbcon: qxldrmfb (fb0) is primary device
[    7.761943] fbcon: Deferring console take-over
[    7.761950] qxl 0000:00:01.0: [drm] fb0: qxldrmfb frame buffer device
[    7.881914] usb 1-1: new high-speed USB device number 2 using xhci_hcd
[    8.032028] usb 1-1: New USB device found, idVendor=0627, idProduct=0001, bcdDevice= 0.00
[    8.032053] usb 1-1: New USB device strings: Mfr=1, Product=3, SerialNumber=10
[    8.032069] usb 1-1: Product: QEMU USB Tablet
[    8.032082] usb 1-1: Manufacturer: QEMU
[    8.032094] usb 1-1: SerialNumber: 28754-0000:00:02.1:00.0-1
[    8.062162] ata4: SATA link down (SStatus 0 SControl 300)
[    8.062427] ata3: SATA link down (SStatus 0 SControl 300)
[    8.066751] ata5: SATA link down (SStatus 0 SControl 300)
[    8.067044] ata2: SATA link down (SStatus 0 SControl 300)
[    8.067360] ata6: SATA link down (SStatus 0 SControl 300)
[    8.067629] ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    8.067913] ata1.00: ATAPI: QEMU DVD-ROM, 2.5+, max UDMA/100
[    8.067940] ata1.00: applying bridge limits
[    8.068186] ata1.00: configured for UDMA/100
[    8.070859] scsi 0:0:0:0: CD-ROM            QEMU     QEMU DVD-ROM     2.5+ PQ: 0 ANSI: 5
[    8.114826] hid: raw HID events driver (C) Jiri Kosina
[    8.158627] sr 0:0:0:0: [sr0] scsi3-mmc drive: 4x/4x cd/rw xa/form2 tray
[    8.158680] cdrom: Uniform CD-ROM driver Revision: 3.20
[    8.204836] sr 0:0:0:0: Attached scsi CD-ROM sr0
[    8.207121] sr 0:0:0:0: Attached scsi generic sg0 type 5
[    8.250745] usbcore: registered new interface driver usbhid
[    8.250763] usbhid: USB HID core driver
[    8.275328] input: QEMU QEMU USB Tablet as /devices/pci0000:00/0000:00:02.1/0000:02:00.0/usb1/1-1/1-1:1.0/0003:0627:0001.0001/input/input4
[    8.278778] hid-generic 0003:0627:0001.0001: input,hidraw0: USB HID v0.01 Mouse [QEMU QEMU USB Tablet] on usb-0000:02:00.0-1/input0
[    8.626419] input: ImExPS/2 Generic Explorer Mouse as /devices/platform/i8042/serio1/input/input3
[    8.741692] raid6: avx2x4   gen() 15616 MB/s
[    8.809639] raid6: avx2x2   gen() 10811 MB/s
[    8.877652] raid6: avx2x1   gen()  5774 MB/s
[    8.877658] raid6: using algorithm avx2x4 gen() 15616 MB/s
[    8.945666] raid6: .... xor() 11295 MB/s, rmw enabled
[    8.945670] raid6: using avx2x2 recovery algorithm
[    8.950040] xor: automatically using best checksumming function   avx       
[    9.099353] Btrfs loaded, zoned=yes, fsverity=yes
[    9.302559] PM: Image not found (code -22)
[    9.383734] fbcon: Taking over console
[    9.388964] Console: switching to colour frame buffer device 128x48
[    9.408008] EXT4-fs (vda2): mounted filesystem 5d5180c8-c108-490a-ba5e-16e23b89e553 ro with ordered data mode. Quota mode: none.
[   10.850918] pstore: Using crash dump compression: deflate
[   10.857900] pstore: Registered efi_pstore as persistent store backend
[   10.996120] lp: driver loaded but no devices found
[   11.037829] ppdev: user-space parallel port driver
[   11.062146] EXT4-fs (vda2): re-mounted 5d5180c8-c108-490a-ba5e-16e23b89e553 r/w. Quota mode: none.
[   12.639757] Adding 999420k swap on /dev/vda3.  Priority:-2 extents:1 across:999420k 
[   12.721781] BTRFS: device fsid 1e4fb969-7384-48fb-9377-6fb8817279ee devid 1 transid 38228 /dev/vdb scanned by mount (369)
[   12.800400] BTRFS info (device vdb): first mount of filesystem 1e4fb969-7384-48fb-9377-6fb8817279ee
[   12.800434] BTRFS info (device vdb): using crc32c (crc32c-intel) checksum algorithm
[   12.800448] BTRFS info (device vdb): enabling auto defrag
[   12.800455] BTRFS info (device vdb): force zstd compression, level 3
[   12.800462] BTRFS info (device vdb): using free space tree
[   13.023133] virtiofs virtio6: virtio_fs_setup_dax: No cache capability
[   13.065897] iTCO_vendor_support: vendor-support=0
[   13.139224] iTCO_wdt iTCO_wdt.1.auto: Found a ICH9 TCO device (Version=2, TCOBASE=0x0660)
[   13.198435] iTCO_wdt iTCO_wdt.1.auto: initialized. heartbeat=30 sec (nowayout=0)
[   13.220453] input: PC Speaker as /devices/platform/pcspkr/input/input5
[   13.277904] BTRFS info (device vdb): auto enabling async discard
[   13.366869] audit: type=1400 audit(1704967360.976:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lsb_release" pid=413 comm="apparmor_parser"
[   13.372211] audit: type=1400 audit(1704967360.980:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe" pid=416 comm="apparmor_parser"
[   13.372235] audit: type=1400 audit(1704967360.980:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe//kmod" pid=416 comm="apparmor_parser"
[   13.380851] audit: type=1400 audit(1704967360.988:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="mariadbd_akonadi" pid=414 comm="apparmor_parser"
[   13.387837] audit: type=1400 audit(1704967360.996:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="mysqld_akonadi" pid=415 comm="apparmor_parser"
[   13.431984] audit: type=1400 audit(1704967361.040:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="postgresql_akonadi" pid=424 comm="apparmor_parser"
[   13.447604] RAPL PMU: API unit is 2^-32 Joules, 0 fixed counters, 10737418240 ms ovfl timer
[   13.452330] audit: type=1400 audit(1704967361.060:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/man" pid=427 comm="apparmor_parser"
[   13.453798] audit: type=1400 audit(1704967361.060:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_filter" pid=427 comm="apparmor_parser"
[   13.453822] audit: type=1400 audit(1704967361.060:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_groff" pid=427 comm="apparmor_parser"
[   13.455106] audit: type=1400 audit(1704967361.064:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/akonadiserver" pid=426 comm="apparmor_parser"
[   13.557681] cryptd: max_cpu_qlen set to 1000
[   13.577233] Error: Driver 'pcspkr' is already registered, aborting...
[   13.745347] AVX2 version of gcm_enc/dec engaged.
[   13.745465] AES CTR mode by8 optimization enabled
[   13.837980] snd_hda_codec_generic hdaudioC0D0: autoconfig for Generic: line_outs=1 (0x3/0x0/0x0/0x0/0x0) type:line
[   13.837998] snd_hda_codec_generic hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[   13.838007] snd_hda_codec_generic hdaudioC0D0:    hp_outs=0 (0x0/0x0/0x0/0x0/0x0)
[   13.838015] snd_hda_codec_generic hdaudioC0D0:    mono: mono_out=0x0
[   13.838020] snd_hda_codec_generic hdaudioC0D0:    inputs:
[   13.838026] snd_hda_codec_generic hdaudioC0D0:      Line=0x5
[   14.655314] NET: Registered PF_QIPCRTR protocol family
[  362.324797] BTRFS info (device vdb): balance: start -d -m -s
[  362.328310] BTRFS info (device vdb): relocating block group 2533779046400 flags system|dup
[  362.396265] BTRFS info (device vdb): found 3 extents, stage: move data extents
[  362.417575] BTRFS info (device vdb): relocating block group 2532705304576 flags data
[  386.955720] BTRFS info (device vdb): found 4 extents, stage: move data extents
[  387.727611] BTRFS info (device vdb): found 4 extents, stage: update data pointers
[  388.105995] BTRFS info (device vdb): relocating block group 2531631562752 flags data
[  410.721745] BTRFS info (device vdb): found 4 extents, stage: move data extents
[  411.163732] BTRFS info (device vdb): found 4 extents, stage: update data pointers
[  411.535108] BTRFS info (device vdb): relocating block group 2530557820928 flags data
[  434.243893] BTRFS info (device vdb): found 4 extents, stage: move data extents
[  434.722784] BTRFS info (device vdb): found 4 extents, stage: update data pointers
[  435.103721] BTRFS info (device vdb): relocating block group 2529484079104 flags data
[  457.907102] BTRFS info (device vdb): found 4 extents, stage: move data extents
[  458.438200] BTRFS info (device vdb): found 4 extents, stage: update data pointers
[  458.832276] BTRFS info (device vdb): relocating block group 2528410337280 flags data
[  482.003912] BTRFS info (device vdb): found 4 extents, stage: move data extents
[  482.515995] BTRFS info (device vdb): found 4 extents, stage: update data pointers
[  482.907603] BTRFS info (device vdb): relocating block group 2527336595456 flags data
[  505.443047] BTRFS info (device vdb): found 4 extents, stage: move data extents
[  505.917905] BTRFS info (device vdb): found 4 extents, stage: update data pointers
[  506.261066] BTRFS info (device vdb): relocating block group 2526262853632 flags data
[  528.374499] BTRFS info (device vdb): found 4 extents, stage: move data extents
[  528.830807] BTRFS info (device vdb): found 4 extents, stage: update data pointers
[  529.161416] BTRFS info (device vdb): relocating block group 2525189111808 flags data
[  551.886870] BTRFS info (device vdb): found 4 extents, stage: move data extents
[  552.400280] BTRFS info (device vdb): found 4 extents, stage: update data pointers
[  552.787327] BTRFS info (device vdb): relocating block group 2524115369984 flags data
[  575.230051] BTRFS info (device vdb): found 4 extents, stage: move data extents
[  575.705145] BTRFS info (device vdb): found 4 extents, stage: update data pointers
[  576.054946] BTRFS info (device vdb): relocating block group 2523041628160 flags data
[  595.037306] BTRFS info (device vdb): found 6 extents, stage: move data extents
[  595.626948] BTRFS info (device vdb): found 6 extents, stage: update data pointers
[  595.985417] BTRFS info (device vdb): relocating block group 2521967886336 flags data
[  618.330055] BTRFS info (device vdb): found 4 extents, stage: move data extents
[  618.857827] BTRFS info (device vdb): found 4 extents, stage: update data pointers
[  619.259424] BTRFS info (device vdb): relocating block group 2520894144512 flags data
[  643.371802] BTRFS info (device vdb): found 4 extents, stage: move data extents
[  643.874356] BTRFS info (device vdb): found 4 extents, stage: update data pointers
[  644.242538] BTRFS info (device vdb): relocating block group 2519820402688 flags data
[  667.212735] BTRFS info (device vdb): found 4 extents, stage: move data extents
[  667.698998] BTRFS info (device vdb): found 4 extents, stage: update data pointers
[  668.046270] BTRFS info (device vdb): relocating block group 2518746660864 flags data
[  691.664086] BTRFS info (device vdb): found 4 extents, stage: move data extents
[  692.271071] BTRFS info (device vdb): found 4 extents, stage: update data pointers
[  692.686504] BTRFS info (device vdb): relocating block group 2517672919040 flags data
[  717.641782] BTRFS info (device vdb): found 4 extents, stage: move data extents
[  718.170783] BTRFS info (device vdb): found 4 extents, stage: update data pointers
[  718.550591] BTRFS info (device vdb): relocating block group 2516599177216 flags data
[  741.882957] BTRFS info (device vdb): found 4 extents, stage: move data extents
[  742.489754] BTRFS info (device vdb): found 4 extents, stage: update data pointers
[  742.882177] BTRFS info (device vdb): relocating block group 2515525435392 flags metadata|dup
[  901.437989] BTRFS info (device vdb): found 36617 extents, stage: move data extents
[  963.937678] BTRFS info (device vdb): relocating block group 2514451693568 flags metadata|dup
[ 1070.891234] workqueue: inode_switch_wbs_work_fn hogged CPU for >10000us 4 times, consider switching to WQ_UNBOUND
[ 1265.459045] BTRFS info (device vdb): found 61499 extents, stage: move data extents
[ 1376.366403] BTRFS info (device vdb): relocating block group 2514418139136 flags system|dup
[ 1376.415382] BTRFS info (device vdb): found 12 extents, stage: move data extents
[ 1376.437359] BTRFS info (device vdb): relocating block group 2513344397312 flags metadata|dup
[ 1494.736841] workqueue: inode_switch_wbs_work_fn hogged CPU for >10000us 8 times, consider switching to WQ_UNBOUND
[ 1661.138940] BTRFS info (device vdb): found 63290 extents, stage: move data extents
[ 1770.145076] BTRFS info (device vdb): relocating block group 2505761095680 flags data
[ 1791.278720] BTRFS info (device vdb): found 10801 extents, stage: move data extents
[ 1798.207988] BTRFS info (device vdb): found 10801 extents, stage: update data pointers
[ 1802.226310] BTRFS info (device vdb): relocating block group 2504687353856 flags data
[ 1839.361272] BTRFS info (device vdb): found 18521 extents, stage: move data extents
[ 1847.134253] BTRFS info (device vdb): found 18521 extents, stage: update data pointers
[ 1851.598740] BTRFS info (device vdb): relocating block group 2503613612032 flags data
[ 1889.662110] BTRFS info (device vdb): found 18767 extents, stage: move data extents
[ 1897.826045] BTRFS info (device vdb): found 18767 extents, stage: update data pointers
[ 1902.544717] BTRFS info (device vdb): relocating block group 2502539870208 flags data
[ 1915.105498] workqueue: drm_fb_helper_damage_work [drm_kms_helper] hogged CPU for >10000us 4 times, consider switching to WQ_UNBOUND
[ 1940.835782] BTRFS info (device vdb): found 18774 extents, stage: move data extents
[ 1948.300269] BTRFS info (device vdb): found 18774 extents, stage: update data pointers
[ 1952.686721] BTRFS info (device vdb): relocating block group 2501466128384 flags data
[ 1987.061360] BTRFS info (device vdb): found 18870 extents, stage: move data extents
[ 1994.409549] BTRFS info (device vdb): found 18870 extents, stage: update data pointers
[ 1998.533197] BTRFS info (device vdb): relocating block group 2500392386560 flags data
[ 2033.302639] BTRFS info (device vdb): found 18839 extents, stage: move data extents
[ 2040.568114] BTRFS info (device vdb): found 18839 extents, stage: update data pointers
[ 2044.647035] BTRFS info (device vdb): relocating block group 2499318644736 flags data
[ 2080.434967] BTRFS info (device vdb): found 18778 extents, stage: move data extents
[ 2088.016802] BTRFS info (device vdb): found 18778 extents, stage: update data pointers
[ 2092.416624] BTRFS info (device vdb): relocating block group 2498244902912 flags data
[ 2127.072524] BTRFS info (device vdb): found 18612 extents, stage: move data extents
[ 2134.461706] BTRFS info (device vdb): found 18612 extents, stage: update data pointers
[ 2138.406955] BTRFS info (device vdb): relocating block group 2497171161088 flags data
[ 2173.990678] BTRFS info (device vdb): found 18665 extents, stage: move data extents
[ 2180.759654] BTRFS info (device vdb): found 18665 extents, stage: update data pointers
[ 2184.617056] BTRFS info (device vdb): relocating block group 2496097419264 flags data
[ 2223.374196] BTRFS info (device vdb): found 21319 extents, stage: move data extents
[ 2231.977073] BTRFS info (device vdb): found 21319 extents, stage: update data pointers
[ 2236.873306] BTRFS info (device vdb): relocating block group 2495023677440 flags data
[ 2277.529429] BTRFS info (device vdb): found 31024 extents, stage: move data extents
[ 2288.376462] BTRFS info (device vdb): found 31024 extents, stage: update data pointers
[ 2294.644698] BTRFS info (device vdb): relocating block group 2493949935616 flags data
[ 2333.686152] BTRFS info (device vdb): found 25640 extents, stage: move data extents
[ 2342.789169] BTRFS info (device vdb): found 25640 extents, stage: update data pointers
[ 2348.224972] BTRFS info (device vdb): relocating block group 2492876193792 flags data
[ 2387.607099] BTRFS info (device vdb): found 24745 extents, stage: move data extents
[ 2396.989341] BTRFS info (device vdb): found 24745 extents, stage: update data pointers
[ 2402.514208] BTRFS info (device vdb): relocating block group 2491802451968 flags data
[ 2426.286749] workqueue: drm_fb_helper_damage_work [drm_kms_helper] hogged CPU for >10000us 8 times, consider switching to WQ_UNBOUND
[ 2442.647357] BTRFS info (device vdb): found 23943 extents, stage: move data extents
[ 2452.070853] BTRFS info (device vdb): found 23943 extents, stage: update data pointers
[ 2457.203284] BTRFS info (device vdb): relocating block group 2490728710144 flags data
[ 2495.981481] BTRFS info (device vdb): found 24304 extents, stage: move data extents
[ 2505.660843] BTRFS info (device vdb): found 24304 extents, stage: update data pointers
[ 2510.833615] BTRFS info (device vdb): relocating block group 2489654968320 flags data
[ 2551.391476] BTRFS info (device vdb): found 23592 extents, stage: move data extents
[ 2560.716904] BTRFS info (device vdb): found 23592 extents, stage: update data pointers
[ 2565.628818] BTRFS info (device vdb): relocating block group 2488581226496 flags data
[ 2592.707300] BTRFS info (device vdb): found 2053 extents, stage: move data extents
[ 2594.273462] BTRFS info (device vdb): found 2053 extents, stage: update data pointers
[ 2595.177409] BTRFS info (device vdb): relocating block group 2487507484672 flags data
[ 2620.451728] BTRFS info (device vdb): found 2049 extents, stage: move data extents
[ 2621.703391] BTRFS info (device vdb): found 2049 extents, stage: update data pointers
[ 2622.456523] BTRFS info (device vdb): relocating block group 2486433742848 flags data
[ 2648.196464] BTRFS info (device vdb): found 2049 extents, stage: move data extents
[ 2649.360160] BTRFS info (device vdb): found 2049 extents, stage: update data pointers
[ 2650.083717] BTRFS info (device vdb): relocating block group 2485360001024 flags data
[ 2674.887324] BTRFS info (device vdb): found 2049 extents, stage: move data extents
[ 2676.276278] BTRFS info (device vdb): found 2049 extents, stage: update data pointers
[ 2677.109894] BTRFS info (device vdb): relocating block group 2484286259200 flags data
[ 2702.950383] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[ 2704.089956] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[ 2704.760431] BTRFS info (device vdb): relocating block group 2483212517376 flags data
[ 2730.001070] BTRFS info (device vdb): found 2050 extents, stage: move data extents
[ 2731.220182] BTRFS info (device vdb): found 2050 extents, stage: update data pointers
[ 2731.926380] BTRFS info (device vdb): relocating block group 2482138775552 flags data
[ 2757.006891] BTRFS info (device vdb): found 2051 extents, stage: move data extents
[ 2758.276004] BTRFS info (device vdb): found 2051 extents, stage: update data pointers
[ 2759.014474] BTRFS info (device vdb): relocating block group 2481065033728 flags data
[ 2784.650587] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[ 2785.823510] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[ 2786.556973] BTRFS info (device vdb): relocating block group 2479991291904 flags data
[ 2811.414779] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[ 2812.540072] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[ 2813.230138] BTRFS info (device vdb): relocating block group 2478917550080 flags data
[ 2838.486549] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[ 2839.604107] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[ 2840.351816] BTRFS info (device vdb): relocating block group 2477843808256 flags data
[ 2865.772734] BTRFS info (device vdb): found 2049 extents, stage: move data extents
[ 2866.938343] BTRFS info (device vdb): found 2049 extents, stage: update data pointers
[ 2867.636138] BTRFS info (device vdb): relocating block group 2476770066432 flags data
[ 2893.512616] BTRFS info (device vdb): found 2050 extents, stage: move data extents
[ 2894.762411] BTRFS info (device vdb): found 2050 extents, stage: update data pointers
[ 2895.467513] BTRFS info (device vdb): relocating block group 2475696324608 flags data
[ 2920.773761] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[ 2921.911880] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[ 2922.603533] BTRFS info (device vdb): relocating block group 2474622582784 flags data
[ 2948.015679] BTRFS info (device vdb): found 2085 extents, stage: move data extents
[ 2951.139623] BTRFS info (device vdb): found 2085 extents, stage: update data pointers
[ 2952.882745] BTRFS info (device vdb): relocating block group 2473548840960 flags data
[ 2978.283765] BTRFS info (device vdb): found 2050 extents, stage: move data extents
[ 2979.654567] BTRFS info (device vdb): found 2050 extents, stage: update data pointers
[ 2980.531077] BTRFS info (device vdb): relocating block group 2472475099136 flags data
[ 3007.703763] BTRFS info (device vdb): found 2049 extents, stage: move data extents
[ 3008.945488] BTRFS info (device vdb): found 2049 extents, stage: update data pointers
[ 3009.784185] BTRFS info (device vdb): relocating block group 2471401357312 flags data
[ 3035.937554] BTRFS info (device vdb): found 2049 extents, stage: move data extents
[ 3037.113656] BTRFS info (device vdb): found 2049 extents, stage: update data pointers
[ 3037.853315] BTRFS info (device vdb): relocating block group 2470327615488 flags data
[ 3064.613034] BTRFS info (device vdb): found 2051 extents, stage: move data extents
[ 3066.121179] BTRFS info (device vdb): found 2051 extents, stage: update data pointers
[ 3067.110516] BTRFS info (device vdb): relocating block group 2469253873664 flags data
[ 3092.851025] BTRFS info (device vdb): found 2050 extents, stage: move data extents
[ 3094.157415] BTRFS info (device vdb): found 2050 extents, stage: update data pointers
[ 3094.905282] BTRFS info (device vdb): relocating block group 2468180131840 flags data
[ 3121.576699] BTRFS info (device vdb): found 2049 extents, stage: move data extents
[ 3122.985344] BTRFS info (device vdb): found 2049 extents, stage: update data pointers
[ 3123.796596] BTRFS info (device vdb): relocating block group 2467106390016 flags data
[ 3150.859353] BTRFS info (device vdb): found 2061 extents, stage: move data extents
[ 3152.210296] BTRFS info (device vdb): found 2061 extents, stage: update data pointers
[ 3153.069544] BTRFS info (device vdb): relocating block group 2466032648192 flags data
[ 3178.285153] BTRFS info (device vdb): found 2051 extents, stage: move data extents
[ 3179.803190] BTRFS info (device vdb): found 2051 extents, stage: update data pointers
[ 3180.853351] BTRFS info (device vdb): relocating block group 2464958906368 flags data
[ 3206.167444] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[ 3207.534258] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[ 3208.385924] BTRFS info (device vdb): relocating block group 2463885164544 flags data
[ 3235.298662] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[ 3236.682902] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[ 3237.523415] BTRFS info (device vdb): relocating block group 2462811422720 flags data
[ 3262.906159] BTRFS info (device vdb): found 2053 extents, stage: move data extents
[ 3264.483077] BTRFS info (device vdb): found 2053 extents, stage: update data pointers
[ 3265.432622] BTRFS info (device vdb): relocating block group 2461737680896 flags data
[ 3290.980973] BTRFS info (device vdb): found 2054 extents, stage: move data extents
[ 3292.509079] BTRFS info (device vdb): found 2054 extents, stage: update data pointers
[ 3293.468378] BTRFS info (device vdb): relocating block group 2460663939072 flags data
[ 3319.066224] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[ 3320.399913] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[ 3321.106069] BTRFS info (device vdb): relocating block group 2459590197248 flags data
[ 3346.191920] BTRFS info (device vdb): found 2049 extents, stage: move data extents
[ 3347.498306] BTRFS info (device vdb): found 2049 extents, stage: update data pointers
[ 3348.206733] BTRFS info (device vdb): relocating block group 2458516455424 flags data
[ 3373.734746] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[ 3375.014153] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[ 3375.716628] BTRFS info (device vdb): relocating block group 2457442713600 flags data
[ 3400.344321] BTRFS info (device vdb): found 2049 extents, stage: move data extents
[ 3401.689678] BTRFS info (device vdb): found 2049 extents, stage: update data pointers
[ 3402.445368] BTRFS info (device vdb): relocating block group 2456368971776 flags data
[ 3428.116980] BTRFS info (device vdb): found 2051 extents, stage: move data extents
[ 3429.601866] BTRFS info (device vdb): found 2051 extents, stage: update data pointers
[ 3430.501109] BTRFS info (device vdb): relocating block group 2455295229952 flags data
[ 3458.123686] BTRFS info (device vdb): found 2049 extents, stage: move data extents
[ 3459.725199] BTRFS info (device vdb): found 2049 extents, stage: update data pointers
[ 3460.587625] BTRFS info (device vdb): relocating block group 2454221488128 flags data
[ 3485.662504] BTRFS info (device vdb): found 2049 extents, stage: move data extents
[ 3486.837755] BTRFS info (device vdb): found 2049 extents, stage: update data pointers
[ 3487.571720] BTRFS info (device vdb): relocating block group 2453147746304 flags data
[ 3512.315541] BTRFS info (device vdb): found 2049 extents, stage: move data extents
[ 3513.431585] BTRFS info (device vdb): found 2049 extents, stage: update data pointers
[ 3514.156317] BTRFS info (device vdb): relocating block group 2452074004480 flags data
[ 3539.520296] BTRFS info (device vdb): found 2114 extents, stage: move data extents
[ 3543.110823] BTRFS info (device vdb): found 2114 extents, stage: update data pointers
[ 3545.073900] BTRFS info (device vdb): relocating block group 2451000262656 flags data
[ 3571.918196] BTRFS info (device vdb): found 2059 extents, stage: move data extents
[ 3575.353114] BTRFS info (device vdb): found 2059 extents, stage: update data pointers
[ 3577.577611] BTRFS info (device vdb): relocating block group 2449926520832 flags data
[ 3604.344817] BTRFS info (device vdb): found 2052 extents, stage: move data extents
[ 3605.998875] BTRFS info (device vdb): found 2052 extents, stage: update data pointers
[ 3606.989295] BTRFS info (device vdb): relocating block group 2448852779008 flags data
[ 3632.938606] BTRFS info (device vdb): found 2050 extents, stage: move data extents
[ 3634.477756] BTRFS info (device vdb): found 2050 extents, stage: update data pointers
[ 3635.420576] BTRFS info (device vdb): relocating block group 2447779037184 flags data
[ 3661.414082] BTRFS info (device vdb): found 2050 extents, stage: move data extents
[ 3662.819221] BTRFS info (device vdb): found 2050 extents, stage: update data pointers
[ 3663.691261] BTRFS info (device vdb): relocating block group 2446705295360 flags data
[ 3687.703973] BTRFS info (device vdb): found 2052 extents, stage: move data extents
[ 3689.148166] BTRFS info (device vdb): found 2052 extents, stage: update data pointers
[ 3690.095435] BTRFS info (device vdb): relocating block group 2445631553536 flags data
[ 3714.830212] BTRFS info (device vdb): found 2049 extents, stage: move data extents
[ 3716.060444] BTRFS info (device vdb): found 2049 extents, stage: update data pointers
[ 3716.904417] BTRFS info (device vdb): relocating block group 2444557811712 flags data
[ 3741.441341] BTRFS info (device vdb): found 2051 extents, stage: move data extents
[ 3742.638192] BTRFS info (device vdb): found 2051 extents, stage: update data pointers
[ 3743.448700] BTRFS info (device vdb): relocating block group 2443484069888 flags data
[ 3767.260290] BTRFS info (device vdb): found 2051 extents, stage: move data extents
[ 3768.430916] BTRFS info (device vdb): found 2051 extents, stage: update data pointers
[ 3769.200683] BTRFS info (device vdb): relocating block group 2442410328064 flags data
[ 3793.055451] BTRFS info (device vdb): found 2050 extents, stage: move data extents
[ 3794.220016] BTRFS info (device vdb): found 2050 extents, stage: update data pointers
[ 3794.915768] BTRFS info (device vdb): relocating block group 2441336586240 flags data
[ 3819.091219] BTRFS info (device vdb): found 2049 extents, stage: move data extents
[ 3820.199338] BTRFS info (device vdb): found 2049 extents, stage: update data pointers
[ 3820.905908] BTRFS info (device vdb): relocating block group 2440262844416 flags data
[ 3845.060295] BTRFS info (device vdb): found 2049 extents, stage: move data extents
[ 3846.300727] BTRFS info (device vdb): found 2049 extents, stage: update data pointers
[ 3847.068791] BTRFS info (device vdb): relocating block group 2439189102592 flags data
[ 3870.810227] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[ 3871.983911] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[ 3872.767516] BTRFS info (device vdb): relocating block group 2438115360768 flags data
[ 3896.181183] BTRFS info (device vdb): found 2050 extents, stage: move data extents
[ 3897.389450] BTRFS info (device vdb): found 2050 extents, stage: update data pointers
[ 3898.168535] BTRFS info (device vdb): relocating block group 2437041618944 flags data
[ 3921.576294] BTRFS info (device vdb): found 2049 extents, stage: move data extents
[ 3922.716054] BTRFS info (device vdb): found 2049 extents, stage: update data pointers
[ 3923.467350] BTRFS info (device vdb): relocating block group 2435967877120 flags data
[ 3947.109823] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[ 3948.280661] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[ 3948.996547] BTRFS info (device vdb): relocating block group 2434894135296 flags data
[ 3972.897375] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[ 3974.189116] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[ 3975.081520] BTRFS info (device vdb): relocating block group 2433820393472 flags data
[ 3999.996039] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[ 4001.115269] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[ 4001.807322] BTRFS info (device vdb): relocating block group 2432746651648 flags data
[ 4025.675868] BTRFS info (device vdb): found 2050 extents, stage: move data extents
[ 4027.033670] BTRFS info (device vdb): found 2050 extents, stage: update data pointers
[ 4027.928398] BTRFS info (device vdb): relocating block group 2431672909824 flags data
[ 4051.934056] BTRFS info (device vdb): found 2050 extents, stage: move data extents
[ 4053.315036] BTRFS info (device vdb): found 2050 extents, stage: update data pointers
[ 4054.212213] BTRFS info (device vdb): relocating block group 2430599168000 flags data
[ 4054.802262] workqueue: ttm_bo_delayed_delete [ttm] hogged CPU for >10000us 4 times, consider switching to WQ_UNBOUND
[ 4078.188928] BTRFS info (device vdb): found 2050 extents, stage: move data extents
[ 4079.759582] BTRFS info (device vdb): found 2050 extents, stage: update data pointers
[ 4080.757790] BTRFS info (device vdb): relocating block group 2429525426176 flags data
[ 4105.147731] BTRFS info (device vdb): found 2049 extents, stage: move data extents
[ 4106.721214] BTRFS info (device vdb): found 2049 extents, stage: update data pointers
[ 4107.706670] BTRFS info (device vdb): relocating block group 2428451684352 flags data
[ 4131.811350] BTRFS info (device vdb): found 2050 extents, stage: move data extents
[ 4133.235107] BTRFS info (device vdb): found 2050 extents, stage: update data pointers
[ 4134.170287] BTRFS info (device vdb): relocating block group 2427377942528 flags data
[ 4158.312279] BTRFS info (device vdb): found 2049 extents, stage: move data extents
[ 4159.844459] BTRFS info (device vdb): found 2049 extents, stage: update data pointers
[ 4160.758387] BTRFS info (device vdb): relocating block group 2426304200704 flags data
[ 4184.762980] BTRFS info (device vdb): found 2051 extents, stage: move data extents
[ 4186.293101] BTRFS info (device vdb): found 2051 extents, stage: update data pointers
[ 4187.192293] BTRFS info (device vdb): relocating block group 2425230458880 flags data
[ 4210.990754] BTRFS info (device vdb): found 2052 extents, stage: move data extents
[ 4212.169714] BTRFS info (device vdb): found 2052 extents, stage: update data pointers
[ 4212.940411] BTRFS info (device vdb): relocating block group 2424156717056 flags data
[ 4237.099780] BTRFS info (device vdb): found 2052 extents, stage: move data extents
[ 4238.597846] BTRFS info (device vdb): found 2052 extents, stage: update data pointers
[ 4239.520035] BTRFS info (device vdb): relocating block group 2423082975232 flags data
[ 4264.287298] BTRFS info (device vdb): found 2049 extents, stage: move data extents
[ 4265.700913] BTRFS info (device vdb): found 2049 extents, stage: update data pointers
[ 4266.518017] BTRFS info (device vdb): relocating block group 2422009233408 flags data
[ 4290.545927] BTRFS info (device vdb): found 2050 extents, stage: move data extents
[ 4292.065629] BTRFS info (device vdb): found 2050 extents, stage: update data pointers
[ 4292.984501] BTRFS info (device vdb): relocating block group 2420935491584 flags data
[ 4316.823885] BTRFS info (device vdb): found 2047 extents, stage: move data extents
[ 4318.315845] BTRFS info (device vdb): found 2047 extents, stage: update data pointers
[ 4319.222088] BTRFS info (device vdb): relocating block group 2419861749760 flags data
[ 4342.887406] BTRFS info (device vdb): found 2049 extents, stage: move data extents
[ 4344.245294] BTRFS info (device vdb): found 2049 extents, stage: update data pointers
[ 4344.993760] BTRFS info (device vdb): relocating block group 2418788007936 flags data
[ 4369.653203] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[ 4371.045239] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[ 4371.965542] BTRFS info (device vdb): relocating block group 2417714266112 flags data
[ 4395.484306] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[ 4396.919918] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[ 4397.857866] BTRFS info (device vdb): relocating block group 2416640524288 flags data
[ 4422.881136] BTRFS info (device vdb): found 2051 extents, stage: move data extents
[ 4424.164459] BTRFS info (device vdb): found 2051 extents, stage: update data pointers
[ 4424.943466] BTRFS info (device vdb): relocating block group 2415566782464 flags data
[ 4448.438941] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[ 4449.623426] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[ 4450.464090] BTRFS info (device vdb): relocating block group 2414493040640 flags data
[ 4474.786954] BTRFS info (device vdb): found 2049 extents, stage: move data extents
[ 4476.097108] BTRFS info (device vdb): found 2049 extents, stage: update data pointers
[ 4476.967897] BTRFS info (device vdb): relocating block group 2413419298816 flags data
[ 4501.116090] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[ 4502.300813] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[ 4503.068376] BTRFS info (device vdb): relocating block group 2412345556992 flags data
[ 4527.116943] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[ 4528.244157] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[ 4528.962953] BTRFS info (device vdb): relocating block group 2411271815168 flags data
[ 4553.210424] BTRFS info (device vdb): found 2049 extents, stage: move data extents
[ 4554.397251] BTRFS info (device vdb): found 2049 extents, stage: update data pointers
[ 4555.149318] BTRFS info (device vdb): relocating block group 2410198073344 flags data
[ 4578.918902] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[ 4580.071663] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[ 4580.807587] BTRFS info (device vdb): relocating block group 2409124331520 flags data
[ 4605.006211] BTRFS info (device vdb): found 2054 extents, stage: move data extents
[ 4606.348486] BTRFS info (device vdb): found 2054 extents, stage: update data pointers
[ 4607.205311] BTRFS info (device vdb): relocating block group 2408050589696 flags data
[ 4631.338578] BTRFS info (device vdb): found 2062 extents, stage: move data extents
[ 4632.797617] BTRFS info (device vdb): found 2062 extents, stage: update data pointers
[ 4633.714599] BTRFS info (device vdb): relocating block group 2406976847872 flags data
[ 4657.668837] BTRFS info (device vdb): found 2067 extents, stage: move data extents
[ 4659.090343] BTRFS info (device vdb): found 2067 extents, stage: update data pointers
[ 4660.032189] BTRFS info (device vdb): relocating block group 2405903106048 flags data
[ 4683.939958] BTRFS info (device vdb): found 2064 extents, stage: move data extents
[ 4685.255582] BTRFS info (device vdb): found 2064 extents, stage: update data pointers
[ 4686.178040] BTRFS info (device vdb): relocating block group 2404829364224 flags data
[ 4711.279678] BTRFS info (device vdb): found 2061 extents, stage: move data extents
[ 4712.757176] BTRFS info (device vdb): found 2061 extents, stage: update data pointers
[ 4713.693224] BTRFS info (device vdb): relocating block group 2403755622400 flags data
[ 4737.508094] BTRFS info (device vdb): found 2049 extents, stage: move data extents
[ 4739.022261] BTRFS info (device vdb): found 2049 extents, stage: update data pointers
[ 4740.001495] BTRFS info (device vdb): relocating block group 2402681880576 flags data
[ 4763.751273] BTRFS info (device vdb): found 2049 extents, stage: move data extents
[ 4765.145882] BTRFS info (device vdb): found 2049 extents, stage: update data pointers
[ 4766.119574] BTRFS info (device vdb): relocating block group 2401608138752 flags data
[ 4790.916163] BTRFS info (device vdb): found 2049 extents, stage: move data extents
[ 4792.193845] BTRFS info (device vdb): found 2049 extents, stage: update data pointers
[ 4793.020590] BTRFS info (device vdb): relocating block group 2400534396928 flags data
[ 4817.878766] BTRFS info (device vdb): found 2049 extents, stage: move data extents
[ 4819.393410] BTRFS info (device vdb): found 2049 extents, stage: update data pointers
[ 4820.362879] BTRFS info (device vdb): relocating block group 2399460655104 flags data
[ 4844.736706] BTRFS info (device vdb): found 2049 extents, stage: move data extents
[ 4846.154257] BTRFS info (device vdb): found 2049 extents, stage: update data pointers
[ 4847.000251] BTRFS info (device vdb): relocating block group 2398386913280 flags data
[ 4871.215045] BTRFS info (device vdb): found 2050 extents, stage: move data extents
[ 4872.632634] BTRFS info (device vdb): found 2050 extents, stage: update data pointers
[ 4873.538592] BTRFS info (device vdb): relocating block group 2397313171456 flags data
[ 4897.444075] BTRFS info (device vdb): found 2049 extents, stage: move data extents
[ 4898.863675] BTRFS info (device vdb): found 2049 extents, stage: update data pointers
[ 4899.753503] BTRFS info (device vdb): relocating block group 2396239429632 flags data
[ 4923.675669] BTRFS info (device vdb): found 2049 extents, stage: move data extents
[ 4924.985055] BTRFS info (device vdb): found 2049 extents, stage: update data pointers
[ 4925.891140] BTRFS info (device vdb): relocating block group 2395165687808 flags data
[ 4949.590571] BTRFS info (device vdb): found 2049 extents, stage: move data extents
[ 4950.919722] BTRFS info (device vdb): found 2049 extents, stage: update data pointers
[ 4951.780100] BTRFS info (device vdb): relocating block group 2394091945984 flags data
[ 4975.890940] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[ 4977.145097] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[ 4977.957825] BTRFS info (device vdb): relocating block group 2393018204160 flags data
[ 5002.285981] BTRFS info (device vdb): found 2049 extents, stage: move data extents
[ 5003.789392] BTRFS info (device vdb): found 2049 extents, stage: update data pointers
[ 5004.609441] BTRFS info (device vdb): relocating block group 2391944462336 flags data
[ 5028.609527] BTRFS info (device vdb): found 2049 extents, stage: move data extents
[ 5029.947587] BTRFS info (device vdb): found 2049 extents, stage: update data pointers
[ 5030.780396] BTRFS info (device vdb): relocating block group 2390870720512 flags data
[ 5055.280821] BTRFS info (device vdb): found 2049 extents, stage: move data extents
[ 5056.669167] BTRFS info (device vdb): found 2049 extents, stage: update data pointers
[ 5057.543185] BTRFS info (device vdb): relocating block group 2389796978688 flags data
[ 5081.558288] BTRFS info (device vdb): found 2050 extents, stage: move data extents
[ 5083.070692] BTRFS info (device vdb): found 2050 extents, stage: update data pointers
[ 5084.056854] BTRFS info (device vdb): relocating block group 2388723236864 flags data
[ 5108.142563] BTRFS info (device vdb): found 2051 extents, stage: move data extents
[ 5109.963704] BTRFS info (device vdb): found 2051 extents, stage: update data pointers
[ 5110.988076] BTRFS info (device vdb): relocating block group 2387649495040 flags data
[ 5135.459657] BTRFS info (device vdb): found 2049 extents, stage: move data extents
[ 5136.998160] BTRFS info (device vdb): found 2049 extents, stage: update data pointers
[ 5137.792139] BTRFS info (device vdb): relocating block group 2386575753216 flags data
[ 5163.300055] BTRFS info (device vdb): found 2049 extents, stage: move data extents
[ 5164.833714] BTRFS info (device vdb): found 2049 extents, stage: update data pointers
[ 5165.635051] BTRFS info (device vdb): relocating block group 2385502011392 flags data
[ 5189.633092] BTRFS info (device vdb): found 2049 extents, stage: move data extents
[ 5191.240377] BTRFS info (device vdb): found 2049 extents, stage: update data pointers
[ 5192.117198] BTRFS info (device vdb): relocating block group 2384428269568 flags data
[ 5216.075053] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[ 5217.273068] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[ 5218.030191] BTRFS info (device vdb): relocating block group 2383354527744 flags data
[ 5242.057118] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[ 5243.243107] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[ 5243.993393] BTRFS info (device vdb): relocating block group 2382280785920 flags data
[ 5267.747333] BTRFS info (device vdb): found 2060 extents, stage: move data extents
[ 5269.290769] BTRFS info (device vdb): found 2060 extents, stage: update data pointers
[ 5270.293327] BTRFS info (device vdb): relocating block group 2381207044096 flags data
[ 5294.053970] BTRFS info (device vdb): found 2049 extents, stage: move data extents
[ 5295.242674] BTRFS info (device vdb): found 2049 extents, stage: update data pointers
[ 5296.043833] BTRFS info (device vdb): relocating block group 2380133302272 flags data
[ 5320.259535] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[ 5321.391420] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[ 5322.073742] BTRFS info (device vdb): relocating block group 2379059560448 flags data
[ 5346.259666] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[ 5347.359067] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[ 5348.096945] BTRFS info (device vdb): relocating block group 2377985818624 flags data
[ 5372.136440] BTRFS info (device vdb): found 2050 extents, stage: move data extents
[ 5373.439755] BTRFS info (device vdb): found 2050 extents, stage: update data pointers
[ 5374.206564] BTRFS info (device vdb): relocating block group 2376912076800 flags data
[ 5398.226599] BTRFS info (device vdb): found 2061 extents, stage: move data extents
[ 5399.636536] BTRFS info (device vdb): found 2061 extents, stage: update data pointers
[ 5400.536383] BTRFS info (device vdb): relocating block group 2375838334976 flags data
[ 5418.078622] workqueue: drm_fb_helper_damage_work [drm_kms_helper] hogged CPU for >10000us 16 times, consider switching to WQ_UNBOUND
[ 5424.690843] BTRFS info (device vdb): found 2093 extents, stage: move data extents
[ 5425.931277] BTRFS info (device vdb): found 2093 extents, stage: update data pointers
[ 5426.754503] BTRFS info (device vdb): relocating block group 2374764593152 flags data
[ 5451.101514] BTRFS info (device vdb): found 2064 extents, stage: move data extents
[ 5452.373379] BTRFS info (device vdb): found 2064 extents, stage: update data pointers
[ 5453.145071] BTRFS info (device vdb): relocating block group 2373690851328 flags data
[ 5477.428972] BTRFS info (device vdb): found 2115 extents, stage: move data extents
[ 5478.604559] BTRFS info (device vdb): found 2115 extents, stage: update data pointers
[ 5479.340835] BTRFS info (device vdb): relocating block group 2372617109504 flags data
[ 5503.428689] BTRFS info (device vdb): found 2050 extents, stage: move data extents
[ 5505.431240] BTRFS info (device vdb): found 2050 extents, stage: update data pointers
[ 5506.687727] BTRFS info (device vdb): relocating block group 2371543367680 flags data
[ 5530.639711] BTRFS info (device vdb): found 2052 extents, stage: move data extents
[ 5532.367774] BTRFS info (device vdb): found 2052 extents, stage: update data pointers
[ 5533.480081] BTRFS info (device vdb): relocating block group 2370469625856 flags data
[ 5557.207373] BTRFS info (device vdb): found 2050 extents, stage: move data extents
[ 5559.078239] BTRFS info (device vdb): found 2050 extents, stage: update data pointers
[ 5560.262907] BTRFS info (device vdb): relocating block group 2369395884032 flags data
[ 5583.957397] BTRFS info (device vdb): found 2051 extents, stage: move data extents
[ 5585.358933] BTRFS info (device vdb): found 2051 extents, stage: update data pointers
[ 5586.267250] BTRFS info (device vdb): relocating block group 2368322142208 flags data
[ 5610.160175] BTRFS info (device vdb): found 2053 extents, stage: move data extents
[ 5611.625980] BTRFS info (device vdb): found 2053 extents, stage: update data pointers
[ 5612.575465] BTRFS info (device vdb): relocating block group 2367248400384 flags data
[ 5636.369638] BTRFS info (device vdb): found 2052 extents, stage: move data extents
[ 5637.995808] BTRFS info (device vdb): found 2052 extents, stage: update data pointers
[ 5639.027131] BTRFS info (device vdb): relocating block group 2366174658560 flags data
[ 5663.303365] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[ 5665.063616] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[ 5666.186160] BTRFS info (device vdb): relocating block group 2365100916736 flags data
[ 5689.632874] BTRFS info (device vdb): found 2049 extents, stage: move data extents
[ 5691.193883] BTRFS info (device vdb): found 2049 extents, stage: update data pointers
[ 5692.227364] BTRFS info (device vdb): relocating block group 2364027174912 flags data
[ 5715.912238] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[ 5717.539806] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[ 5718.655773] BTRFS info (device vdb): relocating block group 2362953433088 flags data
[ 5742.994147] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[ 5744.470748] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[ 5745.428856] BTRFS info (device vdb): relocating block group 2361879691264 flags data
[ 5769.425901] BTRFS info (device vdb): found 2047 extents, stage: move data extents
[ 5771.018550] BTRFS info (device vdb): found 2047 extents, stage: update data pointers
[ 5772.048046] BTRFS info (device vdb): relocating block group 2360805949440 flags data
[ 5796.610068] BTRFS info (device vdb): found 2049 extents, stage: move data extents
[ 5798.412583] BTRFS info (device vdb): found 2049 extents, stage: update data pointers
[ 5799.581267] BTRFS info (device vdb): relocating block group 2359732207616 flags data
[ 5824.168781] BTRFS info (device vdb): found 2051 extents, stage: move data extents
[ 5826.013941] BTRFS info (device vdb): found 2051 extents, stage: update data pointers
[ 5827.177495] BTRFS info (device vdb): relocating block group 2358658465792 flags data
[ 5851.593993] BTRFS info (device vdb): found 2052 extents, stage: move data extents
[ 5853.538563] BTRFS info (device vdb): found 2052 extents, stage: update data pointers
[ 5854.812620] BTRFS info (device vdb): relocating block group 2357584723968 flags data
[ 5878.859816] BTRFS info (device vdb): found 2054 extents, stage: move data extents
[ 5880.919218] BTRFS info (device vdb): found 2054 extents, stage: update data pointers
[ 5882.247321] BTRFS info (device vdb): relocating block group 2356510982144 flags data
[ 5906.170357] BTRFS info (device vdb): found 2065 extents, stage: move data extents
[ 5907.885666] BTRFS info (device vdb): found 2065 extents, stage: update data pointers
[ 5908.949925] BTRFS info (device vdb): relocating block group 2355437240320 flags data
[ 5932.353243] BTRFS info (device vdb): found 2057 extents, stage: move data extents
[ 5933.801202] BTRFS info (device vdb): found 2057 extents, stage: update data pointers
[ 5934.665118] BTRFS info (device vdb): relocating block group 2354363498496 flags data
[ 5958.730341] BTRFS info (device vdb): found 2060 extents, stage: move data extents
[ 5960.195969] BTRFS info (device vdb): found 2060 extents, stage: update data pointers
[ 5961.052514] BTRFS info (device vdb): relocating block group 2353289756672 flags data
[ 5985.099431] BTRFS info (device vdb): found 2099 extents, stage: move data extents
[ 5986.670060] BTRFS info (device vdb): found 2099 extents, stage: update data pointers
[ 5987.568863] BTRFS info (device vdb): relocating block group 2352216014848 flags data
[ 6011.523920] BTRFS info (device vdb): found 2081 extents, stage: move data extents
[ 6013.138720] BTRFS info (device vdb): found 2081 extents, stage: update data pointers
[ 6014.078368] BTRFS info (device vdb): relocating block group 2351142273024 flags data
[ 6037.752877] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[ 6039.053084] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[ 6039.882502] BTRFS info (device vdb): relocating block group 2350068531200 flags data
[ 6063.979281] BTRFS info (device vdb): found 2056 extents, stage: move data extents
[ 6065.433633] BTRFS info (device vdb): found 2056 extents, stage: update data pointers
[ 6066.349424] BTRFS info (device vdb): relocating block group 2348994789376 flags data
[ 6092.392060] BTRFS info (device vdb): found 2052 extents, stage: move data extents
[ 6093.906407] BTRFS info (device vdb): found 2052 extents, stage: update data pointers
[ 6094.834166] BTRFS info (device vdb): relocating block group 2347921047552 flags data
[ 6119.679948] BTRFS info (device vdb): found 2051 extents, stage: move data extents
[ 6121.170114] BTRFS info (device vdb): found 2051 extents, stage: update data pointers
[ 6122.066555] BTRFS info (device vdb): relocating block group 2346847305728 flags data
[ 6146.934147] BTRFS info (device vdb): found 2053 extents, stage: move data extents
[ 6148.320946] BTRFS info (device vdb): found 2053 extents, stage: update data pointers
[ 6149.207536] BTRFS info (device vdb): relocating block group 2345773563904 flags data
[ 6173.955038] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[ 6175.273941] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[ 6176.140784] BTRFS info (device vdb): relocating block group 2344699822080 flags data
[ 6200.386457] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[ 6201.548611] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[ 6202.251160] BTRFS info (device vdb): relocating block group 2343626080256 flags data
[ 6226.639757] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[ 6227.777123] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[ 6228.488066] BTRFS info (device vdb): relocating block group 2342552338432 flags data
[ 6252.629419] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[ 6253.682312] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[ 6254.353253] BTRFS info (device vdb): relocating block group 2341478596608 flags data
[ 6278.327585] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[ 6279.366670] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[ 6280.002900] BTRFS info (device vdb): relocating block group 2340404854784 flags data
[ 6304.512325] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[ 6305.575016] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[ 6306.221686] BTRFS info (device vdb): relocating block group 2339331112960 flags data
[ 6330.613909] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[ 6331.699650] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[ 6332.396753] BTRFS info (device vdb): relocating block group 2338257371136 flags data
[ 6356.073132] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[ 6357.262786] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[ 6357.949670] BTRFS info (device vdb): relocating block group 2337183629312 flags data
[ 6382.222834] BTRFS info (device vdb): found 2051 extents, stage: move data extents
[ 6384.601729] BTRFS info (device vdb): found 2051 extents, stage: update data pointers
[ 6386.209869] BTRFS info (device vdb): relocating block group 2336109887488 flags data
[ 6411.195858] BTRFS info (device vdb): found 2448 extents, stage: move data extents
[ 6414.974365] BTRFS info (device vdb): found 2448 extents, stage: update data pointers
[ 6417.041866] BTRFS info (device vdb): relocating block group 2331814920192 flags data
[ 6457.764197] BTRFS info (device vdb): found 26825 extents, stage: move data extents
[ 6475.205873] BTRFS info (device vdb): found 26825 extents, stage: update data pointers
[ 6483.716670] BTRFS info (device vdb): relocating block group 2330741178368 flags data
[ 6533.518254] BTRFS info (device vdb): found 38042 extents, stage: move data extents
[ 6557.504182] BTRFS info (device vdb): found 38042 extents, stage: update data pointers
[ 6567.978156] BTRFS info (device vdb): relocating block group 2329667436544 flags data
[ 6596.573914] BTRFS info (device vdb): found 2127 extents, stage: move data extents
[ 6599.448012] BTRFS info (device vdb): found 2127 extents, stage: update data pointers
[ 6601.169680] BTRFS info (device vdb): relocating block group 2328593694720 flags data
[ 6626.953034] BTRFS info (device vdb): found 2194 extents, stage: move data extents
[ 6632.487848] BTRFS info (device vdb): found 2194 extents, stage: update data pointers
[ 6635.971464] BTRFS info (device vdb): relocating block group 2327519952896 flags data
[ 6662.000328] BTRFS info (device vdb): found 2112 extents, stage: move data extents
[ 6665.973830] BTRFS info (device vdb): found 2112 extents, stage: update data pointers
[ 6668.597446] BTRFS info (device vdb): relocating block group 2326446211072 flags data
[ 6694.530195] BTRFS info (device vdb): found 2122 extents, stage: move data extents
[ 6698.913863] BTRFS info (device vdb): found 2122 extents, stage: update data pointers
[ 6701.624496] BTRFS info (device vdb): relocating block group 2325372469248 flags data
[ 6729.148123] BTRFS info (device vdb): found 2139 extents, stage: move data extents
[ 6734.132736] BTRFS info (device vdb): found 2139 extents, stage: update data pointers
[ 6737.306951] BTRFS info (device vdb): relocating block group 2324298727424 flags data
[ 6762.847010] BTRFS info (device vdb): found 2166 extents, stage: move data extents
[ 6767.677655] BTRFS info (device vdb): found 2166 extents, stage: update data pointers
[ 6770.728276] BTRFS info (device vdb): relocating block group 2323224985600 flags data
[ 6795.927150] BTRFS info (device vdb): found 2157 extents, stage: move data extents
[ 6800.906771] BTRFS info (device vdb): found 2157 extents, stage: update data pointers
[ 6804.148954] BTRFS info (device vdb): relocating block group 2322151243776 flags data
[ 6836.784474] BTRFS info (device vdb): found 12151 extents, stage: move data extents
[ 6852.495377] BTRFS info (device vdb): found 12151 extents, stage: update data pointers
[ 6861.388402] BTRFS info (device vdb): relocating block group 2321077501952 flags data
[ 6887.597650] BTRFS info (device vdb): found 2144 extents, stage: move data extents
[ 6891.906396] BTRFS info (device vdb): found 2144 extents, stage: update data pointers
[ 6894.603974] BTRFS info (device vdb): relocating block group 2320003760128 flags data
[ 6919.640860] BTRFS info (device vdb): found 2157 extents, stage: move data extents
[ 6924.295414] BTRFS info (device vdb): found 2157 extents, stage: update data pointers
[ 6927.288679] BTRFS info (device vdb): relocating block group 2318930018304 flags data
[ 6952.723386] BTRFS info (device vdb): found 2126 extents, stage: move data extents
[ 6956.991917] BTRFS info (device vdb): found 2126 extents, stage: update data pointers
[ 6959.769423] BTRFS info (device vdb): relocating block group 2317856276480 flags data
[ 6985.178558] BTRFS info (device vdb): found 2160 extents, stage: move data extents
[ 6990.438586] BTRFS info (device vdb): found 2160 extents, stage: update data pointers
[ 6993.534210] BTRFS info (device vdb): relocating block group 2316782534656 flags data
[ 7018.999242] BTRFS info (device vdb): found 2140 extents, stage: move data extents
[ 7023.548694] BTRFS info (device vdb): found 2140 extents, stage: update data pointers
[ 7026.503684] BTRFS info (device vdb): relocating block group 2315708792832 flags data
[ 7051.762444] BTRFS info (device vdb): found 2143 extents, stage: move data extents
[ 7056.030331] BTRFS info (device vdb): found 2143 extents, stage: update data pointers
[ 7058.777754] BTRFS info (device vdb): relocating block group 2314635051008 flags data
[ 7083.896832] BTRFS info (device vdb): found 2175 extents, stage: move data extents
[ 7089.223842] BTRFS info (device vdb): found 2175 extents, stage: update data pointers
[ 7092.355393] BTRFS info (device vdb): relocating block group 2313561309184 flags data
[ 7117.440498] BTRFS info (device vdb): found 2177 extents, stage: move data extents
[ 7122.383663] BTRFS info (device vdb): found 2177 extents, stage: update data pointers
[ 7125.475463] BTRFS info (device vdb): relocating block group 2312487567360 flags data
[ 7159.916271] BTRFS info (device vdb): found 17016 extents, stage: move data extents
[ 7175.035197] BTRFS info (device vdb): found 17016 extents, stage: update data pointers
[ 7183.292605] BTRFS info (device vdb): relocating block group 2311413825536 flags data
[ 7217.098946] BTRFS info (device vdb): found 11898 extents, stage: move data extents
[ 7228.816064] BTRFS info (device vdb): found 11898 extents, stage: update data pointers
[ 7235.306162] BTRFS info (device vdb): relocating block group 2310340083712 flags data
[ 7267.241335] BTRFS info (device vdb): found 8659 extents, stage: move data extents
[ 7271.187860] BTRFS info (device vdb): found 8659 extents, stage: update data pointers
[ 7273.487393] BTRFS info (device vdb): relocating block group 2309266341888 flags data
[ 7304.526629] BTRFS info (device vdb): found 9072 extents, stage: move data extents
[ 7310.553271] BTRFS info (device vdb): found 9072 extents, stage: update data pointers
[ 7314.052632] BTRFS info (device vdb): relocating block group 2308192600064 flags data
[ 7340.572574] BTRFS info (device vdb): found 2065 extents, stage: move data extents
[ 7343.014736] BTRFS info (device vdb): found 2065 extents, stage: update data pointers
[ 7344.565001] BTRFS info (device vdb): relocating block group 2307118858240 flags data
[ 7370.662348] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[ 7372.657921] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[ 7373.895157] BTRFS info (device vdb): relocating block group 2306045116416 flags data
[ 7398.640180] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[ 7399.963121] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[ 7400.768303] BTRFS info (device vdb): relocating block group 2304971374592 flags data
[ 7425.869845] BTRFS info (device vdb): found 2168 extents, stage: move data extents
[ 7427.999699] BTRFS info (device vdb): found 2168 extents, stage: update data pointers
[ 7429.230972] BTRFS info (device vdb): relocating block group 2303897632768 flags data
[ 7459.686052] BTRFS info (device vdb): found 8934 extents, stage: move data extents
[ 7465.828868] BTRFS info (device vdb): found 8934 extents, stage: update data pointers
[ 7469.373424] BTRFS info (device vdb): relocating block group 2302823890944 flags data
[ 7494.622445] BTRFS info (device vdb): found 2087 extents, stage: move data extents
[ 7496.217794] BTRFS info (device vdb): found 2087 extents, stage: update data pointers
[ 7497.179732] BTRFS info (device vdb): relocating block group 2301750149120 flags data
[ 7522.230670] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[ 7523.463685] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[ 7524.183514] BTRFS info (device vdb): relocating block group 2300676407296 flags data
[ 7549.056176] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[ 7550.516478] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[ 7551.442077] BTRFS info (device vdb): relocating block group 2299602665472 flags data
[ 7576.800526] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[ 7578.059389] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[ 7578.817973] BTRFS info (device vdb): relocating block group 2298528923648 flags data
[ 7603.834454] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[ 7605.173720] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[ 7606.008673] BTRFS info (device vdb): relocating block group 2297455181824 flags data
[ 7631.134201] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[ 7632.610692] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[ 7633.458500] BTRFS info (device vdb): relocating block group 2296381440000 flags data
[ 7658.852681] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[ 7660.054033] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[ 7660.747585] BTRFS info (device vdb): relocating block group 2295307698176 flags data
[ 7685.771297] BTRFS info (device vdb): found 2055 extents, stage: move data extents
[ 7687.413683] BTRFS info (device vdb): found 2055 extents, stage: update data pointers
[ 7688.410216] BTRFS info (device vdb): relocating block group 2294233956352 flags data
[ 7713.810697] BTRFS info (device vdb): found 2082 extents, stage: move data extents
[ 7715.345766] BTRFS info (device vdb): found 2082 extents, stage: update data pointers
[ 7716.281834] BTRFS info (device vdb): relocating block group 2293160214528 flags data
[ 7741.084394] BTRFS info (device vdb): found 2106 extents, stage: move data extents
[ 7742.328756] BTRFS info (device vdb): found 2106 extents, stage: update data pointers
[ 7743.144743] BTRFS info (device vdb): relocating block group 2292086472704 flags data
[ 7767.740760] BTRFS info (device vdb): found 2113 extents, stage: move data extents
[ 7769.392765] BTRFS info (device vdb): found 2113 extents, stage: update data pointers
[ 7770.319207] BTRFS info (device vdb): relocating block group 2291012730880 flags data
[ 7795.035395] BTRFS info (device vdb): found 2072 extents, stage: move data extents
[ 7796.355510] BTRFS info (device vdb): found 2072 extents, stage: update data pointers
[ 7797.143825] BTRFS info (device vdb): relocating block group 2289938989056 flags data
[ 7821.990507] BTRFS info (device vdb): found 2071 extents, stage: move data extents
[ 7823.251584] BTRFS info (device vdb): found 2071 extents, stage: update data pointers
[ 7823.997032] BTRFS info (device vdb): relocating block group 2288865247232 flags data
[ 7849.717307] BTRFS info (device vdb): found 2102 extents, stage: move data extents
[ 7851.090566] BTRFS info (device vdb): found 2102 extents, stage: update data pointers
[ 7851.902459] BTRFS info (device vdb): relocating block group 2287791505408 flags data
[ 7877.154955] BTRFS info (device vdb): found 2074 extents, stage: move data extents
[ 7878.671163] BTRFS info (device vdb): found 2074 extents, stage: update data pointers
[ 7879.573330] BTRFS info (device vdb): relocating block group 2286717763584 flags data
[ 7904.582701] BTRFS info (device vdb): found 2055 extents, stage: move data extents
[ 7906.141322] BTRFS info (device vdb): found 2055 extents, stage: update data pointers
[ 7907.011108] BTRFS info (device vdb): relocating block group 2285644021760 flags data
[ 7932.632178] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[ 7933.877814] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[ 7934.601024] BTRFS info (device vdb): relocating block group 2284570279936 flags data
[ 7959.745525] BTRFS info (device vdb): found 2049 extents, stage: move data extents
[ 7961.041154] BTRFS info (device vdb): found 2049 extents, stage: update data pointers
[ 7961.819766] BTRFS info (device vdb): relocating block group 2283496538112 flags data
[ 7986.883114] BTRFS info (device vdb): found 2055 extents, stage: move data extents
[ 7988.150421] BTRFS info (device vdb): found 2055 extents, stage: update data pointers
[ 7988.917002] BTRFS info (device vdb): relocating block group 2282422796288 flags data
[ 8014.508422] BTRFS info (device vdb): found 2056 extents, stage: move data extents
[ 8015.772867] BTRFS info (device vdb): found 2056 extents, stage: update data pointers
[ 8016.551795] BTRFS info (device vdb): relocating block group 2281349054464 flags data
[ 8041.660048] BTRFS info (device vdb): found 2054 extents, stage: move data extents
[ 8043.123172] BTRFS info (device vdb): found 2054 extents, stage: update data pointers
[ 8043.906586] BTRFS info (device vdb): relocating block group 2280275312640 flags data
[ 8069.675190] BTRFS info (device vdb): found 2057 extents, stage: move data extents
[ 8070.953935] BTRFS info (device vdb): found 2057 extents, stage: update data pointers
[ 8071.782212] BTRFS info (device vdb): relocating block group 2279201570816 flags data
[ 8096.966721] BTRFS info (device vdb): found 2053 extents, stage: move data extents
[ 8098.309785] BTRFS info (device vdb): found 2053 extents, stage: update data pointers
[ 8099.091261] BTRFS info (device vdb): relocating block group 2278127828992 flags data
[ 8123.952381] BTRFS info (device vdb): found 2058 extents, stage: move data extents
[ 8125.377565] BTRFS info (device vdb): found 2058 extents, stage: update data pointers
[ 8126.185465] BTRFS info (device vdb): relocating block group 2277054087168 flags data
[ 8151.391814] BTRFS info (device vdb): found 2049 extents, stage: move data extents
[ 8152.653852] BTRFS info (device vdb): found 2049 extents, stage: update data pointers
[ 8153.408902] BTRFS info (device vdb): relocating block group 2275980345344 flags data
[ 8178.514942] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[ 8179.611873] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[ 8180.276868] BTRFS info (device vdb): relocating block group 2274906603520 flags data
[ 8205.431666] BTRFS info (device vdb): found 2074 extents, stage: move data extents
[ 8206.949133] BTRFS info (device vdb): found 2074 extents, stage: update data pointers
[ 8207.695641] BTRFS info (device vdb): relocating block group 2273832861696 flags data
[ 8232.592450] BTRFS info (device vdb): found 2051 extents, stage: move data extents
[ 8233.928317] BTRFS info (device vdb): found 2051 extents, stage: update data pointers
[ 8234.627960] BTRFS info (device vdb): relocating block group 2272759119872 flags data
[ 8259.603103] BTRFS info (device vdb): found 2060 extents, stage: move data extents
[ 8261.049889] BTRFS info (device vdb): found 2060 extents, stage: update data pointers
[ 8261.766840] BTRFS info (device vdb): relocating block group 2271685378048 flags data
[ 8286.667368] BTRFS info (device vdb): found 2099 extents, stage: move data extents
[ 8288.198245] BTRFS info (device vdb): found 2099 extents, stage: update data pointers
[ 8289.145736] BTRFS info (device vdb): relocating block group 2270611636224 flags data
[ 8314.322349] BTRFS info (device vdb): found 2053 extents, stage: move data extents
[ 8315.556308] BTRFS info (device vdb): found 2053 extents, stage: update data pointers
[ 8316.306957] BTRFS info (device vdb): relocating block group 2269537894400 flags data
[ 8341.216061] BTRFS info (device vdb): found 2049 extents, stage: move data extents
[ 8342.523011] BTRFS info (device vdb): found 2049 extents, stage: update data pointers
[ 8343.274438] BTRFS info (device vdb): relocating block group 2268464152576 flags data
[ 8368.596760] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[ 8369.862984] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[ 8370.563825] BTRFS info (device vdb): relocating block group 2267390410752 flags data
[ 8395.347390] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[ 8396.468834] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[ 8397.161683] BTRFS info (device vdb): relocating block group 2266316668928 flags data
[ 8422.392974] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[ 8423.480758] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[ 8424.142899] BTRFS info (device vdb): relocating block group 2265242927104 flags data
[ 8449.442358] BTRFS info (device vdb): found 2057 extents, stage: move data extents
[ 8450.991646] BTRFS info (device vdb): found 2057 extents, stage: update data pointers
[ 8451.862389] BTRFS info (device vdb): relocating block group 2264169185280 flags data
[ 8477.503322] BTRFS info (device vdb): found 2115 extents, stage: move data extents
[ 8479.108227] BTRFS info (device vdb): found 2115 extents, stage: update data pointers
[ 8480.001627] BTRFS info (device vdb): relocating block group 2263095443456 flags data
[ 8505.268419] BTRFS info (device vdb): found 2068 extents, stage: move data extents
[ 8506.719922] BTRFS info (device vdb): found 2068 extents, stage: update data pointers
[ 8507.625063] BTRFS info (device vdb): relocating block group 2262021701632 flags data
[ 8532.669670] BTRFS info (device vdb): found 2081 extents, stage: move data extents
[ 8534.286986] BTRFS info (device vdb): found 2081 extents, stage: update data pointers
[ 8535.194201] BTRFS info (device vdb): relocating block group 2260947959808 flags data
[ 8560.549610] BTRFS info (device vdb): found 2081 extents, stage: move data extents
[ 8562.137078] BTRFS info (device vdb): found 2081 extents, stage: update data pointers
[ 8563.120685] BTRFS info (device vdb): relocating block group 2259874217984 flags data
[ 8597.718263] BTRFS info (device vdb): found 16740 extents, stage: move data extents
[ 8616.179668] BTRFS info (device vdb): found 16740 extents, stage: update data pointers
[ 8626.076728] BTRFS info (device vdb): relocating block group 2258800476160 flags data
[ 8652.098934] BTRFS info (device vdb): found 2359 extents, stage: move data extents
[ 8655.943105] BTRFS info (device vdb): found 2359 extents, stage: update data pointers
[ 8658.253732] BTRFS info (device vdb): relocating block group 2257726734336 flags data
[ 8689.486020] BTRFS info (device vdb): found 11221 extents, stage: move data extents
[ 8696.693823] BTRFS info (device vdb): found 11221 extents, stage: update data pointers
[ 8700.555741] BTRFS info (device vdb): relocating block group 2256652992512 flags data
[ 8726.740234] BTRFS info (device vdb): found 2264 extents, stage: move data extents
[ 8730.937508] BTRFS info (device vdb): found 2264 extents, stage: update data pointers
[ 8733.239660] BTRFS info (device vdb): relocating block group 2255579250688 flags data
[ 8758.133363] BTRFS info (device vdb): found 2174 extents, stage: move data extents
[ 8762.133972] BTRFS info (device vdb): found 2174 extents, stage: update data pointers
[ 8764.510704] BTRFS info (device vdb): relocating block group 2254505508864 flags data
[ 8789.447387] BTRFS info (device vdb): found 2181 extents, stage: move data extents
[ 8794.516556] BTRFS info (device vdb): found 2181 extents, stage: update data pointers
[ 8797.381298] BTRFS info (device vdb): relocating block group 2253431767040 flags data
[ 8822.333690] BTRFS info (device vdb): found 2157 extents, stage: move data extents
[ 8826.671814] BTRFS info (device vdb): found 2157 extents, stage: update data pointers
[ 8829.235335] BTRFS info (device vdb): relocating block group 2252358025216 flags data
[ 8854.541579] BTRFS info (device vdb): found 2087 extents, stage: move data extents
[ 8857.363347] BTRFS info (device vdb): found 2087 extents, stage: update data pointers
[ 8859.133445] BTRFS info (device vdb): relocating block group 2251284283392 flags data
[ 8884.284729] BTRFS info (device vdb): found 2166 extents, stage: move data extents
[ 8888.814245] BTRFS info (device vdb): found 2166 extents, stage: update data pointers
[ 8891.476610] BTRFS info (device vdb): relocating block group 2250210541568 flags data
[ 8916.546914] BTRFS info (device vdb): found 2182 extents, stage: move data extents
[ 8921.045303] BTRFS info (device vdb): found 2182 extents, stage: update data pointers
[ 8923.591394] BTRFS info (device vdb): relocating block group 2249136799744 flags data
[ 8948.370741] BTRFS info (device vdb): found 2195 extents, stage: move data extents
[ 8953.224043] BTRFS info (device vdb): found 2195 extents, stage: update data pointers
[ 8956.047760] BTRFS info (device vdb): relocating block group 2248063057920 flags data
[ 8981.104026] BTRFS info (device vdb): found 2169 extents, stage: move data extents
[ 8985.300315] BTRFS info (device vdb): found 2169 extents, stage: update data pointers
[ 8987.838993] BTRFS info (device vdb): relocating block group 2246989316096 flags data
[ 9012.781414] BTRFS info (device vdb): found 2154 extents, stage: move data extents
[ 9016.886475] BTRFS info (device vdb): found 2154 extents, stage: update data pointers
[ 9019.399904] BTRFS info (device vdb): relocating block group 2245915574272 flags data
[ 9045.012764] BTRFS info (device vdb): found 2073 extents, stage: move data extents
[ 9047.439524] BTRFS info (device vdb): found 2073 extents, stage: update data pointers
[ 9048.954509] BTRFS info (device vdb): relocating block group 2244841832448 flags data
[ 9074.697733] BTRFS info (device vdb): found 2200 extents, stage: move data extents
[ 9079.980892] BTRFS info (device vdb): found 2200 extents, stage: update data pointers
[ 9083.134415] BTRFS info (device vdb): relocating block group 2243768090624 flags data
[ 9108.585232] BTRFS info (device vdb): found 2202 extents, stage: move data extents
[ 9113.278993] BTRFS info (device vdb): found 2202 extents, stage: update data pointers
[ 9116.053641] BTRFS info (device vdb): relocating block group 2242694348800 flags data
[ 9141.983738] BTRFS info (device vdb): found 2176 extents, stage: move data extents
[ 9146.496469] BTRFS info (device vdb): found 2176 extents, stage: update data pointers
[ 9149.006684] BTRFS info (device vdb): relocating block group 2241620606976 flags data
[ 9174.306279] BTRFS info (device vdb): found 2097 extents, stage: move data extents
[ 9177.643340] BTRFS info (device vdb): found 2097 extents, stage: update data pointers
[ 9179.683402] BTRFS info (device vdb): relocating block group 2240546865152 flags data
[ 9205.890577] BTRFS info (device vdb): found 2124 extents, stage: move data extents
[ 9209.715293] BTRFS info (device vdb): found 2124 extents, stage: update data pointers
[ 9211.961753] BTRFS info (device vdb): relocating block group 2239473123328 flags data
[ 9238.202814] BTRFS info (device vdb): found 2090 extents, stage: move data extents
[ 9241.495726] BTRFS info (device vdb): found 2090 extents, stage: update data pointers
[ 9243.542272] BTRFS info (device vdb): relocating block group 2238399381504 flags data
[ 9269.726110] BTRFS info (device vdb): found 2103 extents, stage: move data extents
[ 9273.049756] BTRFS info (device vdb): found 2103 extents, stage: update data pointers
[ 9275.178656] BTRFS info (device vdb): relocating block group 2237325639680 flags data
[ 9300.373142] BTRFS info (device vdb): found 2148 extents, stage: move data extents
[ 9304.496188] BTRFS info (device vdb): found 2148 extents, stage: update data pointers
[ 9306.853707] BTRFS info (device vdb): relocating block group 2236251897856 flags data
[ 9331.948569] BTRFS info (device vdb): found 2098 extents, stage: move data extents
[ 9335.218095] BTRFS info (device vdb): found 2098 extents, stage: update data pointers
[ 9337.232598] BTRFS info (device vdb): relocating block group 2235178156032 flags data
[ 9362.440088] BTRFS info (device vdb): found 2168 extents, stage: move data extents
[ 9366.586396] BTRFS info (device vdb): found 2168 extents, stage: update data pointers
[ 9369.070143] BTRFS info (device vdb): relocating block group 2234104414208 flags data
[ 9393.599833] BTRFS info (device vdb): found 2098 extents, stage: move data extents
[ 9396.772359] BTRFS info (device vdb): found 2098 extents, stage: update data pointers
[ 9398.805430] BTRFS info (device vdb): relocating block group 2233030672384 flags data
[ 9424.427769] BTRFS info (device vdb): found 2182 extents, stage: move data extents
[ 9429.119983] BTRFS info (device vdb): found 2182 extents, stage: update data pointers
[ 9431.923646] BTRFS info (device vdb): relocating block group 2231956930560 flags data
[ 9457.361619] BTRFS info (device vdb): found 2100 extents, stage: move data extents
[ 9460.789607] BTRFS info (device vdb): found 2100 extents, stage: update data pointers
[ 9462.926521] BTRFS info (device vdb): relocating block group 2230883188736 flags data
[ 9488.607183] BTRFS info (device vdb): found 2113 extents, stage: move data extents
[ 9492.290540] BTRFS info (device vdb): found 2113 extents, stage: update data pointers
[ 9494.519176] BTRFS info (device vdb): relocating block group 2229809446912 flags data
[ 9529.937423] BTRFS info (device vdb): found 16021 extents, stage: move data extents
[ 9545.646816] BTRFS info (device vdb): found 16021 extents, stage: update data pointers
[ 9553.857312] BTRFS info (device vdb): relocating block group 2228735705088 flags data
[ 9579.974018] BTRFS info (device vdb): found 2186 extents, stage: move data extents
[ 9584.605678] BTRFS info (device vdb): found 2186 extents, stage: update data pointers
[ 9587.285055] BTRFS info (device vdb): relocating block group 2227661963264 flags data
[ 9620.682373] BTRFS info (device vdb): found 13888 extents, stage: move data extents
[ 9632.093003] BTRFS info (device vdb): found 13888 extents, stage: update data pointers
[ 9638.571667] BTRFS info (device vdb): relocating block group 2226588221440 flags data
[ 9671.186883] BTRFS info (device vdb): found 13663 extents, stage: move data extents
[ 9676.973173] BTRFS info (device vdb): found 13663 extents, stage: update data pointers
[ 9680.220933] BTRFS info (device vdb): relocating block group 2225514479616 flags data
[ 9713.063830] BTRFS info (device vdb): found 12431 extents, stage: move data extents
[ 9718.941067] BTRFS info (device vdb): found 12431 extents, stage: update data pointers
[ 9722.235847] BTRFS info (device vdb): relocating block group 2224440737792 flags data
[ 9758.050409] BTRFS info (device vdb): found 15025 extents, stage: move data extents
[ 9764.811123] BTRFS info (device vdb): found 15025 extents, stage: update data pointers
[ 9768.560821] BTRFS info (device vdb): relocating block group 2223366995968 flags data
[ 9801.022888] BTRFS info (device vdb): found 11894 extents, stage: move data extents
[ 9805.828579] BTRFS info (device vdb): found 11894 extents, stage: update data pointers
[ 9808.531263] BTRFS info (device vdb): relocating block group 2222293254144 flags data
[ 9844.850414] BTRFS info (device vdb): found 15616 extents, stage: move data extents
[ 9852.380972] BTRFS info (device vdb): found 15616 extents, stage: update data pointers
[ 9856.252830] BTRFS info (device vdb): relocating block group 2221219512320 flags data
[ 9894.461358] BTRFS info (device vdb): found 20505 extents, stage: move data extents
[ 9906.311244] BTRFS info (device vdb): found 20505 extents, stage: update data pointers
[ 9912.623559] BTRFS info (device vdb): relocating block group 2220145770496 flags data
[ 9938.674882] BTRFS info (device vdb): found 2125 extents, stage: move data extents
[ 9942.065026] BTRFS info (device vdb): found 2125 extents, stage: update data pointers
[ 9944.136912] BTRFS info (device vdb): relocating block group 2219072028672 flags data
[ 9969.678669] BTRFS info (device vdb): found 2130 extents, stage: move data extents
[ 9971.395078] BTRFS info (device vdb): found 2130 extents, stage: update data pointers
[ 9972.378520] BTRFS info (device vdb): relocating block group 2217998286848 flags data
[ 9997.799039] BTRFS info (device vdb): found 2081 extents, stage: move data extents
[ 9999.184505] BTRFS info (device vdb): found 2081 extents, stage: update data pointers
[ 9999.951025] BTRFS info (device vdb): relocating block group 2216924545024 flags data
[10025.585964] BTRFS info (device vdb): found 2235 extents, stage: move data extents
[10028.251831] BTRFS info (device vdb): found 2235 extents, stage: update data pointers
[10029.753207] BTRFS info (device vdb): relocating block group 2215850803200 flags data
[10055.083817] BTRFS info (device vdb): found 2188 extents, stage: move data extents
[10056.597401] BTRFS info (device vdb): found 2188 extents, stage: update data pointers
[10057.445814] BTRFS info (device vdb): relocating block group 2214777061376 flags data
[10082.372745] BTRFS info (device vdb): found 2089 extents, stage: move data extents
[10083.651239] BTRFS info (device vdb): found 2089 extents, stage: update data pointers
[10084.472955] BTRFS info (device vdb): relocating block group 2213703319552 flags data
[10109.769816] BTRFS info (device vdb): found 2176 extents, stage: move data extents
[10111.686340] BTRFS info (device vdb): found 2176 extents, stage: update data pointers
[10112.903010] BTRFS info (device vdb): relocating block group 2212629577728 flags data
[10137.859349] BTRFS info (device vdb): found 2049 extents, stage: move data extents
[10139.321559] BTRFS info (device vdb): found 2049 extents, stage: update data pointers
[10140.146050] BTRFS info (device vdb): relocating block group 2211555835904 flags data
[10164.847411] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[10165.994458] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[10166.687662] BTRFS info (device vdb): relocating block group 2210482094080 flags data
[10191.446005] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[10192.553962] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[10193.226306] BTRFS info (device vdb): relocating block group 2209408352256 flags data
[10219.008383] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[10220.260519] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[10221.048163] BTRFS info (device vdb): relocating block group 2208334610432 flags data
[10246.061598] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[10247.186535] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[10247.915903] BTRFS info (device vdb): relocating block group 2207260868608 flags data
[10272.468002] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[10273.775608] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[10274.662443] BTRFS info (device vdb): relocating block group 2206187126784 flags data
[10300.284333] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[10301.621379] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[10302.322516] BTRFS info (device vdb): relocating block group 2205113384960 flags data
[10327.767648] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[10329.047863] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[10329.746340] BTRFS info (device vdb): relocating block group 2204039643136 flags data
[10355.021350] BTRFS info (device vdb): found 2049 extents, stage: move data extents
[10356.266682] BTRFS info (device vdb): found 2049 extents, stage: update data pointers
[10357.044040] BTRFS info (device vdb): relocating block group 2202965901312 flags data
[10381.969946] BTRFS info (device vdb): found 2049 extents, stage: move data extents
[10383.175789] BTRFS info (device vdb): found 2049 extents, stage: update data pointers
[10383.919843] BTRFS info (device vdb): relocating block group 2201892159488 flags data
[10408.778988] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[10410.213598] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[10411.032895] BTRFS info (device vdb): relocating block group 2200818417664 flags data
[10436.124454] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[10437.386086] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[10438.094528] BTRFS info (device vdb): relocating block group 2199744675840 flags data
[10463.182941] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[10464.380151] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[10465.119588] BTRFS info (device vdb): relocating block group 2198670934016 flags data
[10490.263589] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[10491.505990] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[10492.301764] BTRFS info (device vdb): relocating block group 2197597192192 flags data
[10517.311532] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[10518.514467] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[10519.245042] BTRFS info (device vdb): relocating block group 2196523450368 flags data
[10544.324229] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[10545.640185] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[10546.444736] BTRFS info (device vdb): relocating block group 2195449708544 flags data
[10571.418268] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[10572.705011] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[10573.456881] BTRFS info (device vdb): relocating block group 2194375966720 flags data
[10599.273134] BTRFS info (device vdb): found 2050 extents, stage: move data extents
[10600.654136] BTRFS info (device vdb): found 2050 extents, stage: update data pointers
[10601.487260] BTRFS info (device vdb): relocating block group 2193302224896 flags data
[10626.561783] BTRFS info (device vdb): found 2054 extents, stage: move data extents
[10628.121367] BTRFS info (device vdb): found 2054 extents, stage: update data pointers
[10629.039365] BTRFS info (device vdb): relocating block group 2192228483072 flags data
[10669.840275] BTRFS info (device vdb): found 25186 extents, stage: move data extents
[10684.793645] BTRFS info (device vdb): found 25186 extents, stage: update data pointers
[10692.973599] BTRFS info (device vdb): relocating block group 2191154741248 flags data
[10719.511292] BTRFS info (device vdb): found 2062 extents, stage: move data extents
[10721.639560] BTRFS info (device vdb): found 2062 extents, stage: update data pointers
[10722.833980] BTRFS info (device vdb): relocating block group 2190080999424 flags data
[10747.847255] BTRFS info (device vdb): found 2108 extents, stage: move data extents
[10750.270215] BTRFS info (device vdb): found 2108 extents, stage: update data pointers
[10751.621329] BTRFS info (device vdb): relocating block group 2189007257600 flags data
[10788.184408] BTRFS info (device vdb): found 18601 extents, stage: move data extents
[10798.388902] BTRFS info (device vdb): found 18601 extents, stage: update data pointers
[10803.870468] BTRFS info (device vdb): relocating block group 2187933515776 flags data
[10829.724780] BTRFS info (device vdb): found 2092 extents, stage: move data extents
[10832.514414] BTRFS info (device vdb): found 2092 extents, stage: update data pointers
[10834.218553] BTRFS info (device vdb): relocating block group 2186859773952 flags data
[10868.498450] BTRFS info (device vdb): found 16847 extents, stage: move data extents
[10877.610341] BTRFS info (device vdb): found 16847 extents, stage: update data pointers
[10882.848078] BTRFS info (device vdb): relocating block group 2185786032128 flags data
[10909.042039] BTRFS info (device vdb): found 2124 extents, stage: move data extents
[10911.479138] BTRFS info (device vdb): found 2124 extents, stage: update data pointers
[10913.012155] BTRFS info (device vdb): relocating block group 2184712290304 flags data
[10939.693138] BTRFS info (device vdb): found 2141 extents, stage: move data extents
[10941.885559] BTRFS info (device vdb): found 2141 extents, stage: update data pointers
[10943.217865] BTRFS info (device vdb): relocating block group 2183638548480 flags data
[10977.135249] BTRFS info (device vdb): found 15393 extents, stage: move data extents
[10985.638913] BTRFS info (device vdb): found 15393 extents, stage: update data pointers
[10990.501006] BTRFS info (device vdb): relocating block group 2182564806656 flags data
[11016.786713] BTRFS info (device vdb): found 2115 extents, stage: move data extents
[11019.497025] BTRFS info (device vdb): found 2115 extents, stage: update data pointers
[11021.141553] BTRFS info (device vdb): relocating block group 2181491064832 flags data
[11046.942600] BTRFS info (device vdb): found 2059 extents, stage: move data extents
[11048.438198] BTRFS info (device vdb): found 2059 extents, stage: update data pointers
[11049.379115] BTRFS info (device vdb): relocating block group 2180417323008 flags data
[11074.266703] BTRFS info (device vdb): found 2060 extents, stage: move data extents
[11075.830709] BTRFS info (device vdb): found 2060 extents, stage: update data pointers
[11076.828389] BTRFS info (device vdb): relocating block group 2179343581184 flags data
[11101.650150] BTRFS info (device vdb): found 2059 extents, stage: move data extents
[11103.210952] BTRFS info (device vdb): found 2059 extents, stage: update data pointers
[11104.172644] BTRFS info (device vdb): relocating block group 2178269839360 flags data
[11129.607924] BTRFS info (device vdb): found 2065 extents, stage: move data extents
[11131.307504] BTRFS info (device vdb): found 2065 extents, stage: update data pointers
[11132.377478] BTRFS info (device vdb): relocating block group 2177196097536 flags data
[11157.298156] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[11158.390224] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[11159.052289] BTRFS info (device vdb): relocating block group 2176122355712 flags data
[11183.785648] BTRFS info (device vdb): found 2049 extents, stage: move data extents
[11184.848032] BTRFS info (device vdb): found 2049 extents, stage: update data pointers
[11185.486757] BTRFS info (device vdb): relocating block group 2175048613888 flags data
[11210.416722] BTRFS info (device vdb): found 2295 extents, stage: move data extents
[11212.668035] BTRFS info (device vdb): found 2295 extents, stage: update data pointers
[11213.901142] BTRFS info (device vdb): relocating block group 2173974872064 flags data
[11243.619027] BTRFS info (device vdb): found 9669 extents, stage: move data extents
[11248.239263] BTRFS info (device vdb): found 9669 extents, stage: update data pointers
[11250.769456] BTRFS info (device vdb): relocating block group 2172901130240 flags data
[11275.769396] BTRFS info (device vdb): found 2122 extents, stage: move data extents
[11277.517201] BTRFS info (device vdb): found 2122 extents, stage: update data pointers
[11278.513450] BTRFS info (device vdb): relocating block group 2171827388416 flags data
[11303.698598] BTRFS info (device vdb): found 2058 extents, stage: move data extents
[11304.971084] BTRFS info (device vdb): found 2058 extents, stage: update data pointers
[11305.732916] BTRFS info (device vdb): relocating block group 2170753646592 flags data
[11339.088556] BTRFS info (device vdb): found 14647 extents, stage: move data extents
[11345.272423] BTRFS info (device vdb): found 14647 extents, stage: update data pointers
[11348.692487] BTRFS info (device vdb): relocating block group 2169679904768 flags data
[11374.925902] BTRFS info (device vdb): found 2084 extents, stage: move data extents
[11377.894611] BTRFS info (device vdb): found 2084 extents, stage: update data pointers
[11379.641003] BTRFS info (device vdb): relocating block group 2168606162944 flags data
[11411.635159] BTRFS info (device vdb): found 12360 extents, stage: move data extents
[11418.318986] BTRFS info (device vdb): found 12360 extents, stage: update data pointers
[11422.113097] BTRFS info (device vdb): relocating block group 2167532421120 flags data
[11449.642640] BTRFS info (device vdb): found 2205 extents, stage: move data extents
[11453.173705] BTRFS info (device vdb): found 2205 extents, stage: update data pointers
[11455.446563] BTRFS info (device vdb): relocating block group 2166458679296 flags data
[11481.635575] BTRFS info (device vdb): found 2117 extents, stage: move data extents
[11485.010459] BTRFS info (device vdb): found 2117 extents, stage: update data pointers
[11487.060635] BTRFS info (device vdb): relocating block group 2165384937472 flags data
[11522.361549] BTRFS info (device vdb): found 17283 extents, stage: move data extents
[11530.705413] BTRFS info (device vdb): found 17283 extents, stage: update data pointers
[11535.521472] BTRFS info (device vdb): relocating block group 2164311195648 flags data
[11563.912570] BTRFS info (device vdb): found 2089 extents, stage: move data extents
[11566.057394] BTRFS info (device vdb): found 2089 extents, stage: update data pointers
[11567.475972] BTRFS info (device vdb): relocating block group 2163237453824 flags data
[11592.770470] BTRFS info (device vdb): found 2113 extents, stage: move data extents
[11596.256595] BTRFS info (device vdb): found 2113 extents, stage: update data pointers
[11598.199653] BTRFS info (device vdb): relocating block group 2162163712000 flags data
[11637.054302] BTRFS info (device vdb): found 22556 extents, stage: move data extents
[11646.574811] BTRFS info (device vdb): found 22556 extents, stage: update data pointers
[11652.025558] BTRFS info (device vdb): relocating block group 2161089970176 flags data
[11678.967032] BTRFS info (device vdb): found 2104 extents, stage: move data extents
[11681.813191] BTRFS info (device vdb): found 2104 extents, stage: update data pointers
[11683.547011] BTRFS info (device vdb): relocating block group 2160016228352 flags data
[11708.978622] BTRFS info (device vdb): found 2103 extents, stage: move data extents
[11711.794443] BTRFS info (device vdb): found 2103 extents, stage: update data pointers
[11713.536629] BTRFS info (device vdb): relocating block group 2158942486528 flags data
[11738.404342] BTRFS info (device vdb): found 2093 extents, stage: move data extents
[11740.817407] BTRFS info (device vdb): found 2093 extents, stage: update data pointers
[11742.276330] BTRFS info (device vdb): relocating block group 2157868744704 flags data
[11777.891611] BTRFS info (device vdb): found 16641 extents, stage: move data extents
[11787.189262] BTRFS info (device vdb): found 16641 extents, stage: update data pointers
[11792.244551] BTRFS info (device vdb): relocating block group 2156795002880 flags data
[11830.532462] BTRFS info (device vdb): found 23790 extents, stage: move data extents
[11840.136571] BTRFS info (device vdb): found 23790 extents, stage: update data pointers
[11845.598680] BTRFS info (device vdb): relocating block group 2155721261056 flags data
[11871.700740] BTRFS info (device vdb): found 2107 extents, stage: move data extents
[11874.660166] BTRFS info (device vdb): found 2107 extents, stage: update data pointers
[11876.548991] BTRFS info (device vdb): relocating block group 2154647519232 flags data
[11901.836464] BTRFS info (device vdb): found 2097 extents, stage: move data extents
[11904.136450] BTRFS info (device vdb): found 2097 extents, stage: update data pointers
[11905.599709] BTRFS info (device vdb): relocating block group 2153573777408 flags data
[11938.847774] BTRFS info (device vdb): found 14845 extents, stage: move data extents
[11946.804531] BTRFS info (device vdb): found 14845 extents, stage: update data pointers
[11951.305211] BTRFS info (device vdb): relocating block group 2152500035584 flags data
[11988.375407] BTRFS info (device vdb): found 15450 extents, stage: move data extents
[11996.188561] BTRFS info (device vdb): found 15450 extents, stage: update data pointers
[12000.411611] BTRFS info (device vdb): relocating block group 2151426293760 flags data
[12032.452620] BTRFS info (device vdb): found 13002 extents, stage: move data extents
[12037.161720] BTRFS info (device vdb): found 13002 extents, stage: update data pointers
[12039.874845] BTRFS info (device vdb): relocating block group 2150352551936 flags data
[12066.014586] BTRFS info (device vdb): found 2139 extents, stage: move data extents
[12068.993399] BTRFS info (device vdb): found 2139 extents, stage: update data pointers
[12070.663440] BTRFS info (device vdb): relocating block group 2149278810112 flags data
[12092.674030] workqueue: drm_fb_helper_damage_work [drm_kms_helper] hogged CPU for >10000us 32 times, consider switching to WQ_UNBOUND
[12106.549552] BTRFS info (device vdb): found 17757 extents, stage: move data extents
[12113.363246] BTRFS info (device vdb): found 17757 extents, stage: update data pointers
[12117.152423] BTRFS info (device vdb): relocating block group 2148205068288 flags data
[12143.680685] BTRFS info (device vdb): found 2138 extents, stage: move data extents
[12147.501244] BTRFS info (device vdb): found 2138 extents, stage: update data pointers
[12149.798206] BTRFS info (device vdb): relocating block group 2147131326464 flags data
[12175.744615] BTRFS info (device vdb): found 2092 extents, stage: move data extents
[12178.762189] BTRFS info (device vdb): found 2092 extents, stage: update data pointers
[12180.645320] BTRFS info (device vdb): relocating block group 2146057584640 flags data
[12205.734233] BTRFS info (device vdb): found 2085 extents, stage: move data extents
[12208.058184] BTRFS info (device vdb): found 2085 extents, stage: update data pointers
[12209.488179] BTRFS info (device vdb): relocating block group 2144983842816 flags data
[12242.890961] BTRFS info (device vdb): found 16274 extents, stage: move data extents
[12251.423504] BTRFS info (device vdb): found 16274 extents, stage: update data pointers
[12256.300379] BTRFS info (device vdb): relocating block group 2143910100992 flags data
[12282.189780] BTRFS info (device vdb): found 2142 extents, stage: move data extents
[12284.869749] BTRFS info (device vdb): found 2142 extents, stage: update data pointers
[12286.512451] BTRFS info (device vdb): relocating block group 2142836359168 flags data
[12321.817406] BTRFS info (device vdb): found 15482 extents, stage: move data extents
[12329.331274] BTRFS info (device vdb): found 15482 extents, stage: update data pointers
[12333.764411] BTRFS info (device vdb): relocating block group 2141762617344 flags data
[12361.060250] BTRFS info (device vdb): found 2099 extents, stage: move data extents
[12363.550751] BTRFS info (device vdb): found 2099 extents, stage: update data pointers
[12365.054139] BTRFS info (device vdb): relocating block group 2140688875520 flags data
[12397.188707] BTRFS info (device vdb): found 12813 extents, stage: move data extents
[12406.070400] BTRFS info (device vdb): found 12813 extents, stage: update data pointers
[12411.004693] BTRFS info (device vdb): relocating block group 2139615133696 flags data
[12436.794508] BTRFS info (device vdb): found 2106 extents, stage: move data extents
[12440.398819] BTRFS info (device vdb): found 2106 extents, stage: update data pointers
[12442.525505] BTRFS info (device vdb): relocating block group 2138541391872 flags data
[12476.029927] BTRFS info (device vdb): found 12464 extents, stage: move data extents
[12485.517730] BTRFS info (device vdb): found 12464 extents, stage: update data pointers
[12490.726624] BTRFS info (device vdb): relocating block group 2137467650048 flags data
[12516.593359] BTRFS info (device vdb): found 2111 extents, stage: move data extents
[12520.907942] BTRFS info (device vdb): found 2111 extents, stage: update data pointers
[12523.498665] BTRFS info (device vdb): relocating block group 2136393908224 flags data
[12548.921506] BTRFS info (device vdb): found 2089 extents, stage: move data extents
[12552.567399] BTRFS info (device vdb): found 2089 extents, stage: update data pointers
[12554.827069] BTRFS info (device vdb): relocating block group 2135320166400 flags data
[12580.256700] BTRFS info (device vdb): found 2113 extents, stage: move data extents
[12584.695130] BTRFS info (device vdb): found 2113 extents, stage: update data pointers
[12587.445729] BTRFS info (device vdb): relocating block group 2134246424576 flags data
[12612.182740] BTRFS info (device vdb): found 2122 extents, stage: move data extents
[12616.303282] BTRFS info (device vdb): found 2122 extents, stage: update data pointers
[12618.847101] BTRFS info (device vdb): relocating block group 2133172682752 flags data
[12643.373132] BTRFS info (device vdb): found 2089 extents, stage: move data extents
[12646.959225] BTRFS info (device vdb): found 2089 extents, stage: update data pointers
[12649.130185] BTRFS info (device vdb): relocating block group 2132098940928 flags data
[12674.234473] BTRFS info (device vdb): found 2147 extents, stage: move data extents
[12679.302296] BTRFS info (device vdb): found 2147 extents, stage: update data pointers
[12682.268372] BTRFS info (device vdb): relocating block group 2131025199104 flags data
[12706.723982] BTRFS info (device vdb): found 2133 extents, stage: move data extents
[12711.560367] BTRFS info (device vdb): found 2133 extents, stage: update data pointers
[12714.556559] BTRFS info (device vdb): relocating block group 2129951457280 flags data
[12739.766987] BTRFS info (device vdb): found 2120 extents, stage: move data extents
[12744.259632] BTRFS info (device vdb): found 2120 extents, stage: update data pointers
[12746.736148] BTRFS info (device vdb): relocating block group 2128877715456 flags data
[12771.408672] BTRFS info (device vdb): found 2160 extents, stage: move data extents
[12776.607196] BTRFS info (device vdb): found 2160 extents, stage: update data pointers
[12779.742774] BTRFS info (device vdb): relocating block group 2127803973632 flags data
[12804.949289] BTRFS info (device vdb): found 2130 extents, stage: move data extents
[12809.910842] BTRFS info (device vdb): found 2130 extents, stage: update data pointers
[12812.888248] BTRFS info (device vdb): relocating block group 2126730231808 flags data
[12838.507036] BTRFS info (device vdb): found 2114 extents, stage: move data extents
[12842.862286] BTRFS info (device vdb): found 2114 extents, stage: update data pointers
[12845.602648] BTRFS info (device vdb): relocating block group 2125656489984 flags data
[12870.700690] BTRFS info (device vdb): found 2156 extents, stage: move data extents
[12876.008262] BTRFS info (device vdb): found 2156 extents, stage: update data pointers
[12879.355602] BTRFS info (device vdb): relocating block group 2124582748160 flags data
[12905.901041] BTRFS info (device vdb): found 2156 extents, stage: move data extents
[12910.695917] BTRFS info (device vdb): found 2156 extents, stage: update data pointers
[12913.735464] BTRFS info (device vdb): relocating block group 2123509006336 flags data
[12939.856362] BTRFS info (device vdb): found 2136 extents, stage: move data extents
[12944.731227] BTRFS info (device vdb): found 2136 extents, stage: update data pointers
[12947.974021] BTRFS info (device vdb): relocating block group 2122435264512 flags data
[12974.424997] BTRFS info (device vdb): found 2106 extents, stage: move data extents
[12978.617920] BTRFS info (device vdb): found 2106 extents, stage: update data pointers
[12981.295955] BTRFS info (device vdb): relocating block group 2121361522688 flags data
[13006.823959] BTRFS info (device vdb): found 2083 extents, stage: move data extents
[13010.237160] BTRFS info (device vdb): found 2083 extents, stage: update data pointers
[13012.402319] BTRFS info (device vdb): relocating block group 2120287780864 flags data
[13037.406587] BTRFS info (device vdb): found 2062 extents, stage: move data extents
[13039.803919] BTRFS info (device vdb): found 2062 extents, stage: update data pointers
[13041.377100] BTRFS info (device vdb): relocating block group 2119214039040 flags data
[13066.419144] BTRFS info (device vdb): found 2136 extents, stage: move data extents
[13070.902649] BTRFS info (device vdb): found 2136 extents, stage: update data pointers
[13073.707896] BTRFS info (device vdb): relocating block group 2118140297216 flags data
[13098.672537] BTRFS info (device vdb): found 2081 extents, stage: move data extents
[13101.872208] BTRFS info (device vdb): found 2081 extents, stage: update data pointers
[13103.977147] BTRFS info (device vdb): relocating block group 2117066555392 flags data
[13129.472214] BTRFS info (device vdb): found 2150 extents, stage: move data extents
[13135.698279] BTRFS info (device vdb): found 2150 extents, stage: update data pointers
[13139.271150] BTRFS info (device vdb): relocating block group 2115992813568 flags data
[13165.134431] BTRFS info (device vdb): found 2119 extents, stage: move data extents
[13169.872638] BTRFS info (device vdb): found 2119 extents, stage: update data pointers
[13172.899968] BTRFS info (device vdb): relocating block group 2114919071744 flags data
[13198.646099] BTRFS info (device vdb): found 2120 extents, stage: move data extents
[13203.345884] BTRFS info (device vdb): found 2120 extents, stage: update data pointers
[13206.455414] BTRFS info (device vdb): relocating block group 2113845329920 flags data
[13232.194147] BTRFS info (device vdb): found 2131 extents, stage: move data extents
[13237.496382] BTRFS info (device vdb): found 2131 extents, stage: update data pointers
[13240.988588] BTRFS info (device vdb): relocating block group 2112771588096 flags data
[13266.538500] BTRFS info (device vdb): found 2158 extents, stage: move data extents
[13272.457792] BTRFS info (device vdb): found 2158 extents, stage: update data pointers
[13275.705460] BTRFS info (device vdb): relocating block group 2111697846272 flags data
[13301.176576] BTRFS info (device vdb): found 2125 extents, stage: move data extents
[13305.979784] BTRFS info (device vdb): found 2125 extents, stage: update data pointers
[13309.008131] BTRFS info (device vdb): relocating block group 2110624104448 flags data
[13344.142402] BTRFS info (device vdb): found 16519 extents, stage: move data extents
[13358.480801] BTRFS info (device vdb): found 16519 extents, stage: update data pointers
[13366.700205] BTRFS info (device vdb): relocating block group 2109550362624 flags data
[13392.401335] BTRFS info (device vdb): found 2145 extents, stage: move data extents
[13397.300659] BTRFS info (device vdb): found 2145 extents, stage: update data pointers
[13400.356989] BTRFS info (device vdb): relocating block group 2108476620800 flags data
[13426.173114] BTRFS info (device vdb): found 2135 extents, stage: move data extents
[13431.697921] BTRFS info (device vdb): found 2135 extents, stage: update data pointers
[13434.768540] BTRFS info (device vdb): relocating block group 2107402878976 flags data
[13459.933477] BTRFS info (device vdb): found 2123 extents, stage: move data extents
[13464.863976] BTRFS info (device vdb): found 2123 extents, stage: update data pointers
[13467.799651] BTRFS info (device vdb): relocating block group 2106329137152 flags data
[13493.348650] BTRFS info (device vdb): found 2129 extents, stage: move data extents
[13498.062949] BTRFS info (device vdb): found 2129 extents, stage: update data pointers
[13501.039480] BTRFS info (device vdb): relocating block group 2105255395328 flags data
[13526.226530] BTRFS info (device vdb): found 2077 extents, stage: move data extents
[13529.324414] BTRFS info (device vdb): found 2077 extents, stage: update data pointers
[13531.207752] BTRFS info (device vdb): relocating block group 2104181653504 flags data
[13556.345343] BTRFS info (device vdb): found 2138 extents, stage: move data extents
[13562.031412] BTRFS info (device vdb): found 2138 extents, stage: update data pointers
[13565.052365] BTRFS info (device vdb): relocating block group 2103107911680 flags data
[13589.820857] BTRFS info (device vdb): found 2134 extents, stage: move data extents
[13595.149405] BTRFS info (device vdb): found 2134 extents, stage: update data pointers
[13598.637483] BTRFS info (device vdb): relocating block group 2102034169856 flags data
[13623.776614] BTRFS info (device vdb): found 2092 extents, stage: move data extents
[13626.543975] BTRFS info (device vdb): found 2092 extents, stage: update data pointers
[13628.276471] BTRFS info (device vdb): relocating block group 2100960428032 flags data
[13653.135064] BTRFS info (device vdb): found 2109 extents, stage: move data extents
[13656.202744] BTRFS info (device vdb): found 2109 extents, stage: update data pointers
[13657.947293] BTRFS info (device vdb): relocating block group 2099886686208 flags data
[13682.965764] BTRFS info (device vdb): found 2102 extents, stage: move data extents
[13685.969794] BTRFS info (device vdb): found 2102 extents, stage: update data pointers
[13687.750886] BTRFS info (device vdb): relocating block group 2098812944384 flags data
[13713.269047] BTRFS info (device vdb): found 2106 extents, stage: move data extents
[13715.683851] BTRFS info (device vdb): found 2106 extents, stage: update data pointers
[13717.176396] BTRFS info (device vdb): relocating block group 2097739202560 flags data
[13751.333092] BTRFS info (device vdb): found 16497 extents, stage: move data extents
[13767.148949] BTRFS info (device vdb): found 16497 extents, stage: update data pointers
[13776.786809] BTRFS info (device vdb): relocating block group 2096665460736 flags data
[13803.370191] BTRFS info (device vdb): found 2097 extents, stage: move data extents
[13806.103470] BTRFS info (device vdb): found 2097 extents, stage: update data pointers
[13807.863927] BTRFS info (device vdb): relocating block group 2095591718912 flags data
[13833.530616] BTRFS info (device vdb): found 2073 extents, stage: move data extents
[13835.859081] BTRFS info (device vdb): found 2073 extents, stage: update data pointers
[13837.347192] BTRFS info (device vdb): relocating block group 2094517977088 flags data
[13861.320033] workqueue: drain_vmap_area_work hogged CPU for >10000us 4 times, consider switching to WQ_UNBOUND
[13862.308471] BTRFS info (device vdb): found 2057 extents, stage: move data extents
[13863.552314] BTRFS info (device vdb): found 2057 extents, stage: update data pointers
[13864.252412] BTRFS info (device vdb): relocating block group 2093444235264 flags data
[13889.391749] BTRFS info (device vdb): found 2058 extents, stage: move data extents
[13891.080111] BTRFS info (device vdb): found 2058 extents, stage: update data pointers
[13892.043682] BTRFS info (device vdb): relocating block group 2092370493440 flags data
[13917.439312] BTRFS info (device vdb): found 2056 extents, stage: move data extents
[13919.132787] BTRFS info (device vdb): found 2056 extents, stage: update data pointers
[13920.192978] BTRFS info (device vdb): relocating block group 2091296751616 flags data
[13945.897787] BTRFS info (device vdb): found 2057 extents, stage: move data extents
[13947.459552] BTRFS info (device vdb): found 2057 extents, stage: update data pointers
[13948.398432] BTRFS info (device vdb): relocating block group 2090223009792 flags data
[13973.617473] BTRFS info (device vdb): found 2066 extents, stage: move data extents
[13975.853758] BTRFS info (device vdb): found 2066 extents, stage: update data pointers
[13977.173885] BTRFS info (device vdb): relocating block group 2089149267968 flags data
[14002.677548] BTRFS info (device vdb): found 2098 extents, stage: move data extents
[14005.647309] BTRFS info (device vdb): found 2098 extents, stage: update data pointers
[14007.443963] BTRFS info (device vdb): relocating block group 2088075526144 flags data
[14032.837633] BTRFS info (device vdb): found 2104 extents, stage: move data extents
[14036.177822] BTRFS info (device vdb): found 2104 extents, stage: update data pointers
[14038.134797] BTRFS info (device vdb): relocating block group 2087001784320 flags data
[14063.971694] BTRFS info (device vdb): found 2085 extents, stage: move data extents
[14066.156848] BTRFS info (device vdb): found 2085 extents, stage: update data pointers
[14067.459735] BTRFS info (device vdb): relocating block group 2085928042496 flags data
[14092.240275] BTRFS info (device vdb): found 2093 extents, stage: move data extents
[14095.092437] BTRFS info (device vdb): found 2093 extents, stage: update data pointers
[14096.822134] BTRFS info (device vdb): relocating block group 2084854300672 flags data
[14121.877562] BTRFS info (device vdb): found 2084 extents, stage: move data extents
[14124.249558] BTRFS info (device vdb): found 2084 extents, stage: update data pointers
[14125.697451] BTRFS info (device vdb): relocating block group 2083780558848 flags data
[14150.367316] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[14151.526762] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[14152.247985] BTRFS info (device vdb): relocating block group 2082706817024 flags data
[14177.265066] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[14178.418167] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[14179.133135] BTRFS info (device vdb): relocating block group 2081633075200 flags data
[14204.170621] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[14205.305759] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[14206.001169] BTRFS info (device vdb): relocating block group 2080559333376 flags data
[14242.477037] BTRFS info (device vdb): found 18713 extents, stage: move data extents
[14255.670930] BTRFS info (device vdb): found 18713 extents, stage: update data pointers
[14263.177009] BTRFS info (device vdb): relocating block group 2079485591552 flags data
[14289.666467] BTRFS info (device vdb): found 2204 extents, stage: move data extents
[14291.354512] BTRFS info (device vdb): found 2204 extents, stage: update data pointers
[14292.348127] BTRFS info (device vdb): relocating block group 2078411849728 flags data
[14322.424160] BTRFS info (device vdb): found 9416 extents, stage: move data extents
[14326.484900] BTRFS info (device vdb): found 9416 extents, stage: update data pointers
[14328.727198] BTRFS info (device vdb): relocating block group 2077338107904 flags data
[14354.520614] BTRFS info (device vdb): found 2177 extents, stage: move data extents
[14356.367897] BTRFS info (device vdb): found 2177 extents, stage: update data pointers
[14357.434536] BTRFS info (device vdb): relocating block group 2076264366080 flags data
[14390.137866] BTRFS info (device vdb): found 11922 extents, stage: move data extents
[14395.840504] BTRFS info (device vdb): found 11922 extents, stage: update data pointers
[14399.042365] BTRFS info (device vdb): relocating block group 2075190624256 flags data
[14424.676566] BTRFS info (device vdb): found 2101 extents, stage: move data extents
[14426.881286] BTRFS info (device vdb): found 2101 extents, stage: update data pointers
[14428.173941] BTRFS info (device vdb): relocating block group 2074116882432 flags data
[14453.928451] BTRFS info (device vdb): found 2086 extents, stage: move data extents
[14456.396015] BTRFS info (device vdb): found 2086 extents, stage: update data pointers
[14457.908123] BTRFS info (device vdb): relocating block group 2073043140608 flags data
[14494.151836] BTRFS info (device vdb): found 18035 extents, stage: move data extents
[14503.113557] BTRFS info (device vdb): found 18035 extents, stage: update data pointers
[14507.938804] BTRFS info (device vdb): relocating block group 2071969398784 flags data
[14541.815022] BTRFS info (device vdb): found 14354 extents, stage: move data extents
[14548.976519] BTRFS info (device vdb): found 14354 extents, stage: update data pointers
[14552.986010] BTRFS info (device vdb): relocating block group 2070895656960 flags data
[14586.111812] BTRFS info (device vdb): found 12330 extents, stage: move data extents
[14590.758489] BTRFS info (device vdb): found 12330 extents, stage: update data pointers
[14593.349390] BTRFS info (device vdb): relocating block group 2069821915136 flags data
[14620.269328] BTRFS info (device vdb): found 2192 extents, stage: move data extents
[14623.722832] BTRFS info (device vdb): found 2192 extents, stage: update data pointers
[14625.740545] BTRFS info (device vdb): relocating block group 2068748173312 flags data
[14651.399095] BTRFS info (device vdb): found 2099 extents, stage: move data extents
[14654.299057] BTRFS info (device vdb): found 2099 extents, stage: update data pointers
[14655.884029] BTRFS info (device vdb): relocating block group 2067674431488 flags data
[14696.128807] BTRFS info (device vdb): found 21318 extents, stage: move data extents
[14705.692962] BTRFS info (device vdb): found 21318 extents, stage: update data pointers
[14711.213710] BTRFS info (device vdb): relocating block group 2066600689664 flags data
[14738.055302] BTRFS info (device vdb): found 2109 extents, stage: move data extents
[14740.357967] BTRFS info (device vdb): found 2109 extents, stage: update data pointers
[14741.721217] BTRFS info (device vdb): relocating block group 2065526947840 flags data
[14767.000053] BTRFS info (device vdb): found 2135 extents, stage: move data extents
[14770.436277] BTRFS info (device vdb): found 2135 extents, stage: update data pointers
[14772.227493] BTRFS info (device vdb): relocating block group 2064453206016 flags data
[14796.952337] BTRFS info (device vdb): found 2105 extents, stage: move data extents
[14799.831506] BTRFS info (device vdb): found 2105 extents, stage: update data pointers
[14801.530089] BTRFS info (device vdb): relocating block group 2063379464192 flags data
[14835.114915] BTRFS info (device vdb): found 14584 extents, stage: move data extents
[14843.195326] BTRFS info (device vdb): found 14584 extents, stage: update data pointers
[14847.641559] BTRFS info (device vdb): relocating block group 2062305722368 flags data
[14874.026478] BTRFS info (device vdb): found 2106 extents, stage: move data extents
[14876.452963] BTRFS info (device vdb): found 2106 extents, stage: update data pointers
[14877.926520] BTRFS info (device vdb): relocating block group 2061231980544 flags data
[14903.823955] BTRFS info (device vdb): found 2111 extents, stage: move data extents
[14906.329099] BTRFS info (device vdb): found 2111 extents, stage: update data pointers
[14907.782470] BTRFS info (device vdb): relocating block group 2060158238720 flags data
[14933.051655] BTRFS info (device vdb): found 2081 extents, stage: move data extents
[14935.096323] BTRFS info (device vdb): found 2081 extents, stage: update data pointers
[14936.360760] BTRFS info (device vdb): relocating block group 2059084496896 flags data
[14961.941539] BTRFS info (device vdb): found 2106 extents, stage: move data extents
[14964.566375] BTRFS info (device vdb): found 2106 extents, stage: update data pointers
[14966.096841] BTRFS info (device vdb): relocating block group 2058010755072 flags data
[14991.307727] BTRFS info (device vdb): found 2116 extents, stage: move data extents
[14993.763001] BTRFS info (device vdb): found 2116 extents, stage: update data pointers
[14995.253038] BTRFS info (device vdb): relocating block group 2056937013248 flags data
[15020.301138] BTRFS info (device vdb): found 2104 extents, stage: move data extents
[15022.672201] BTRFS info (device vdb): found 2104 extents, stage: update data pointers
[15024.094680] BTRFS info (device vdb): relocating block group 2055863271424 flags data
[15058.095883] BTRFS info (device vdb): found 14052 extents, stage: move data extents
[15066.676630] BTRFS info (device vdb): found 14052 extents, stage: update data pointers
[15071.225165] BTRFS info (device vdb): relocating block group 2054789529600 flags data
[15097.517804] BTRFS info (device vdb): found 2106 extents, stage: move data extents
[15100.062476] BTRFS info (device vdb): found 2106 extents, stage: update data pointers
[15101.595367] BTRFS info (device vdb): relocating block group 2053715787776 flags data
[15126.936030] BTRFS info (device vdb): found 2107 extents, stage: move data extents
[15129.253232] BTRFS info (device vdb): found 2107 extents, stage: update data pointers
[15130.670188] BTRFS info (device vdb): relocating block group 2052642045952 flags data
[15155.623212] BTRFS info (device vdb): found 2109 extents, stage: move data extents
[15157.912845] BTRFS info (device vdb): found 2109 extents, stage: update data pointers
[15159.265863] BTRFS info (device vdb): relocating block group 2051568304128 flags data
[15183.874206] BTRFS info (device vdb): found 2106 extents, stage: move data extents
[15185.810360] BTRFS info (device vdb): found 2106 extents, stage: update data pointers
[15186.761604] BTRFS info (device vdb): relocating block group 2050494562304 flags data
[15211.729699] BTRFS info (device vdb): found 2086 extents, stage: move data extents
[15213.636348] BTRFS info (device vdb): found 2086 extents, stage: update data pointers
[15214.802795] BTRFS info (device vdb): relocating block group 2049420820480 flags data
[15239.719651] BTRFS info (device vdb): found 2092 extents, stage: move data extents
[15241.757402] BTRFS info (device vdb): found 2092 extents, stage: update data pointers
[15243.034777] BTRFS info (device vdb): relocating block group 2048347078656 flags data
[15268.635519] BTRFS info (device vdb): found 2106 extents, stage: move data extents
[15270.819357] BTRFS info (device vdb): found 2106 extents, stage: update data pointers
[15272.171743] BTRFS info (device vdb): relocating block group 2047273336832 flags data
[15305.042884] BTRFS info (device vdb): found 13305 extents, stage: move data extents
[15313.997026] BTRFS info (device vdb): found 13305 extents, stage: update data pointers
[15318.853135] BTRFS info (device vdb): relocating block group 2046199595008 flags data
[15344.937293] BTRFS info (device vdb): found 2103 extents, stage: move data extents
[15347.068890] BTRFS info (device vdb): found 2103 extents, stage: update data pointers
[15348.397618] BTRFS info (device vdb): relocating block group 2045125853184 flags data
[15373.511561] BTRFS info (device vdb): found 2112 extents, stage: move data extents
[15375.689257] BTRFS info (device vdb): found 2112 extents, stage: update data pointers
[15376.999614] BTRFS info (device vdb): relocating block group 2044052111360 flags data
[15402.323186] BTRFS info (device vdb): found 2080 extents, stage: move data extents
[15405.008139] BTRFS info (device vdb): found 2080 extents, stage: update data pointers
[15406.635328] BTRFS info (device vdb): relocating block group 2042978369536 flags data
[15442.491158] BTRFS info (device vdb): found 17845 extents, stage: move data extents
[15450.637621] BTRFS info (device vdb): found 17845 extents, stage: update data pointers
[15455.027237] BTRFS info (device vdb): relocating block group 2041904627712 flags data
[15492.319343] BTRFS info (device vdb): found 15886 extents, stage: move data extents
[15500.174129] BTRFS info (device vdb): found 15886 extents, stage: update data pointers
[15504.421449] BTRFS info (device vdb): relocating block group 2040830885888 flags data
[15536.884547] BTRFS info (device vdb): found 11347 extents, stage: move data extents
[15542.521682] BTRFS info (device vdb): found 11347 extents, stage: update data pointers
[15545.469452] BTRFS info (device vdb): relocating block group 2039757144064 flags data
[15582.168700] BTRFS info (device vdb): found 15698 extents, stage: move data extents
[15589.459434] BTRFS info (device vdb): found 15698 extents, stage: update data pointers
[15593.151627] BTRFS info (device vdb): relocating block group 2038683402240 flags data
[15628.239176] BTRFS info (device vdb): found 14357 extents, stage: move data extents
[15634.448203] BTRFS info (device vdb): found 14357 extents, stage: update data pointers
[15637.477390] BTRFS info (device vdb): relocating block group 2037609660416 flags data
[15672.233826] BTRFS info (device vdb): found 14887 extents, stage: move data extents
[15680.172128] BTRFS info (device vdb): found 14887 extents, stage: update data pointers
[15683.965388] BTRFS info (device vdb): relocating block group 2036535918592 flags data
[15716.963290] BTRFS info (device vdb): found 11476 extents, stage: move data extents
[15721.913614] BTRFS info (device vdb): found 11476 extents, stage: update data pointers
[15724.528613] BTRFS info (device vdb): relocating block group 2035462176768 flags data
[15757.193840] BTRFS info (device vdb): found 9715 extents, stage: move data extents
[15762.558889] BTRFS info (device vdb): found 9715 extents, stage: update data pointers
[15765.473228] BTRFS info (device vdb): relocating block group 2034388434944 flags data
[15797.878400] BTRFS info (device vdb): found 9769 extents, stage: move data extents
[15803.090114] BTRFS info (device vdb): found 9769 extents, stage: update data pointers
[15805.835173] BTRFS info (device vdb): relocating block group 2033314693120 flags data
[15837.685374] BTRFS info (device vdb): found 9462 extents, stage: move data extents
[15843.889724] BTRFS info (device vdb): found 9462 extents, stage: update data pointers
[15846.786357] BTRFS info (device vdb): relocating block group 2032240951296 flags data
[15877.476579] BTRFS info (device vdb): found 9202 extents, stage: move data extents
[15882.929144] BTRFS info (device vdb): found 9202 extents, stage: update data pointers
[15885.962491] BTRFS info (device vdb): relocating block group 2031167209472 flags data
[15917.393582] BTRFS info (device vdb): found 9141 extents, stage: move data extents
[15922.363150] BTRFS info (device vdb): found 9141 extents, stage: update data pointers
[15925.112651] BTRFS info (device vdb): relocating block group 2030093467648 flags data
[15957.689254] BTRFS info (device vdb): found 11233 extents, stage: move data extents
[15963.936997] BTRFS info (device vdb): found 11233 extents, stage: update data pointers
[15967.176198] BTRFS info (device vdb): relocating block group 2029019725824 flags data
[15994.083754] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[15995.382704] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[15996.100720] BTRFS info (device vdb): relocating block group 2027945984000 flags data
[16021.189540] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[16022.594058] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[16023.383990] BTRFS info (device vdb): relocating block group 2026872242176 flags data
[16050.396364] BTRFS info (device vdb): found 3485 extents, stage: move data extents
[16054.946228] BTRFS info (device vdb): found 3485 extents, stage: update data pointers
[16056.993201] BTRFS info (device vdb): relocating block group 2025798500352 flags data
[16082.600885] BTRFS info (device vdb): found 2456 extents, stage: move data extents
[16085.413408] BTRFS info (device vdb): found 2456 extents, stage: update data pointers
[16087.005853] BTRFS info (device vdb): relocating block group 2024724758528 flags data
[16111.849401] BTRFS info (device vdb): found 2061 extents, stage: move data extents
[16114.359979] BTRFS info (device vdb): found 2061 extents, stage: update data pointers
[16115.782352] BTRFS info (device vdb): relocating block group 2023651016704 flags data
[16141.118083] BTRFS info (device vdb): found 2061 extents, stage: move data extents
[16143.214672] BTRFS info (device vdb): found 2061 extents, stage: update data pointers
[16144.461319] BTRFS info (device vdb): relocating block group 2022577274880 flags data
[16169.234482] BTRFS info (device vdb): found 2066 extents, stage: move data extents
[16171.467400] BTRFS info (device vdb): found 2066 extents, stage: update data pointers
[16172.842027] BTRFS info (device vdb): relocating block group 2021503533056 flags data
[16198.314533] BTRFS info (device vdb): found 2064 extents, stage: move data extents
[16200.746383] BTRFS info (device vdb): found 2064 extents, stage: update data pointers
[16202.202748] BTRFS info (device vdb): relocating block group 2020429791232 flags data
[16227.476466] BTRFS info (device vdb): found 2060 extents, stage: move data extents
[16229.483921] BTRFS info (device vdb): found 2060 extents, stage: update data pointers
[16230.699205] BTRFS info (device vdb): relocating block group 2019356049408 flags data
[16255.491801] BTRFS info (device vdb): found 2064 extents, stage: move data extents
[16257.803870] BTRFS info (device vdb): found 2064 extents, stage: update data pointers
[16259.261997] BTRFS info (device vdb): relocating block group 2018282307584 flags data
[16284.516879] BTRFS info (device vdb): found 2068 extents, stage: move data extents
[16286.912815] BTRFS info (device vdb): found 2068 extents, stage: update data pointers
[16288.324582] BTRFS info (device vdb): relocating block group 2017208565760 flags data
[16313.592233] BTRFS info (device vdb): found 2065 extents, stage: move data extents
[16315.776723] BTRFS info (device vdb): found 2065 extents, stage: update data pointers
[16317.094116] BTRFS info (device vdb): relocating block group 2016134823936 flags data
[16342.519775] BTRFS info (device vdb): found 2066 extents, stage: move data extents
[16344.869477] BTRFS info (device vdb): found 2066 extents, stage: update data pointers
[16346.225200] BTRFS info (device vdb): relocating block group 2015061082112 flags data
[16371.526421] BTRFS info (device vdb): found 2060 extents, stage: move data extents
[16373.731884] BTRFS info (device vdb): found 2060 extents, stage: update data pointers
[16375.031485] BTRFS info (device vdb): relocating block group 2013987340288 flags data
[16400.374911] BTRFS info (device vdb): found 2094 extents, stage: move data extents
[16402.814934] BTRFS info (device vdb): found 2094 extents, stage: update data pointers
[16404.184336] BTRFS info (device vdb): relocating block group 2012913598464 flags data
[16429.680711] BTRFS info (device vdb): found 2125 extents, stage: move data extents
[16431.745299] BTRFS info (device vdb): found 2125 extents, stage: update data pointers
[16432.999720] BTRFS info (device vdb): relocating block group 2011839856640 flags data
[16458.156666] BTRFS info (device vdb): found 2073 extents, stage: move data extents
[16459.917896] BTRFS info (device vdb): found 2073 extents, stage: update data pointers
[16460.945876] BTRFS info (device vdb): relocating block group 2010766114816 flags data
[16485.801082] BTRFS info (device vdb): found 2131 extents, stage: move data extents
[16488.157097] BTRFS info (device vdb): found 2131 extents, stage: update data pointers
[16489.397406] BTRFS info (device vdb): relocating block group 2009692372992 flags data
[16515.770419] BTRFS info (device vdb): found 2783 extents, stage: move data extents
[16519.357177] BTRFS info (device vdb): found 2783 extents, stage: update data pointers
[16521.360167] BTRFS info (device vdb): relocating block group 2008618631168 flags data
[16546.712929] BTRFS info (device vdb): found 2151 extents, stage: move data extents
[16551.668686] BTRFS info (device vdb): found 2151 extents, stage: update data pointers
[16554.678820] BTRFS info (device vdb): relocating block group 2007544889344 flags data
[16579.995689] BTRFS info (device vdb): found 2143 extents, stage: move data extents
[16584.758612] BTRFS info (device vdb): found 2143 extents, stage: update data pointers
[16587.695021] BTRFS info (device vdb): relocating block group 2006471147520 flags data
[16613.002312] BTRFS info (device vdb): found 2131 extents, stage: move data extents
[16617.605079] BTRFS info (device vdb): found 2131 extents, stage: update data pointers
[16620.510649] BTRFS info (device vdb): relocating block group 2005397405696 flags data
[16646.472497] BTRFS info (device vdb): found 2200 extents, stage: move data extents
[16652.104961] BTRFS info (device vdb): found 2200 extents, stage: update data pointers
[16655.585529] BTRFS info (device vdb): relocating block group 2004323663872 flags data
[16680.542347] BTRFS info (device vdb): found 2151 extents, stage: move data extents
[16685.852610] BTRFS info (device vdb): found 2151 extents, stage: update data pointers
[16689.321322] BTRFS info (device vdb): relocating block group 2003249922048 flags data
[16714.858034] BTRFS info (device vdb): found 2216 extents, stage: move data extents
[16720.461007] BTRFS info (device vdb): found 2216 extents, stage: update data pointers
[16724.118325] BTRFS info (device vdb): relocating block group 2002176180224 flags data
[16749.516402] BTRFS info (device vdb): found 2211 extents, stage: move data extents
[16755.297797] BTRFS info (device vdb): found 2211 extents, stage: update data pointers
[16758.891113] BTRFS info (device vdb): relocating block group 2001538646016 flags data
[16759.314293] BTRFS info (device vdb): found 17 extents, stage: move data extents
[16759.962501] BTRFS info (device vdb): found 17 extents, stage: update data pointers
[16760.367235] BTRFS info (device vdb): relocating block group 2001530257408 flags data
[16760.614171] BTRFS info (device vdb): found 17 extents, stage: move data extents
[16761.213078] BTRFS info (device vdb): found 17 extents, stage: update data pointers
[16761.599028] BTRFS info (device vdb): relocating block group 1816905404416 flags data
[16763.146980] BTRFS info (device vdb): found 721 extents, stage: move data extents
[16764.277995] BTRFS info (device vdb): found 721 extents, stage: update data pointers
[16764.895909] BTRFS info (device vdb): relocating block group 1775029452800 flags data
[16787.687962] BTRFS info (device vdb): found 1895 extents, stage: move data extents
[16790.629685] BTRFS info (device vdb): found 1895 extents, stage: update data pointers
[16792.498508] BTRFS info (device vdb): relocating block group 1773955710976 flags data
[16818.298387] BTRFS info (device vdb): found 2194 extents, stage: move data extents
[16822.324666] BTRFS info (device vdb): found 2194 extents, stage: update data pointers
[16824.933840] BTRFS info (device vdb): relocating block group 1772881969152 flags data
[16847.559080] BTRFS info (device vdb): found 1985 extents, stage: move data extents
[16851.610492] BTRFS info (device vdb): found 1985 extents, stage: update data pointers
[16854.215046] BTRFS info (device vdb): relocating block group 1762144550912 flags data
[16877.010041] BTRFS info (device vdb): found 1971 extents, stage: move data extents
[16881.607545] BTRFS info (device vdb): found 1971 extents, stage: update data pointers
[16884.558539] BTRFS info (device vdb): relocating block group 1755702099968 flags data
[16907.424970] BTRFS info (device vdb): found 1993 extents, stage: move data extents
[16911.747557] BTRFS info (device vdb): found 1993 extents, stage: update data pointers
[16914.514175] BTRFS info (device vdb): relocating block group 1751407132672 flags data
[16937.425464] BTRFS info (device vdb): found 2022 extents, stage: move data extents
[16943.173650] BTRFS info (device vdb): found 2022 extents, stage: update data pointers
[16946.649665] BTRFS info (device vdb): relocating block group 1749259649024 flags data
[16969.593512] BTRFS info (device vdb): found 2056 extents, stage: move data extents
[16976.372978] BTRFS info (device vdb): found 2056 extents, stage: update data pointers
[16980.842447] BTRFS info (device vdb): relocating block group 1740669714432 flags data
[17003.803589] BTRFS info (device vdb): found 1973 extents, stage: move data extents
[17008.119301] BTRFS info (device vdb): found 1973 extents, stage: update data pointers
[17010.998037] BTRFS info (device vdb): relocating block group 1738522230784 flags data
[17034.949828] BTRFS info (device vdb): found 2014 extents, stage: move data extents
[17039.813236] BTRFS info (device vdb): found 2014 extents, stage: update data pointers
[17042.805537] BTRFS info (device vdb): relocating block group 1726711070720 flags data
[17067.893878] BTRFS info (device vdb): found 2127 extents, stage: move data extents
[17071.239730] BTRFS info (device vdb): found 2127 extents, stage: update data pointers
[17073.263542] BTRFS info (device vdb): relocating block group 1719194877952 flags data
[17095.875048] BTRFS info (device vdb): found 1856 extents, stage: move data extents
[17097.086188] BTRFS info (device vdb): found 1856 extents, stage: update data pointers
[17097.799300] BTRFS info (device vdb): relocating block group 1717047394304 flags data
[17120.527886] BTRFS info (device vdb): found 1865 extents, stage: move data extents
[17121.999224] BTRFS info (device vdb): found 1865 extents, stage: update data pointers
[17122.900104] BTRFS info (device vdb): relocating block group 1709531201536 flags data
[17147.946807] BTRFS info (device vdb): found 2056 extents, stage: move data extents
[17149.618560] BTRFS info (device vdb): found 2056 extents, stage: update data pointers
[17150.595972] BTRFS info (device vdb): relocating block group 1695572557824 flags data
[17173.299530] BTRFS info (device vdb): found 1920 extents, stage: move data extents
[17176.243653] BTRFS info (device vdb): found 1920 extents, stage: update data pointers
[17177.976058] BTRFS info (device vdb): relocating block group 1688056365056 flags data
[17178.954965] BTRFS info (device vdb): found 81 extents, stage: move data extents
[17179.795994] BTRFS info (device vdb): found 81 extents, stage: update data pointers
[17180.279400] BTRFS info (device vdb): relocating block group 1680540172288 flags data
[17202.786566] BTRFS info (device vdb): found 1928 extents, stage: move data extents
[17206.164767] BTRFS info (device vdb): found 1928 extents, stage: update data pointers
[17208.134026] BTRFS info (device vdb): relocating block group 1678392688640 flags data
[17231.248935] BTRFS info (device vdb): found 1856 extents, stage: move data extents
[17232.527556] BTRFS info (device vdb): found 1856 extents, stage: update data pointers
[17233.262155] BTRFS info (device vdb): relocating block group 1677318946816 flags data
[17258.507531] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[17259.801193] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[17260.492665] BTRFS info (device vdb): relocating block group 1676245204992 flags data
[17283.024853] BTRFS info (device vdb): found 1857 extents, stage: move data extents
[17284.139885] BTRFS info (device vdb): found 1857 extents, stage: update data pointers
[17284.874984] BTRFS info (device vdb): relocating block group 1674097721344 flags data
[17307.355130] BTRFS info (device vdb): found 1856 extents, stage: move data extents
[17308.404102] BTRFS info (device vdb): found 1856 extents, stage: update data pointers
[17309.053115] BTRFS info (device vdb): relocating block group 1673023979520 flags data
[17342.147458] BTRFS info (device vdb): found 15583 extents, stage: move data extents
[17350.136020] BTRFS info (device vdb): found 15583 extents, stage: update data pointers
[17354.527120] BTRFS info (device vdb): relocating block group 1671950237696 flags data
[17378.360594] BTRFS info (device vdb): found 1856 extents, stage: move data extents
[17379.466886] BTRFS info (device vdb): found 1856 extents, stage: update data pointers
[17380.133794] BTRFS info (device vdb): relocating block group 1669802754048 flags data
[17402.910410] BTRFS info (device vdb): found 1972 extents, stage: move data extents
[17404.511568] BTRFS info (device vdb): found 1972 extents, stage: update data pointers
[17405.370224] BTRFS info (device vdb): relocating block group 1668729012224 flags data
[17435.641024] BTRFS info (device vdb): found 9513 extents, stage: move data extents
[17439.859271] BTRFS info (device vdb): found 9513 extents, stage: update data pointers
[17442.062151] BTRFS info (device vdb): relocating block group 1667521052672 flags data
[17467.914162] BTRFS info (device vdb): found 2214 extents, stage: move data extents
[17469.756862] BTRFS info (device vdb): found 2214 extents, stage: update data pointers
[17470.829610] BTRFS info (device vdb): relocating block group 1665373569024 flags data
[17496.846531] BTRFS info (device vdb): found 2183 extents, stage: move data extents
[17498.677803] BTRFS info (device vdb): found 2183 extents, stage: update data pointers
[17499.746311] BTRFS info (device vdb): relocating block group 1661078601728 flags data
[17500.505054] BTRFS info (device vdb): found 41 extents, stage: move data extents
[17501.176081] BTRFS info (device vdb): found 41 extents, stage: update data pointers
[17501.590068] BTRFS info (device vdb): relocating block group 1660004859904 flags data
[17527.578923] BTRFS info (device vdb): found 2178 extents, stage: move data extents
[17532.304255] BTRFS info (device vdb): found 2178 extents, stage: update data pointers
[17535.298264] BTRFS info (device vdb): relocating block group 1655189803008 flags data
[17545.502657] BTRFS info (device vdb): found 800 extents, stage: move data extents
[17546.669142] BTRFS info (device vdb): found 800 extents, stage: update data pointers
[17547.367473] BTRFS info (device vdb): relocating block group 1654116061184 flags data
[17572.987655] BTRFS info (device vdb): found 2133 extents, stage: move data extents
[17576.706907] BTRFS info (device vdb): found 2133 extents, stage: update data pointers
[17578.923744] BTRFS info (device vdb): relocating block group 1654027030528 flags data
[17579.921904] BTRFS info (device vdb): found 74 extents, stage: move data extents
[17580.569364] BTRFS info (device vdb): found 74 extents, stage: update data pointers
[17580.959815] BTRFS info (device vdb): relocating block group 1650475401216 flags data
[17604.036140] BTRFS info (device vdb): found 1966 extents, stage: move data extents
[17606.109537] BTRFS info (device vdb): found 1966 extents, stage: update data pointers
[17607.386902] BTRFS info (device vdb): relocating block group 1649401659392 flags data
[17632.682343] BTRFS info (device vdb): found 2069 extents, stage: move data extents
[17634.644369] BTRFS info (device vdb): found 2069 extents, stage: update data pointers
[17635.794454] BTRFS info (device vdb): relocating block group 1638530023424 flags data
[17661.167047] BTRFS info (device vdb): found 2588 extents, stage: move data extents
[17667.499525] BTRFS info (device vdb): found 2588 extents, stage: update data pointers
[17671.171672] BTRFS info (device vdb): relocating block group 1601083277312 flags data
[17693.634359] BTRFS info (device vdb): found 1863 extents, stage: move data extents
[17695.046029] BTRFS info (device vdb): found 1863 extents, stage: update data pointers
[17695.850313] BTRFS info (device vdb): relocating block group 1600009535488 flags data
[17730.517852] BTRFS info (device vdb): found 18178 extents, stage: move data extents
[17740.780706] BTRFS info (device vdb): found 18178 extents, stage: update data pointers
[17746.375429] BTRFS info (device vdb): relocating block group 1596654092288 flags data
[17773.060221] BTRFS info (device vdb): found 2160 extents, stage: move data extents
[17778.355024] BTRFS info (device vdb): found 2160 extents, stage: update data pointers
[17781.681805] BTRFS info (device vdb): relocating block group 1592459788288 flags data
[17792.707905] BTRFS info (device vdb): found 930 extents, stage: move data extents
[17796.194094] BTRFS info (device vdb): found 930 extents, stage: update data pointers
[17798.619674] BTRFS info (device vdb): relocating block group 1590345859072 flags data
[17801.957471] BTRFS info (device vdb): found 242 extents, stage: move data extents
[17803.340235] BTRFS info (device vdb): found 242 extents, stage: update data pointers
[17804.255734] BTRFS info (device vdb): relocating block group 1588198375424 flags data
[17827.162853] BTRFS info (device vdb): found 1898 extents, stage: move data extents
[17829.354781] BTRFS info (device vdb): found 1898 extents, stage: update data pointers
[17830.777179] BTRFS info (device vdb): relocating block group 1586185109504 flags data
[17851.099853] BTRFS info (device vdb): found 1618 extents, stage: move data extents
[17852.889926] BTRFS info (device vdb): found 1618 extents, stage: update data pointers
[17854.056116] BTRFS info (device vdb): relocating block group 1578400481280 flags data
[17879.469230] BTRFS info (device vdb): found 2074 extents, stage: move data extents
[17882.956811] BTRFS info (device vdb): found 2074 extents, stage: update data pointers
[17885.084160] BTRFS info (device vdb): relocating block group 1573165989888 flags data
[17897.416303] BTRFS info (device vdb): found 967 extents, stage: move data extents
[17898.873410] BTRFS info (device vdb): found 967 extents, stage: update data pointers
[17899.569013] BTRFS info (device vdb): relocating block group 1503372771328 flags data
[17900.448444] BTRFS info (device vdb): found 65 extents, stage: move data extents
[17901.198373] BTRFS info (device vdb): found 65 extents, stage: update data pointers
[17901.683507] BTRFS info (device vdb): relocating block group 1379892461568 flags data
[17905.752362] BTRFS info (device vdb): found 322 extents, stage: move data extents
[17906.512291] BTRFS info (device vdb): found 322 extents, stage: update data pointers
[17907.078557] BTRFS info (device vdb): relocating block group 1378818719744 flags data
[17932.354993] BTRFS info (device vdb): found 2117 extents, stage: move data extents
[17933.810189] BTRFS info (device vdb): found 2117 extents, stage: update data pointers
[17934.609817] BTRFS info (device vdb): relocating block group 1377744977920 flags data
[17956.962440] BTRFS info (device vdb): found 1860 extents, stage: move data extents
[17958.222420] BTRFS info (device vdb): found 1860 extents, stage: update data pointers
[17959.006139] BTRFS info (device vdb): relocating block group 1376671236096 flags data
[17983.761230] BTRFS info (device vdb): found 2054 extents, stage: move data extents
[17985.344185] BTRFS info (device vdb): found 2054 extents, stage: update data pointers
[17986.173247] BTRFS info (device vdb): relocating block group 1376268582912 flags data
[17993.691564] BTRFS info (device vdb): found 576 extents, stage: move data extents
[17994.426909] BTRFS info (device vdb): found 576 extents, stage: update data pointers
[17994.860344] BTRFS info (device vdb): relocating block group 1375194841088 flags data
[18019.526541] BTRFS info (device vdb): found 2049 extents, stage: move data extents
[18020.690598] BTRFS info (device vdb): found 2049 extents, stage: update data pointers
[18021.364663] BTRFS info (device vdb): relocating block group 1374523752448 flags data
[18036.814213] BTRFS info (device vdb): found 1246 extents, stage: move data extents
[18037.801781] BTRFS info (device vdb): found 1246 extents, stage: update data pointers
[18038.383741] BTRFS info (device vdb): relocating block group 1374255316992 flags data
[18042.665085] BTRFS info (device vdb): found 337 extents, stage: move data extents
[18044.164777] BTRFS info (device vdb): found 337 extents, stage: update data pointers
[18045.079423] BTRFS info (device vdb): relocating block group 1369155043328 flags data
[18067.679170] BTRFS info (device vdb): found 1857 extents, stage: move data extents
[18069.263455] BTRFS info (device vdb): found 1857 extents, stage: update data pointers
[18070.267243] BTRFS info (device vdb): relocating block group 1368081301504 flags data
[18095.366132] BTRFS info (device vdb): found 2087 extents, stage: move data extents
[18098.049899] BTRFS info (device vdb): found 2087 extents, stage: update data pointers
[18099.596227] BTRFS info (device vdb): relocating block group 1367007559680 flags data
[18122.175061] BTRFS info (device vdb): found 1859 extents, stage: move data extents
[18123.532515] BTRFS info (device vdb): found 1859 extents, stage: update data pointers
[18124.391304] BTRFS info (device vdb): relocating block group 1365933817856 flags data
[18149.237965] BTRFS info (device vdb): found 2050 extents, stage: move data extents
[18150.529661] BTRFS info (device vdb): found 2050 extents, stage: update data pointers
[18151.327456] BTRFS info (device vdb): relocating block group 1364860076032 flags data
[18174.004143] BTRFS info (device vdb): found 1882 extents, stage: move data extents
[18175.246571] BTRFS info (device vdb): found 1882 extents, stage: update data pointers
[18176.037543] BTRFS info (device vdb): relocating block group 1363786334208 flags data
[18201.160936] BTRFS info (device vdb): found 2056 extents, stage: move data extents
[18202.436439] BTRFS info (device vdb): found 2056 extents, stage: update data pointers
[18203.213115] BTRFS info (device vdb): relocating block group 1362712592384 flags data
[18226.038122] BTRFS info (device vdb): found 1861 extents, stage: move data extents
[18227.246965] BTRFS info (device vdb): found 1861 extents, stage: update data pointers
[18227.973974] BTRFS info (device vdb): relocating block group 1361638850560 flags data
[18253.072770] BTRFS info (device vdb): found 2053 extents, stage: move data extents
[18254.250791] BTRFS info (device vdb): found 2053 extents, stage: update data pointers
[18254.954937] BTRFS info (device vdb): relocating block group 1360565108736 flags data
[18277.646491] BTRFS info (device vdb): found 1879 extents, stage: move data extents
[18278.885312] BTRFS info (device vdb): found 1879 extents, stage: update data pointers
[18279.647404] BTRFS info (device vdb): relocating block group 1359491366912 flags data
[18304.475184] BTRFS info (device vdb): found 2063 extents, stage: move data extents
[18305.888407] BTRFS info (device vdb): found 2063 extents, stage: update data pointers
[18306.611655] BTRFS info (device vdb): relocating block group 1358417625088 flags data
[18329.192913] BTRFS info (device vdb): found 1879 extents, stage: move data extents
[18330.402799] BTRFS info (device vdb): found 1879 extents, stage: update data pointers
[18331.140521] BTRFS info (device vdb): relocating block group 1357343883264 flags data
[18356.037361] BTRFS info (device vdb): found 2051 extents, stage: move data extents
[18357.157518] BTRFS info (device vdb): found 2051 extents, stage: update data pointers
[18357.832687] BTRFS info (device vdb): relocating block group 1356270141440 flags data
[18381.513758] BTRFS info (device vdb): found 1856 extents, stage: move data extents
[18382.887863] BTRFS info (device vdb): found 1856 extents, stage: update data pointers
[18383.725855] BTRFS info (device vdb): relocating block group 1355196399616 flags data
[18408.721825] BTRFS info (device vdb): found 2049 extents, stage: move data extents
[18409.847364] BTRFS info (device vdb): found 2049 extents, stage: update data pointers
[18410.527865] BTRFS info (device vdb): relocating block group 1354122657792 flags data
[18433.024123] BTRFS info (device vdb): found 1863 extents, stage: move data extents
[18434.231520] BTRFS info (device vdb): found 1863 extents, stage: update data pointers
[18434.958683] BTRFS info (device vdb): relocating block group 1351975174144 flags data
[18457.158702] BTRFS info (device vdb): found 1865 extents, stage: move data extents
[18458.358080] BTRFS info (device vdb): found 1865 extents, stage: update data pointers
[18459.132312] BTRFS info (device vdb): relocating block group 1350901432320 flags data
[18484.265331] BTRFS info (device vdb): found 2061 extents, stage: move data extents
[18485.461050] BTRFS info (device vdb): found 2061 extents, stage: update data pointers
[18486.180547] BTRFS info (device vdb): relocating block group 1349827690496 flags data
[18508.867741] BTRFS info (device vdb): found 1869 extents, stage: move data extents
[18510.077878] BTRFS info (device vdb): found 1869 extents, stage: update data pointers
[18510.834907] BTRFS info (device vdb): relocating block group 1348753948672 flags data
[18540.755296] BTRFS info (device vdb): found 9360 extents, stage: move data extents
[18547.995971] BTRFS info (device vdb): found 9360 extents, stage: update data pointers
[18552.138486] BTRFS info (device vdb): relocating block group 1347680206848 flags data
[18574.792401] BTRFS info (device vdb): found 1868 extents, stage: move data extents
[18576.075989] BTRFS info (device vdb): found 1868 extents, stage: update data pointers
[18576.865650] BTRFS info (device vdb): relocating block group 1346606465024 flags data
[18601.796945] BTRFS info (device vdb): found 2063 extents, stage: move data extents
[18602.966759] BTRFS info (device vdb): found 2063 extents, stage: update data pointers
[18603.675491] BTRFS info (device vdb): relocating block group 1344459018240 flags data
[18605.618742] BTRFS info (device vdb): found 1018 extents, stage: move data extents
[18606.597546] BTRFS info (device vdb): found 1018 extents, stage: update data pointers
[18607.166569] BTRFS info (device vdb): relocating block group 1342311497728 flags data
[18631.588301] BTRFS info (device vdb): found 2058 extents, stage: move data extents
[18633.212355] BTRFS info (device vdb): found 2058 extents, stage: update data pointers
[18634.014943] BTRFS info (device vdb): relocating block group 1341237755904 flags data
[18657.789924] BTRFS info (device vdb): found 1859 extents, stage: move data extents
[18659.168700] BTRFS info (device vdb): found 1859 extents, stage: update data pointers
[18660.009432] BTRFS info (device vdb): relocating block group 1339895578624 flags data
[18664.491401] BTRFS info (device vdb): found 320 extents, stage: move data extents
[18665.224511] BTRFS info (device vdb): found 320 extents, stage: update data pointers
[18665.645701] BTRFS info (device vdb): relocating block group 1335869046784 flags data
[18667.455125] BTRFS info (device vdb): found 139 extents, stage: move data extents
[18667.979786] BTRFS info (device vdb): found 139 extents, stage: update data pointers
[18668.276636] BTRFS info (device vdb): relocating block group 1334795304960 flags data
[18690.587118] BTRFS info (device vdb): found 1856 extents, stage: move data extents
[18691.740977] BTRFS info (device vdb): found 1856 extents, stage: update data pointers
[18692.445370] BTRFS info (device vdb): relocating block group 1332647821312 flags data
[18714.624188] BTRFS info (device vdb): found 1858 extents, stage: move data extents
[18715.806450] BTRFS info (device vdb): found 1858 extents, stage: update data pointers
[18716.526742] BTRFS info (device vdb): relocating block group 1331574079488 flags data
[18741.349947] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[18742.443779] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[18743.097204] BTRFS info (device vdb): relocating block group 1329426595840 flags data
[18768.323870] BTRFS info (device vdb): found 2051 extents, stage: move data extents
[18769.622471] BTRFS info (device vdb): found 2051 extents, stage: update data pointers
[18770.468616] BTRFS info (device vdb): relocating block group 1328352854016 flags data
[18793.383232] BTRFS info (device vdb): found 1877 extents, stage: move data extents
[18794.846378] BTRFS info (device vdb): found 1877 extents, stage: update data pointers
[18795.815126] BTRFS info (device vdb): relocating block group 1327279112192 flags data
[18820.800738] BTRFS info (device vdb): found 2055 extents, stage: move data extents
[18822.009553] BTRFS info (device vdb): found 2055 extents, stage: update data pointers
[18822.706358] BTRFS info (device vdb): relocating block group 1326205370368 flags data
[18845.276500] BTRFS info (device vdb): found 1859 extents, stage: move data extents
[18846.939364] BTRFS info (device vdb): found 1859 extents, stage: update data pointers
[18848.114695] BTRFS info (device vdb): relocating block group 1324057886720 flags data
[18870.868535] BTRFS info (device vdb): found 1859 extents, stage: move data extents
[18872.895579] BTRFS info (device vdb): found 1859 extents, stage: update data pointers
[18874.234078] BTRFS info (device vdb): relocating block group 1321910403072 flags data
[18902.757534] BTRFS info (device vdb): found 9914 extents, stage: move data extents
[18916.593073] BTRFS info (device vdb): found 9914 extents, stage: update data pointers
[18924.473798] BTRFS info (device vdb): relocating block group 1318689177600 flags data
[18950.356478] BTRFS info (device vdb): found 2133 extents, stage: move data extents
[18954.657128] BTRFS info (device vdb): found 2133 extents, stage: update data pointers
[18957.189245] BTRFS info (device vdb): relocating block group 1310099243008 flags data
[18971.519125] BTRFS info (device vdb): found 1131 extents, stage: move data extents
[18971.708147] workqueue: ttm_bo_delayed_delete [ttm] hogged CPU for >10000us 8 times, consider switching to WQ_UNBOUND
[18974.607331] BTRFS info (device vdb): found 1131 extents, stage: update data pointers
[18976.625413] BTRFS info (device vdb): relocating block group 1309428154368 flags data
[18978.798983] BTRFS info (device vdb): found 155 extents, stage: move data extents
[18979.297615] BTRFS info (device vdb): found 155 extents, stage: update data pointers
[18979.617319] BTRFS info (device vdb): relocating block group 1309293936640 flags data
[18981.165943] BTRFS info (device vdb): found 115 extents, stage: move data extents
[18982.127625] BTRFS info (device vdb): found 115 extents, stage: update data pointers
[18982.729655] BTRFS info (device vdb): relocating block group 1309025501184 flags data
[18988.458546] BTRFS info (device vdb): found 434 extents, stage: move data extents
[18990.267145] BTRFS info (device vdb): found 434 extents, stage: update data pointers
[18991.421213] BTRFS info (device vdb): relocating block group 1307683323904 flags data
[18995.591586] BTRFS info (device vdb): found 322 extents, stage: move data extents
[18997.265570] BTRFS info (device vdb): found 322 extents, stage: update data pointers
[18998.204073] BTRFS info (device vdb): relocating block group 1304730533888 flags data
[19020.818490] BTRFS info (device vdb): found 1951 extents, stage: move data extents
[19025.285116] BTRFS info (device vdb): found 1951 extents, stage: update data pointers
[19028.157655] BTRFS info (device vdb): relocating block group 1300435566592 flags data
[19053.622711] BTRFS info (device vdb): found 2119 extents, stage: move data extents
[19058.585409] BTRFS info (device vdb): found 2119 extents, stage: update data pointers
[19062.075392] BTRFS info (device vdb): relocating block group 1299361824768 flags data
[19087.689941] BTRFS info (device vdb): found 2410 extents, stage: move data extents
[19092.868637] BTRFS info (device vdb): found 2410 extents, stage: update data pointers
[19095.883869] BTRFS info (device vdb): relocating block group 1296140599296 flags data
[19122.243012] BTRFS info (device vdb): found 2078 extents, stage: move data extents
[19125.351942] BTRFS info (device vdb): found 2078 extents, stage: update data pointers
[19127.381497] BTRFS info (device vdb): relocating block group 1292919373824 flags data
[19152.528841] BTRFS info (device vdb): found 2179 extents, stage: move data extents
[19158.168536] BTRFS info (device vdb): found 2179 extents, stage: update data pointers
[19161.628965] BTRFS info (device vdb): relocating block group 1291845632000 flags data
[19187.406833] BTRFS info (device vdb): found 2062 extents, stage: move data extents
[19189.947987] BTRFS info (device vdb): found 2062 extents, stage: update data pointers
[19191.578797] BTRFS info (device vdb): relocating block group 1290771890176 flags data
[19217.576887] BTRFS info (device vdb): found 2295 extents, stage: move data extents
[19222.255161] BTRFS info (device vdb): found 2295 extents, stage: update data pointers
[19225.132578] BTRFS info (device vdb): relocating block group 1288758624256 flags data
[19230.973945] BTRFS info (device vdb): found 460 extents, stage: move data extents
[19232.722964] BTRFS info (device vdb): found 460 extents, stage: update data pointers
[19233.895404] BTRFS info (device vdb): relocating block group 1286476922880 flags data
[19259.123209] BTRFS info (device vdb): found 2102 extents, stage: move data extents
[19261.963856] BTRFS info (device vdb): found 2102 extents, stage: update data pointers
[19263.794150] BTRFS info (device vdb): relocating block group 1282181955584 flags data
[19289.199806] BTRFS info (device vdb): found 2078 extents, stage: move data extents
[19292.431615] BTRFS info (device vdb): found 2078 extents, stage: update data pointers
[19294.577024] BTRFS info (device vdb): relocating block group 1277886988288 flags data
[19319.759978] BTRFS info (device vdb): found 2074 extents, stage: move data extents
[19321.825827] BTRFS info (device vdb): found 2074 extents, stage: update data pointers
[19323.144914] BTRFS info (device vdb): relocating block group 1276813246464 flags data
[19348.111139] BTRFS info (device vdb): found 2118 extents, stage: move data extents
[19351.289752] BTRFS info (device vdb): found 2118 extents, stage: update data pointers
[19353.321978] BTRFS info (device vdb): relocating block group 1274665762816 flags data
[19379.342770] BTRFS info (device vdb): found 2356 extents, stage: move data extents
[19384.966246] BTRFS info (device vdb): found 2356 extents, stage: update data pointers
[19388.337565] BTRFS info (device vdb): relocating block group 1266075828224 flags data
[19413.619502] BTRFS info (device vdb): found 2246 extents, stage: move data extents
[19418.251142] BTRFS info (device vdb): found 2246 extents, stage: update data pointers
[19421.171046] BTRFS info (device vdb): relocating block group 1265002086400 flags data
[19447.034054] BTRFS info (device vdb): found 2230 extents, stage: move data extents
[19450.469094] BTRFS info (device vdb): found 2230 extents, stage: update data pointers
[19452.599204] BTRFS info (device vdb): relocating block group 1263928344576 flags data
[19478.168061] BTRFS info (device vdb): found 2237 extents, stage: move data extents
[19483.092131] BTRFS info (device vdb): found 2237 extents, stage: update data pointers
[19486.177424] BTRFS info (device vdb): relocating block group 1262854602752 flags data
[19512.193813] BTRFS info (device vdb): found 2708 extents, stage: move data extents
[19517.134286] BTRFS info (device vdb): found 2708 extents, stage: update data pointers
[19520.304311] BTRFS info (device vdb): relocating block group 1261780860928 flags data
[19545.744857] BTRFS info (device vdb): found 2074 extents, stage: move data extents
[19547.504264] BTRFS info (device vdb): found 2074 extents, stage: update data pointers
[19548.608298] BTRFS info (device vdb): relocating block group 1260707119104 flags data
[19573.741260] BTRFS info (device vdb): found 2123 extents, stage: move data extents
[19576.943264] BTRFS info (device vdb): found 2123 extents, stage: update data pointers
[19579.000838] BTRFS info (device vdb): relocating block group 1259633377280 flags data
[19604.091753] BTRFS info (device vdb): found 2144 extents, stage: move data extents
[19608.651272] BTRFS info (device vdb): found 2144 extents, stage: update data pointers
[19611.300938] BTRFS info (device vdb): relocating block group 1257485893632 flags data
[19643.482287] BTRFS info (device vdb): found 11941 extents, stage: move data extents
[19658.050979] BTRFS info (device vdb): found 11941 extents, stage: update data pointers
[19666.563158] BTRFS info (device vdb): relocating block group 1256412151808 flags data
[19692.402314] BTRFS info (device vdb): found 2122 extents, stage: move data extents
[19695.367650] BTRFS info (device vdb): found 2122 extents, stage: update data pointers
[19697.256339] BTRFS info (device vdb): relocating block group 1255338409984 flags data
[19722.510000] BTRFS info (device vdb): found 2199 extents, stage: move data extents
[19726.564477] BTRFS info (device vdb): found 2199 extents, stage: update data pointers
[19729.192983] BTRFS info (device vdb): relocating block group 1253190926336 flags data
[19752.287098] BTRFS info (device vdb): found 2094 extents, stage: move data extents
[19756.636414] BTRFS info (device vdb): found 2094 extents, stage: update data pointers
[19759.412443] BTRFS info (device vdb): relocating block group 1245674733568 flags data
[19784.309694] BTRFS info (device vdb): found 2093 extents, stage: move data extents
[19787.252837] BTRFS info (device vdb): found 2093 extents, stage: update data pointers
[19789.284512] BTRFS info (device vdb): relocating block group 1242453508096 flags data
[19811.401199] BTRFS info (device vdb): found 1860 extents, stage: move data extents
[19813.415437] BTRFS info (device vdb): found 1860 extents, stage: update data pointers
[19814.650042] BTRFS info (device vdb): relocating block group 1240306024448 flags data
[19837.619001] BTRFS info (device vdb): found 1860 extents, stage: move data extents
[19839.315873] BTRFS info (device vdb): found 1860 extents, stage: update data pointers
[19840.448678] BTRFS info (device vdb): relocating block group 1239232282624 flags data
[19865.468343] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[19866.722828] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[19867.444971] BTRFS info (device vdb): relocating block group 1238158540800 flags data
[19890.087251] BTRFS info (device vdb): found 1859 extents, stage: move data extents
[19891.866222] BTRFS info (device vdb): found 1859 extents, stage: update data pointers
[19893.062429] BTRFS info (device vdb): relocating block group 1237084798976 flags data
[19917.900826] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[19919.176413] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[19919.926190] BTRFS info (device vdb): relocating block group 1232068411392 flags data
[19938.091092] BTRFS info (device vdb): found 1798 extents, stage: move data extents
[19943.138504] BTRFS info (device vdb): found 1798 extents, stage: update data pointers
[19946.366224] BTRFS info (device vdb): relocating block group 1227421122560 flags data
[19969.744154] BTRFS info (device vdb): found 1861 extents, stage: move data extents
[19971.820276] BTRFS info (device vdb): found 1861 extents, stage: update data pointers
[19973.121546] BTRFS info (device vdb): relocating block group 1226347380736 flags data
[19998.099173] BTRFS info (device vdb): found 2051 extents, stage: move data extents
[19999.773675] BTRFS info (device vdb): found 2051 extents, stage: update data pointers
[20000.860885] BTRFS info (device vdb): relocating block group 1224199897088 flags data
[20026.158812] BTRFS info (device vdb): found 2050 extents, stage: move data extents
[20027.537141] BTRFS info (device vdb): found 2050 extents, stage: update data pointers
[20028.351612] BTRFS info (device vdb): relocating block group 1223126155264 flags data
[20051.609971] BTRFS info (device vdb): found 1859 extents, stage: move data extents
[20053.662688] BTRFS info (device vdb): found 1859 extents, stage: update data pointers
[20054.858333] BTRFS info (device vdb): relocating block group 1222052413440 flags data
[20079.752678] BTRFS info (device vdb): found 2055 extents, stage: move data extents
[20081.120631] BTRFS info (device vdb): found 2055 extents, stage: update data pointers
[20081.989563] BTRFS info (device vdb): relocating block group 1220978671616 flags data
[20104.435641] BTRFS info (device vdb): found 1860 extents, stage: move data extents
[20106.291894] BTRFS info (device vdb): found 1860 extents, stage: update data pointers
[20107.532721] BTRFS info (device vdb): relocating block group 1219904929792 flags data
[20132.529173] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[20133.804628] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[20134.639807] BTRFS info (device vdb): relocating block group 1218831187968 flags data
[20157.341399] BTRFS info (device vdb): found 1860 extents, stage: move data extents
[20159.223133] BTRFS info (device vdb): found 1860 extents, stage: update data pointers
[20160.522125] BTRFS info (device vdb): relocating block group 1217757446144 flags data
[20185.818814] BTRFS info (device vdb): found 2050 extents, stage: move data extents
[20187.409766] BTRFS info (device vdb): found 2050 extents, stage: update data pointers
[20188.393723] BTRFS info (device vdb): relocating block group 1214536220672 flags data
[20211.427209] BTRFS info (device vdb): found 1859 extents, stage: move data extents
[20212.986246] BTRFS info (device vdb): found 1859 extents, stage: update data pointers
[20214.074466] BTRFS info (device vdb): relocating block group 1212388737024 flags data
[20236.967887] BTRFS info (device vdb): found 1861 extents, stage: move data extents
[20238.899425] BTRFS info (device vdb): found 1861 extents, stage: update data pointers
[20240.104554] BTRFS info (device vdb): relocating block group 1211314995200 flags data
[20265.228081] BTRFS info (device vdb): found 2049 extents, stage: move data extents
[20266.859298] BTRFS info (device vdb): found 2049 extents, stage: update data pointers
[20267.841361] BTRFS info (device vdb): relocating block group 1210241253376 flags data
[20290.900614] BTRFS info (device vdb): found 1860 extents, stage: move data extents
[20292.873962] BTRFS info (device vdb): found 1860 extents, stage: update data pointers
[20294.394701] BTRFS info (device vdb): relocating block group 1209167511552 flags data
[20319.326698] BTRFS info (device vdb): found 2052 extents, stage: move data extents
[20320.779541] BTRFS info (device vdb): found 2052 extents, stage: update data pointers
[20321.612362] BTRFS info (device vdb): relocating block group 1208093769728 flags data
[20344.528178] BTRFS info (device vdb): found 1864 extents, stage: move data extents
[20346.447919] BTRFS info (device vdb): found 1864 extents, stage: update data pointers
[20347.760825] BTRFS info (device vdb): relocating block group 1207020027904 flags data
[20372.957324] BTRFS info (device vdb): found 2051 extents, stage: move data extents
[20374.590852] BTRFS info (device vdb): found 2051 extents, stage: update data pointers
[20375.523667] BTRFS info (device vdb): relocating block group 1204872544256 flags data
[20400.555708] BTRFS info (device vdb): found 2050 extents, stage: move data extents
[20402.063528] BTRFS info (device vdb): found 2050 extents, stage: update data pointers
[20402.796426] BTRFS info (device vdb): relocating block group 1203798802432 flags data
[20425.416711] BTRFS info (device vdb): found 1858 extents, stage: move data extents
[20427.107053] BTRFS info (device vdb): found 1858 extents, stage: update data pointers
[20428.251658] BTRFS info (device vdb): relocating block group 1202725060608 flags data
[20453.095981] BTRFS info (device vdb): found 2050 extents, stage: move data extents
[20454.468301] BTRFS info (device vdb): found 2050 extents, stage: update data pointers
[20455.321219] BTRFS info (device vdb): relocating block group 1201651318784 flags data
[20478.245703] BTRFS info (device vdb): found 1859 extents, stage: move data extents
[20480.083932] BTRFS info (device vdb): found 1859 extents, stage: update data pointers
[20481.284693] BTRFS info (device vdb): relocating block group 1198430093312 flags data
[20506.282824] BTRFS info (device vdb): found 2050 extents, stage: move data extents
[20507.769344] BTRFS info (device vdb): found 2050 extents, stage: update data pointers
[20508.694142] BTRFS info (device vdb): relocating block group 1197356351488 flags data
[20531.498781] BTRFS info (device vdb): found 1862 extents, stage: move data extents
[20533.451593] BTRFS info (device vdb): found 1862 extents, stage: update data pointers
[20534.735462] BTRFS info (device vdb): relocating block group 1195208867840 flags data
[20557.140043] BTRFS info (device vdb): found 1861 extents, stage: move data extents
[20558.922767] BTRFS info (device vdb): found 1861 extents, stage: update data pointers
[20560.257971] BTRFS info (device vdb): relocating block group 1194135126016 flags data
[20585.221732] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[20586.559552] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[20587.355890] BTRFS info (device vdb): relocating block group 1193061384192 flags data
[20609.973898] BTRFS info (device vdb): found 1859 extents, stage: move data extents
[20611.734190] BTRFS info (device vdb): found 1859 extents, stage: update data pointers
[20612.996721] BTRFS info (device vdb): relocating block group 1191987642368 flags data
[20638.268252] BTRFS info (device vdb): found 2054 extents, stage: move data extents
[20639.662115] BTRFS info (device vdb): found 2054 extents, stage: update data pointers
[20640.456303] BTRFS info (device vdb): relocating block group 1190913900544 flags data
[20663.070952] BTRFS info (device vdb): found 1859 extents, stage: move data extents
[20664.795087] BTRFS info (device vdb): found 1859 extents, stage: update data pointers
[20666.006276] BTRFS info (device vdb): relocating block group 1188766416896 flags data
[20688.689204] BTRFS info (device vdb): found 1861 extents, stage: move data extents
[20690.816469] BTRFS info (device vdb): found 1861 extents, stage: update data pointers
[20692.264127] BTRFS info (device vdb): relocating block group 1187692675072 flags data
[20717.265483] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[20718.503193] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[20719.265132] BTRFS info (device vdb): relocating block group 1186753150976 flags data
[20739.066453] BTRFS info (device vdb): found 1604 extents, stage: move data extents
[20740.934650] BTRFS info (device vdb): found 1604 extents, stage: update data pointers
[20742.163632] BTRFS info (device vdb): relocating block group 1185679409152 flags data
[20767.205565] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[20768.412617] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[20769.136006] BTRFS info (device vdb): relocating block group 1184471449600 flags data
[20792.176665] BTRFS info (device vdb): found 1859 extents, stage: move data extents
[20794.406060] BTRFS info (device vdb): found 1859 extents, stage: update data pointers
[20795.910652] BTRFS info (device vdb): relocating block group 1183397707776 flags data
[20821.066242] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[20822.300698] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[20823.123072] BTRFS info (device vdb): relocating block group 1182323965952 flags data
[20845.359275] BTRFS info (device vdb): found 1858 extents, stage: move data extents
[20846.976458] BTRFS info (device vdb): found 1858 extents, stage: update data pointers
[20848.044209] BTRFS info (device vdb): relocating block group 1180176482304 flags data
[20870.586568] BTRFS info (device vdb): found 1862 extents, stage: move data extents
[20872.423817] BTRFS info (device vdb): found 1862 extents, stage: update data pointers
[20873.719909] BTRFS info (device vdb): relocating block group 1178028998656 flags data
[20896.131257] BTRFS info (device vdb): found 1862 extents, stage: move data extents
[20897.848176] BTRFS info (device vdb): found 1862 extents, stage: update data pointers
[20898.982674] BTRFS info (device vdb): relocating block group 1175881515008 flags data
[20921.574439] BTRFS info (device vdb): found 1859 extents, stage: move data extents
[20922.856977] BTRFS info (device vdb): found 1859 extents, stage: update data pointers
[20923.641891] BTRFS info (device vdb): relocating block group 1174807773184 flags data
[20948.073718] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[20949.351041] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[20950.115377] BTRFS info (device vdb): relocating block group 1173734031360 flags data
[20972.890569] BTRFS info (device vdb): found 1857 extents, stage: move data extents
[20974.348615] BTRFS info (device vdb): found 1857 extents, stage: update data pointers
[20975.245975] BTRFS info (device vdb): relocating block group 1172660289536 flags data
[21000.296376] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[21001.451374] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[21002.155451] BTRFS info (device vdb): relocating block group 1171586547712 flags data
[21024.794646] BTRFS info (device vdb): found 1857 extents, stage: move data extents
[21026.196966] BTRFS info (device vdb): found 1857 extents, stage: update data pointers
[21027.092428] BTRFS info (device vdb): relocating block group 1169439064064 flags data
[21049.304386] BTRFS info (device vdb): found 1856 extents, stage: move data extents
[21050.729428] BTRFS info (device vdb): found 1856 extents, stage: update data pointers
[21051.594251] BTRFS info (device vdb): relocating block group 1168365322240 flags data
[21076.119504] BTRFS info (device vdb): found 2049 extents, stage: move data extents
[21077.508454] BTRFS info (device vdb): found 2049 extents, stage: update data pointers
[21078.345150] BTRFS info (device vdb): relocating block group 1165144096768 flags data
[21100.823608] BTRFS info (device vdb): found 1867 extents, stage: move data extents
[21105.462603] BTRFS info (device vdb): found 1867 extents, stage: update data pointers
[21108.069543] BTRFS info (device vdb): relocating block group 1164070354944 flags data
[21132.676277] BTRFS info (device vdb): found 2068 extents, stage: move data extents
[21136.043328] BTRFS info (device vdb): found 2068 extents, stage: update data pointers
[21137.999926] BTRFS info (device vdb): relocating block group 1162996613120 flags data
[21160.423623] BTRFS info (device vdb): found 1859 extents, stage: move data extents
[21161.883296] BTRFS info (device vdb): found 1859 extents, stage: update data pointers
[21162.760298] BTRFS info (device vdb): relocating block group 1161922871296 flags data
[21187.671176] BTRFS info (device vdb): found 2049 extents, stage: move data extents
[21189.088830] BTRFS info (device vdb): found 2049 extents, stage: update data pointers
[21189.920890] BTRFS info (device vdb): relocating block group 1160849129472 flags data
[21212.730106] BTRFS info (device vdb): found 1857 extents, stage: move data extents
[21213.934165] BTRFS info (device vdb): found 1857 extents, stage: update data pointers
[21214.770331] BTRFS info (device vdb): relocating block group 1158701645824 flags data
[21237.800726] BTRFS info (device vdb): found 1859 extents, stage: move data extents
[21239.073821] BTRFS info (device vdb): found 1859 extents, stage: update data pointers
[21239.856840] BTRFS info (device vdb): relocating block group 1156822593536 flags data
[21256.884577] BTRFS info (device vdb): found 1345 extents, stage: move data extents
[21258.132482] BTRFS info (device vdb): found 1345 extents, stage: update data pointers
[21258.885021] BTRFS info (device vdb): relocating block group 1150111711232 flags data
[21281.315807] BTRFS info (device vdb): found 1856 extents, stage: move data extents
[21282.607824] BTRFS info (device vdb): found 1856 extents, stage: update data pointers
[21283.405344] BTRFS info (device vdb): relocating block group 1147964227584 flags data
[21305.730517] BTRFS info (device vdb): found 1856 extents, stage: move data extents
[21306.960641] BTRFS info (device vdb): found 1856 extents, stage: update data pointers
[21307.695045] BTRFS info (device vdb): relocating block group 1146890485760 flags data
[21332.934908] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[21334.228875] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[21335.011258] BTRFS info (device vdb): relocating block group 1145816743936 flags data
[21357.200709] BTRFS info (device vdb): found 1856 extents, stage: move data extents
[21358.499142] BTRFS info (device vdb): found 1856 extents, stage: update data pointers
[21359.365113] BTRFS info (device vdb): relocating block group 1143669260288 flags data
[21381.924178] BTRFS info (device vdb): found 1924 extents, stage: move data extents
[21383.758908] BTRFS info (device vdb): found 1924 extents, stage: update data pointers
[21384.864471] BTRFS info (device vdb): relocating block group 1138300551168 flags data
[21409.822827] BTRFS info (device vdb): found 2051 extents, stage: move data extents
[21411.453019] BTRFS info (device vdb): found 2051 extents, stage: update data pointers
[21412.486417] BTRFS info (device vdb): relocating block group 1134005583872 flags data
[21448.094802] BTRFS info (device vdb): found 18705 extents, stage: move data extents
[21460.463112] BTRFS info (device vdb): found 18705 extents, stage: update data pointers
[21466.948550] BTRFS info (device vdb): relocating block group 1133602930688 flags data
[21476.882578] BTRFS info (device vdb): found 658 extents, stage: move data extents
[21479.264688] BTRFS info (device vdb): found 658 extents, stage: update data pointers
[21480.803339] BTRFS info (device vdb): relocating block group 1131455447040 flags data
[21506.898124] BTRFS info (device vdb): found 2202 extents, stage: move data extents
[21511.714620] BTRFS info (device vdb): found 2202 extents, stage: update data pointers
[21514.822939] BTRFS info (device vdb): relocating block group 1128234221568 flags data
[21541.299216] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[21542.653277] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[21543.416395] BTRFS info (device vdb): relocating block group 1122865512448 flags data
[21569.830509] BTRFS info (device vdb): found 2092 extents, stage: move data extents
[21574.200010] BTRFS info (device vdb): found 2092 extents, stage: update data pointers
[21576.845448] BTRFS info (device vdb): relocating block group 1120718028800 flags data
[21603.057698] BTRFS info (device vdb): found 2276 extents, stage: move data extents
[21610.759028] BTRFS info (device vdb): found 2276 extents, stage: update data pointers
[21615.810497] BTRFS info (device vdb): relocating block group 1119644286976 flags data
[21643.086453] BTRFS info (device vdb): found 2368 extents, stage: move data extents
[21649.854197] BTRFS info (device vdb): found 2368 extents, stage: update data pointers
[21653.624383] BTRFS info (device vdb): relocating block group 1118973198336 flags data
[21665.257250] BTRFS info (device vdb): found 6638 extents, stage: move data extents
[21672.855223] BTRFS info (device vdb): found 6638 extents, stage: update data pointers
[21676.899158] BTRFS info (device vdb): relocating block group 1116825804800 flags data
[21683.103919] BTRFS info (device vdb): found 448 extents, stage: move data extents
[21684.546531] BTRFS info (device vdb): found 448 extents, stage: update data pointers
[21685.498369] BTRFS info (device vdb): relocating block group 1115751972864 flags data
[21709.513271] BTRFS info (device vdb): found 2001 extents, stage: move data extents
[21714.003369] BTRFS info (device vdb): found 2001 extents, stage: update data pointers
[21716.790226] BTRFS info (device vdb): relocating block group 1114678231040 flags data
[21742.925339] BTRFS info (device vdb): found 2130 extents, stage: move data extents
[21747.493891] BTRFS info (device vdb): found 2130 extents, stage: update data pointers
[21750.451980] BTRFS info (device vdb): relocating block group 1112530747392 flags data
[21777.298472] BTRFS info (device vdb): found 2240 extents, stage: move data extents
[21780.544714] BTRFS info (device vdb): found 2240 extents, stage: update data pointers
[21782.615341] BTRFS info (device vdb): relocating block group 1106088296448 flags data
[21809.250382] BTRFS info (device vdb): found 2132 extents, stage: move data extents
[21813.254316] BTRFS info (device vdb): found 2132 extents, stage: update data pointers
[21815.677213] BTRFS info (device vdb): relocating block group 1105282990080 flags data
[21853.165614] BTRFS info (device vdb): found 20394 extents, stage: move data extents
[21862.258637] BTRFS info (device vdb): found 20394 extents, stage: update data pointers
[21867.425990] BTRFS info (device vdb): relocating block group 1103940812800 flags data
[21873.061398] BTRFS info (device vdb): found 281 extents, stage: move data extents
[21875.276364] BTRFS info (device vdb): found 281 extents, stage: update data pointers
[21876.728546] BTRFS info (device vdb): relocating block group 1101927550976 flags data
[21877.702164] BTRFS info (device vdb): found 68 extents, stage: move data extents
[21879.054147] BTRFS info (device vdb): found 68 extents, stage: update data pointers
[21879.988795] BTRFS info (device vdb): relocating block group 1101793329152 flags data
[21881.884365] BTRFS info (device vdb): found 150 extents, stage: move data extents
[21883.674501] BTRFS info (device vdb): found 150 extents, stage: update data pointers
[21884.973508] BTRFS info (device vdb): relocating block group 1099914280960 flags data
[21910.843524] BTRFS info (device vdb): found 2062 extents, stage: move data extents
[21912.925778] BTRFS info (device vdb): found 2062 extents, stage: update data pointers
[21914.154745] BTRFS info (device vdb): relocating block group 1099781079040 flags data
[21915.164691] BTRFS info (device vdb): found 66 extents, stage: move data extents
[21916.219336] BTRFS info (device vdb): found 66 extents, stage: update data pointers
[21916.914046] BTRFS info (device vdb): relocating block group 1096693055488 flags data
[21924.112663] workqueue: drain_vmap_area_work hogged CPU for >10000us 8 times, consider switching to WQ_UNBOUND
[21957.856420] BTRFS info (device vdb): found 23325 extents, stage: move data extents
[21974.280333] BTRFS info (device vdb): found 23325 extents, stage: update data pointers
[21984.138504] BTRFS info (device vdb): relocating block group 1095485140992 flags data
[21986.452588] BTRFS info (device vdb): found 68 extents, stage: move data extents
[21987.814446] BTRFS info (device vdb): found 68 extents, stage: update data pointers
[21988.759703] BTRFS info (device vdb): relocating block group 1095350878208 flags data
[21994.507405] BTRFS info (device vdb): found 3637 extents, stage: move data extents
[21997.413831] BTRFS info (device vdb): found 3637 extents, stage: update data pointers
[21999.104661] BTRFS info (device vdb): relocating block group 1093203394560 flags data
[22003.168711] BTRFS info (device vdb): found 298 extents, stage: move data extents
[22005.972464] BTRFS info (device vdb): found 298 extents, stage: update data pointers
[22007.811909] BTRFS info (device vdb): relocating block group 1091055910912 flags data
[22016.153968] BTRFS info (device vdb): found 3369 extents, stage: move data extents
[22020.853939] BTRFS info (device vdb): found 3369 extents, stage: update data pointers
[22023.353039] BTRFS info (device vdb): relocating block group 1089042644992 flags data
[22025.203470] BTRFS info (device vdb): found 546 extents, stage: move data extents
[22026.120877] BTRFS info (device vdb): found 546 extents, stage: update data pointers
[22026.665132] BTRFS info (device vdb): relocating block group 1088908427264 flags data
[22027.955576] BTRFS info (device vdb): found 90 extents, stage: move data extents
[22029.273592] BTRFS info (device vdb): found 90 extents, stage: update data pointers
[22030.191919] BTRFS info (device vdb): relocating block group 1086760943616 flags data
[22031.203473] BTRFS info (device vdb): found 67 extents, stage: move data extents
[22032.685598] BTRFS info (device vdb): found 67 extents, stage: update data pointers
[22033.658887] BTRFS info (device vdb): relocating block group 1084747677696 flags data
[22034.969277] BTRFS info (device vdb): found 347 extents, stage: move data extents
[22035.761888] BTRFS info (device vdb): found 347 extents, stage: update data pointers
[22036.198545] BTRFS info (device vdb): relocating block group 1084613459968 flags data
[22037.205907] BTRFS info (device vdb): found 71 extents, stage: move data extents
[22038.884987] BTRFS info (device vdb): found 71 extents, stage: update data pointers
[22040.042842] BTRFS info (device vdb): relocating block group 1083808153600 flags data
[22080.345133] BTRFS info (device vdb): found 18992 extents, stage: move data extents
[22090.596962] BTRFS info (device vdb): found 18992 extents, stage: update data pointers
[22095.393454] BTRFS info (device vdb): relocating block group 1082600194048 flags data
[22097.997896] BTRFS info (device vdb): found 401 extents, stage: move data extents
[22098.657229] BTRFS info (device vdb): found 401 extents, stage: update data pointers
[22099.041729] BTRFS info (device vdb): relocating block group 1082465976320 flags data
[22101.082580] BTRFS info (device vdb): found 1218 extents, stage: move data extents
[22104.187884] BTRFS info (device vdb): found 1218 extents, stage: update data pointers
[22105.819836] BTRFS info (device vdb): relocating block group 1079513186304 flags data
[22149.893472] BTRFS info (device vdb): found 32926 extents, stage: move data extents
[22169.017740] BTRFS info (device vdb): found 32926 extents, stage: update data pointers
[22179.644540] BTRFS info (device vdb): relocating block group 1078305226752 flags data
[22182.561201] BTRFS info (device vdb): found 68 extents, stage: move data extents
[22183.654002] BTRFS info (device vdb): found 68 extents, stage: update data pointers
[22184.411748] BTRFS info (device vdb): relocating block group 1078171009024 flags data
[22186.031231] BTRFS info (device vdb): found 697 extents, stage: move data extents
[22187.257291] BTRFS info (device vdb): found 697 extents, stage: update data pointers
[22188.170292] BTRFS info (device vdb): relocating block group 1076157743104 flags data
[22190.088828] BTRFS info (device vdb): found 875 extents, stage: move data extents
[22191.159828] BTRFS info (device vdb): found 875 extents, stage: update data pointers
[22191.669597] BTRFS info (device vdb): relocating block group 1076023525376 flags data
[22193.456112] BTRFS info (device vdb): found 720 extents, stage: move data extents
[22194.959751] BTRFS info (device vdb): found 720 extents, stage: update data pointers
[22195.775477] BTRFS info (device vdb): relocating block group 1074144477184 flags data
[22222.138055] BTRFS info (device vdb): found 2071 extents, stage: move data extents
[22226.614939] BTRFS info (device vdb): found 2071 extents, stage: update data pointers
[22228.974935] BTRFS info (device vdb): relocating block group 1074010259456 flags data
[22230.749523] BTRFS info (device vdb): found 794 extents, stage: move data extents
[22231.536372] BTRFS info (device vdb): found 794 extents, stage: update data pointers
[22231.987583] BTRFS info (device vdb): relocating block group 1073876041728 flags data
[22233.749544] BTRFS info (device vdb): found 897 extents, stage: move data extents
[22236.146670] BTRFS info (device vdb): found 897 extents, stage: update data pointers
[22237.552635] BTRFS info (device vdb): relocating block group 1071862775808 flags data
[22239.043333] BTRFS info (device vdb): found 617 extents, stage: move data extents
[22239.931245] BTRFS info (device vdb): found 617 extents, stage: update data pointers
[22240.464214] BTRFS info (device vdb): relocating block group 1071728558080 flags data
[22241.901880] BTRFS info (device vdb): found 568 extents, stage: move data extents
[22243.633711] BTRFS info (device vdb): found 568 extents, stage: update data pointers
[22244.668025] BTRFS info (device vdb): relocating block group 1069715292160 flags data
[22246.068965] BTRFS info (device vdb): found 503 extents, stage: move data extents
[22246.863485] BTRFS info (device vdb): found 503 extents, stage: update data pointers
[22247.311612] BTRFS info (device vdb): relocating block group 1069581074432 flags data
[22248.298683] BTRFS info (device vdb): found 72 extents, stage: move data extents
[22249.644846] BTRFS info (device vdb): found 72 extents, stage: update data pointers
[22250.517051] BTRFS info (device vdb): relocating block group 1067702022144 flags data
[22276.858437] BTRFS info (device vdb): found 2049 extents, stage: move data extents
[22280.883009] BTRFS info (device vdb): found 2049 extents, stage: update data pointers
[22283.346027] BTRFS info (device vdb): relocating block group 1067567808512 flags data
[22284.925451] BTRFS info (device vdb): found 505 extents, stage: move data extents
[22285.675354] BTRFS info (device vdb): found 505 extents, stage: update data pointers
[22286.087627] BTRFS info (device vdb): relocating block group 1067433590784 flags data
[22287.033586] BTRFS info (device vdb): found 81 extents, stage: move data extents
[22288.186501] BTRFS info (device vdb): found 81 extents, stage: update data pointers
[22288.949358] BTRFS info (device vdb): relocating block group 1065420324864 flags data
[22290.281757] BTRFS info (device vdb): found 480 extents, stage: move data extents
[22291.078267] BTRFS info (device vdb): found 480 extents, stage: update data pointers
[22291.551902] BTRFS info (device vdb): relocating block group 1065286107136 flags data
[22292.501061] BTRFS info (device vdb): found 70 extents, stage: move data extents
[22293.750159] BTRFS info (device vdb): found 70 extents, stage: update data pointers
[22294.598690] BTRFS info (device vdb): relocating block group 1062601752576 flags data
[22333.722499] BTRFS info (device vdb): found 20067 extents, stage: move data extents
[22351.419150] BTRFS info (device vdb): found 20067 extents, stage: update data pointers
[22361.807676] BTRFS info (device vdb): relocating block group 1060991139840 flags data
[22363.996851] BTRFS info (device vdb): found 84 extents, stage: move data extents
[22365.024550] BTRFS info (device vdb): found 84 extents, stage: update data pointers
[22365.694245] BTRFS info (device vdb): relocating block group 1058843656192 flags data
[22366.581968] BTRFS info (device vdb): found 71 extents, stage: move data extents
[22367.662611] BTRFS info (device vdb): found 71 extents, stage: update data pointers
[22368.393787] BTRFS info (device vdb): relocating block group 1056696815616 flags data
[22370.240939] BTRFS info (device vdb): found 146 extents, stage: move data extents
[22372.239655] BTRFS info (device vdb): found 146 extents, stage: update data pointers
[22373.516980] BTRFS info (device vdb): relocating block group 1052401332224 flags data
[22417.682459] BTRFS info (device vdb): found 24668 extents, stage: move data extents
[22431.066361] BTRFS info (device vdb): found 24668 extents, stage: update data pointers
[22437.849688] BTRFS info (device vdb): relocating block group 1050253721600 flags data
[22466.050281] BTRFS info (device vdb): found 2079 extents, stage: move data extents
[22470.149406] BTRFS info (device vdb): found 2079 extents, stage: update data pointers
[22473.001740] BTRFS info (device vdb): relocating block group 1048106237952 flags data
[22475.318664] BTRFS info (device vdb): found 1044 extents, stage: move data extents
[22478.724390] BTRFS info (device vdb): found 1044 extents, stage: update data pointers
[22480.414088] BTRFS info (device vdb): relocating block group 1047703584768 flags data
[22498.115342] BTRFS info (device vdb): found 7699 extents, stage: move data extents
[22502.871426] BTRFS info (device vdb): found 7699 extents, stage: update data pointers
[22505.396719] BTRFS info (device vdb): relocating block group 1045556101120 flags data
[22534.514436] BTRFS info (device vdb): found 2071 extents, stage: move data extents
[22538.041849] BTRFS info (device vdb): found 2071 extents, stage: update data pointers
[22540.291494] BTRFS info (device vdb): relocating block group 1043408617472 flags data
[22584.406360] BTRFS info (device vdb): found 32133 extents, stage: move data extents
[22602.966955] BTRFS info (device vdb): found 32133 extents, stage: update data pointers
[22612.719878] BTRFS info (device vdb): relocating block group 1041663787008 flags data
[22641.395114] BTRFS info (device vdb): found 2584 extents, stage: move data extents
[22648.754385] BTRFS info (device vdb): found 2584 extents, stage: update data pointers
[22653.303212] BTRFS info (device vdb): relocating block group 1040590045184 flags data
[22681.900547] BTRFS info (device vdb): found 2799 extents, stage: move data extents
[22691.190772] BTRFS info (device vdb): found 2799 extents, stage: update data pointers
[22697.203401] BTRFS info (device vdb): relocating block group 1039516303360 flags data
[22741.866985] BTRFS info (device vdb): found 33191 extents, stage: move data extents
[22766.377239] BTRFS info (device vdb): found 33191 extents, stage: update data pointers
[22778.396060] BTRFS info (device vdb): relocating block group 1038442561536 flags data
[22818.833911] BTRFS info (device vdb): found 22569 extents, stage: move data extents
[22837.223566] BTRFS info (device vdb): found 22569 extents, stage: update data pointers
[22847.358652] BTRFS info (device vdb): relocating block group 1037368819712 flags data
[22891.692543] BTRFS info (device vdb): found 28796 extents, stage: move data extents
[22913.549882] BTRFS info (device vdb): found 28796 extents, stage: update data pointers
[22925.145879] BTRFS info (device vdb): relocating block group 1035221336064 flags data
[22973.151279] BTRFS info (device vdb): found 28349 extents, stage: move data extents
[22996.200284] BTRFS info (device vdb): found 28349 extents, stage: update data pointers
[23007.808750] BTRFS info (device vdb): relocating block group 1034147639296 flags data
[23033.748586] BTRFS info (device vdb): found 1927 extents, stage: move data extents
[23036.071876] BTRFS info (device vdb): found 1927 extents, stage: update data pointers
[23037.663509] BTRFS info (device vdb): relocating block group 1033073897472 flags data
[23082.701879] workqueue: drm_fb_helper_damage_work [drm_kms_helper] hogged CPU for >10000us 64 times, consider switching to WQ_UNBOUND
[23094.418781] BTRFS info (device vdb): found 47689 extents, stage: move data extents
[23119.063051] BTRFS info (device vdb): found 47689 extents, stage: update data pointers
[23132.552769] BTRFS info (device vdb): relocating block group 1032939634688 flags data
[23138.890294] BTRFS info (device vdb): found 1385 extents, stage: move data extents
[23141.234540] BTRFS info (device vdb): found 1385 extents, stage: update data pointers
[23142.800329] BTRFS info (device vdb): relocating block group 1030926397440 flags data
[23149.871775] BTRFS info (device vdb): found 726 extents, stage: move data extents
[23153.530613] BTRFS info (device vdb): found 726 extents, stage: update data pointers
[23155.812803] BTRFS info (device vdb): relocating block group 1030188171264 flags data
[23185.368350] BTRFS info (device vdb): found 15427 extents, stage: move data extents
[23191.565218] BTRFS info (device vdb): found 15427 extents, stage: update data pointers
[23194.931435] BTRFS info (device vdb): relocating block group 1029114429440 flags data
[23230.979934] BTRFS info (device vdb): found 17518 extents, stage: move data extents
[23244.876151] BTRFS info (device vdb): found 17518 extents, stage: update data pointers
[23252.290132] BTRFS info (device vdb): relocating block group 1028040687616 flags data
[23279.001701] BTRFS info (device vdb): found 2329 extents, stage: move data extents
[23284.028093] BTRFS info (device vdb): found 2329 extents, stage: update data pointers
[23287.448420] BTRFS info (device vdb): relocating block group 1026966945792 flags data
[23313.270180] BTRFS info (device vdb): found 2258 extents, stage: move data extents
[23317.845741] BTRFS info (device vdb): found 2258 extents, stage: update data pointers
[23320.615391] BTRFS info (device vdb): relocating block group 1024819462144 flags data
[23361.467029] BTRFS info (device vdb): found 25698 extents, stage: move data extents
[23375.260985] BTRFS info (device vdb): found 25698 extents, stage: update data pointers
[23382.922583] BTRFS info (device vdb): relocating block group 1022671978496 flags data
[23411.330413] BTRFS info (device vdb): found 2262 extents, stage: move data extents
[23416.530445] BTRFS info (device vdb): found 2262 extents, stage: update data pointers
[23419.886821] BTRFS info (device vdb): relocating block group 1021598236672 flags data
[23446.405543] BTRFS info (device vdb): found 2164 extents, stage: move data extents
[23450.684939] BTRFS info (device vdb): found 2164 extents, stage: update data pointers
[23453.690815] BTRFS info (device vdb): relocating block group 1020524494848 flags data
[23479.888454] BTRFS info (device vdb): found 2078 extents, stage: move data extents
[23483.703245] BTRFS info (device vdb): found 2078 extents, stage: update data pointers
[23486.254902] BTRFS info (device vdb): relocating block group 1020188950528 flags data
[23500.513176] BTRFS info (device vdb): found 7622 extents, stage: move data extents
[23509.380572] BTRFS info (device vdb): found 7622 extents, stage: update data pointers
[23513.819043] BTRFS info (device vdb): relocating block group 1019115208704 flags data
[23522.979128] BTRFS info (device vdb): found 695 extents, stage: move data extents
[23523.745311] BTRFS info (device vdb): found 695 extents, stage: update data pointers
[23524.177197] BTRFS info (device vdb): relocating block group 1018041466880 flags data
[23549.999722] BTRFS info (device vdb): found 2065 extents, stage: move data extents
[23553.611937] BTRFS info (device vdb): found 2065 extents, stage: update data pointers
[23555.906220] BTRFS info (device vdb): relocating block group 1016288370688 flags data
[23581.600999] BTRFS info (device vdb): found 2068 extents, stage: move data extents
[23584.873564] BTRFS info (device vdb): found 2068 extents, stage: update data pointers
[23587.278703] BTRFS info (device vdb): relocating block group 1015893983232 flags data
[23603.494911] BTRFS info (device vdb): found 7620 extents, stage: move data extents
[23610.525659] BTRFS info (device vdb): found 7620 extents, stage: update data pointers
[23614.365434] BTRFS info (device vdb): relocating block group 1015759765504 flags data
[23617.399455] BTRFS info (device vdb): found 1003 extents, stage: move data extents
[23619.258630] BTRFS info (device vdb): found 1003 extents, stage: update data pointers
[23620.466945] BTRFS info (device vdb): relocating block group 1013612281856 flags data
[23645.875023] BTRFS info (device vdb): found 2319 extents, stage: move data extents
[23650.052566] BTRFS info (device vdb): found 2319 extents, stage: update data pointers
[23652.677101] BTRFS info (device vdb): relocating block group 1011464798208 flags data
[23677.918180] BTRFS info (device vdb): found 2127 extents, stage: move data extents
[23684.233349] BTRFS info (device vdb): found 2127 extents, stage: update data pointers
[23688.146256] BTRFS info (device vdb): relocating block group 1010391056384 flags data
[23712.946803] BTRFS info (device vdb): found 2131 extents, stage: move data extents
[23717.422060] BTRFS info (device vdb): found 2131 extents, stage: update data pointers
[23719.967008] BTRFS info (device vdb): relocating block group 1008243572736 flags data
[23759.798146] BTRFS info (device vdb): found 24019 extents, stage: move data extents
[23770.973221] BTRFS info (device vdb): found 24019 extents, stage: update data pointers
[23777.141448] BTRFS info (device vdb): relocating block group 1007169830912 flags data
[23815.372664] BTRFS info (device vdb): found 20066 extents, stage: move data extents
[23826.599809] BTRFS info (device vdb): found 20066 extents, stage: update data pointers
[23833.149894] BTRFS info (device vdb): relocating block group 1006096089088 flags data
[23859.408879] BTRFS info (device vdb): found 2086 extents, stage: move data extents
[23864.236275] BTRFS info (device vdb): found 2086 extents, stage: update data pointers
[23867.325414] BTRFS info (device vdb): relocating block group 1005022347264 flags data
[23898.899252] BTRFS info (device vdb): found 11839 extents, stage: move data extents
[23909.978069] BTRFS info (device vdb): found 11839 extents, stage: update data pointers
[23916.641949] BTRFS info (device vdb): relocating block group 1002874863616 flags data
[23953.677587] BTRFS info (device vdb): found 21160 extents, stage: move data extents
[23966.386522] BTRFS info (device vdb): found 21160 extents, stage: update data pointers
[23973.182961] BTRFS info (device vdb): relocating block group 1001801121792 flags data
[23998.876346] BTRFS info (device vdb): found 2069 extents, stage: move data extents
[24000.557189] BTRFS info (device vdb): found 2069 extents, stage: update data pointers
[24001.633348] BTRFS info (device vdb): relocating block group 1000593162240 flags data
[24002.583495] BTRFS info (device vdb): found 67 extents, stage: move data extents
[24003.552508] BTRFS info (device vdb): found 67 extents, stage: update data pointers
[24004.214842] BTRFS info (device vdb): relocating block group 1000458944512 flags data
[24005.064891] BTRFS info (device vdb): found 66 extents, stage: move data extents
[24006.144788] BTRFS info (device vdb): found 66 extents, stage: update data pointers
[24006.890881] BTRFS info (device vdb): relocating block group 986902953984 flags data
[24031.611599] BTRFS info (device vdb): found 2136 extents, stage: move data extents
[24035.887691] BTRFS info (device vdb): found 2136 extents, stage: update data pointers
[24038.777867] BTRFS info (device vdb): relocating block group 979386761216 flags data
[24065.161043] BTRFS info (device vdb): found 2063 extents, stage: move data extents
[24068.697494] BTRFS info (device vdb): found 2063 extents, stage: update data pointers
[24070.669245] BTRFS info (device vdb): relocating block group 977239277568 flags data
[24096.385732] BTRFS info (device vdb): found 2049 extents, stage: move data extents
[24097.831990] BTRFS info (device vdb): found 2049 extents, stage: update data pointers
[24098.754555] BTRFS info (device vdb): relocating block group 975091793920 flags data
[24135.150567] BTRFS info (device vdb): found 16669 extents, stage: move data extents
[24153.510171] BTRFS info (device vdb): found 16669 extents, stage: update data pointers
[24164.903923] BTRFS info (device vdb): relocating block group 964354375680 flags data
[24204.327840] BTRFS info (device vdb): found 23875 extents, stage: move data extents
[24213.346373] BTRFS info (device vdb): found 23875 extents, stage: update data pointers
[24218.513974] BTRFS info (device vdb): relocating block group 961938456576 flags data
[24224.058523] BTRFS info (device vdb): found 342 extents, stage: move data extents
[24225.986248] BTRFS info (device vdb): found 342 extents, stage: update data pointers
[24227.091432] BTRFS info (device vdb): relocating block group 960864714752 flags data
[24268.659509] BTRFS info (device vdb): found 24976 extents, stage: move data extents
[24278.674845] BTRFS info (device vdb): found 24976 extents, stage: update data pointers
[24283.932492] BTRFS info (device vdb): relocating block group 957911924736 flags data
[24303.496323] BTRFS info (device vdb): found 1456 extents, stage: move data extents
[24304.416337] BTRFS info (device vdb): found 1456 extents, stage: update data pointers
[24304.991992] BTRFS info (device vdb): relocating block group 956838182912 flags data
[24328.486277] BTRFS info (device vdb): found 1856 extents, stage: move data extents
[24329.617328] BTRFS info (device vdb): found 1856 extents, stage: update data pointers
[24330.318347] BTRFS info (device vdb): relocating block group 954690699264 flags data
[24354.056797] BTRFS info (device vdb): found 1857 extents, stage: move data extents
[24355.732964] BTRFS info (device vdb): found 1857 extents, stage: update data pointers
[24356.627246] BTRFS info (device vdb): relocating block group 952543215616 flags data
[24379.620229] BTRFS info (device vdb): found 1857 extents, stage: move data extents
[24381.276911] BTRFS info (device vdb): found 1857 extents, stage: update data pointers
[24382.245282] BTRFS info (device vdb): relocating block group 951469473792 flags data
[24407.794048] BTRFS info (device vdb): found 2050 extents, stage: move data extents
[24409.635248] BTRFS info (device vdb): found 2050 extents, stage: update data pointers
[24410.876281] BTRFS info (device vdb): relocating block group 948248248320 flags data
[24434.242677] BTRFS info (device vdb): found 1857 extents, stage: move data extents
[24435.557761] BTRFS info (device vdb): found 1857 extents, stage: update data pointers
[24436.406155] BTRFS info (device vdb): relocating block group 947174506496 flags data
[24475.530206] BTRFS info (device vdb): found 23496 extents, stage: move data extents
[24484.373745] BTRFS info (device vdb): found 23496 extents, stage: update data pointers
[24489.844836] BTRFS info (device vdb): relocating block group 946100764672 flags data
[24513.986189] BTRFS info (device vdb): found 1870 extents, stage: move data extents
[24516.295559] BTRFS info (device vdb): found 1870 extents, stage: update data pointers
[24517.858882] BTRFS info (device vdb): relocating block group 941805797376 flags data
[24541.381769] BTRFS info (device vdb): found 1856 extents, stage: move data extents
[24542.591752] BTRFS info (device vdb): found 1856 extents, stage: update data pointers
[24543.359124] BTRFS info (device vdb): relocating block group 940732055552 flags data
[24568.647302] BTRFS info (device vdb): found 2049 extents, stage: move data extents
[24569.938690] BTRFS info (device vdb): found 2049 extents, stage: update data pointers
[24570.740496] BTRFS info (device vdb): relocating block group 939658313728 flags data
[24593.550249] BTRFS info (device vdb): found 1856 extents, stage: move data extents
[24594.792023] BTRFS info (device vdb): found 1856 extents, stage: update data pointers
[24595.583227] BTRFS info (device vdb): relocating block group 938584571904 flags data
[24620.691945] BTRFS info (device vdb): found 2054 extents, stage: move data extents
[24622.899715] BTRFS info (device vdb): found 2054 extents, stage: update data pointers
[24624.288340] BTRFS info (device vdb): relocating block group 937510830080 flags data
[24647.186652] BTRFS info (device vdb): found 1962 extents, stage: move data extents
[24652.223371] BTRFS info (device vdb): found 1962 extents, stage: update data pointers
[24655.019545] BTRFS info (device vdb): relocating block group 936437088256 flags data
[24695.161086] BTRFS info (device vdb): found 23623 extents, stage: move data extents
[24704.059926] BTRFS info (device vdb): found 23623 extents, stage: update data pointers
[24709.164030] BTRFS info (device vdb): relocating block group 934289604608 flags data
[24748.390881] BTRFS info (device vdb): found 22454 extents, stage: move data extents
[24756.692960] BTRFS info (device vdb): found 22454 extents, stage: update data pointers
[24761.300519] BTRFS info (device vdb): relocating block group 933215862784 flags data
[24784.754393] BTRFS info (device vdb): found 1861 extents, stage: move data extents
[24786.418332] BTRFS info (device vdb): found 1861 extents, stage: update data pointers
[24787.512166] BTRFS info (device vdb): relocating block group 931068379136 flags data
[24810.213596] BTRFS info (device vdb): found 1859 extents, stage: move data extents
[24811.567552] BTRFS info (device vdb): found 1859 extents, stage: update data pointers
[24812.418423] BTRFS info (device vdb): relocating block group 928920895488 flags data
[24835.565619] BTRFS info (device vdb): found 1866 extents, stage: move data extents
[24837.269426] BTRFS info (device vdb): found 1866 extents, stage: update data pointers
[24838.334068] BTRFS info (device vdb): relocating block group 926773411840 flags data
[24861.877081] BTRFS info (device vdb): found 1861 extents, stage: move data extents
[24863.176284] BTRFS info (device vdb): found 1861 extents, stage: update data pointers
[24864.016394] BTRFS info (device vdb): relocating block group 925699670016 flags data
[24904.934988] BTRFS info (device vdb): found 23888 extents, stage: move data extents
[24914.182229] BTRFS info (device vdb): found 23888 extents, stage: update data pointers
[24919.262774] BTRFS info (device vdb): relocating block group 922478444544 flags data
[24944.624909] BTRFS info (device vdb): found 1947 extents, stage: move data extents
[24948.038583] BTRFS info (device vdb): found 1947 extents, stage: update data pointers
[24950.270841] BTRFS info (device vdb): relocating block group 918183477248 flags data
[24972.787523] BTRFS info (device vdb): found 1856 extents, stage: move data extents
[24974.150668] BTRFS info (device vdb): found 1856 extents, stage: update data pointers
[24974.994135] BTRFS info (device vdb): relocating block group 916035993600 flags data
[24997.745671] BTRFS info (device vdb): found 1856 extents, stage: move data extents
[24998.883070] BTRFS info (device vdb): found 1856 extents, stage: update data pointers
[24999.596015] BTRFS info (device vdb): relocating block group 913888509952 flags data
[25022.735825] BTRFS info (device vdb): found 1857 extents, stage: move data extents
[25024.677167] BTRFS info (device vdb): found 1857 extents, stage: update data pointers
[25025.753240] BTRFS info (device vdb): relocating block group 912814768128 flags data
[25066.119576] BTRFS info (device vdb): found 24454 extents, stage: move data extents
[25075.010093] BTRFS info (device vdb): found 24454 extents, stage: update data pointers
[25079.886765] BTRFS info (device vdb): relocating block group 912546332672 flags data
[25085.681699] BTRFS info (device vdb): found 339 extents, stage: move data extents
[25087.870809] BTRFS info (device vdb): found 339 extents, stage: update data pointers
[25089.381656] BTRFS info (device vdb): relocating block group 909593542656 flags data
[25112.651684] BTRFS info (device vdb): found 1892 extents, stage: move data extents
[25115.467030] BTRFS info (device vdb): found 1892 extents, stage: update data pointers
[25117.184628] BTRFS info (device vdb): relocating block group 907446059008 flags data
[25140.483741] BTRFS info (device vdb): found 1864 extents, stage: move data extents
[25142.429692] BTRFS info (device vdb): found 1864 extents, stage: update data pointers
[25143.626832] BTRFS info (device vdb): relocating block group 906372317184 flags data
[25169.248345] BTRFS info (device vdb): found 2050 extents, stage: move data extents
[25170.514707] BTRFS info (device vdb): found 2050 extents, stage: update data pointers
[25171.245812] BTRFS info (device vdb): relocating block group 905298575360 flags data
[25193.924001] BTRFS info (device vdb): found 1859 extents, stage: move data extents
[25195.489811] BTRFS info (device vdb): found 1859 extents, stage: update data pointers
[25196.517782] BTRFS info (device vdb): relocating block group 904224833536 flags data
[25222.748180] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[25223.893646] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[25224.556597] BTRFS info (device vdb): relocating block group 901003608064 flags data
[25247.174214] BTRFS info (device vdb): found 1859 extents, stage: move data extents
[25249.413398] BTRFS info (device vdb): found 1859 extents, stage: update data pointers
[25250.890682] BTRFS info (device vdb): relocating block group 899929866240 flags data
[25291.096336] BTRFS info (device vdb): found 23968 extents, stage: move data extents
[25299.855879] BTRFS info (device vdb): found 23968 extents, stage: update data pointers
[25304.624095] BTRFS info (device vdb): relocating block group 898856124416 flags data
[25329.262846] BTRFS info (device vdb): found 1891 extents, stage: move data extents
[25332.788917] BTRFS info (device vdb): found 1891 extents, stage: update data pointers
[25334.916092] BTRFS info (device vdb): relocating block group 895634898944 flags data
[25371.772885] BTRFS info (device vdb): found 21748 extents, stage: move data extents
[25380.681723] BTRFS info (device vdb): found 21748 extents, stage: update data pointers
[25385.569775] BTRFS info (device vdb): relocating block group 894561157120 flags data
[25409.378781] BTRFS info (device vdb): found 1874 extents, stage: move data extents
[25411.533474] BTRFS info (device vdb): found 1874 extents, stage: update data pointers
[25413.068930] BTRFS info (device vdb): relocating block group 892413673472 flags data
[25435.804808] BTRFS info (device vdb): found 1900 extents, stage: move data extents
[25439.982855] BTRFS info (device vdb): found 1900 extents, stage: update data pointers
[25442.511058] BTRFS info (device vdb): relocating block group 891339931648 flags data
[25479.927173] BTRFS info (device vdb): found 19815 extents, stage: move data extents
[25487.637711] BTRFS info (device vdb): found 19815 extents, stage: update data pointers
[25492.184817] BTRFS info (device vdb): relocating block group 888118706176 flags data
[25516.630732] BTRFS info (device vdb): found 1954 extents, stage: move data extents
[25519.998584] BTRFS info (device vdb): found 1954 extents, stage: update data pointers
[25522.144997] BTRFS info (device vdb): relocating block group 887044964352 flags data
[25561.492862] BTRFS info (device vdb): found 23598 extents, stage: move data extents
[25570.473035] BTRFS info (device vdb): found 23598 extents, stage: update data pointers
[25575.408889] BTRFS info (device vdb): relocating block group 885971222528 flags data
[25599.846253] BTRFS info (device vdb): found 1936 extents, stage: move data extents
[25602.864388] BTRFS info (device vdb): found 1936 extents, stage: update data pointers
[25604.573563] BTRFS info (device vdb): relocating block group 883823738880 flags data
[25627.883755] BTRFS info (device vdb): found 1857 extents, stage: move data extents
[25629.152418] BTRFS info (device vdb): found 1857 extents, stage: update data pointers
[25629.944650] BTRFS info (device vdb): relocating block group 882749997056 flags data
[25670.681563] BTRFS info (device vdb): found 27035 extents, stage: move data extents
[25680.725362] BTRFS info (device vdb): found 27035 extents, stage: update data pointers
[25686.722250] BTRFS info (device vdb): relocating block group 881676255232 flags data
[25712.367369] BTRFS info (device vdb): found 1858 extents, stage: move data extents
[25713.943639] BTRFS info (device vdb): found 1858 extents, stage: update data pointers
[25715.062878] BTRFS info (device vdb): relocating block group 880602513408 flags data
[25740.594432] BTRFS info (device vdb): found 2051 extents, stage: move data extents
[25742.191647] BTRFS info (device vdb): found 2051 extents, stage: update data pointers
[25743.215081] BTRFS info (device vdb): relocating block group 878455029760 flags data
[25783.047995] BTRFS info (device vdb): found 23867 extents, stage: move data extents
[25792.423910] BTRFS info (device vdb): found 23867 extents, stage: update data pointers
[25797.690653] BTRFS info (device vdb): relocating block group 877381287936 flags data
[25821.961406] BTRFS info (device vdb): found 1909 extents, stage: move data extents
[25824.434454] BTRFS info (device vdb): found 1909 extents, stage: update data pointers
[25825.845916] BTRFS info (device vdb): relocating block group 875233804288 flags data
[25848.247184] BTRFS info (device vdb): found 1857 extents, stage: move data extents
[25849.548564] BTRFS info (device vdb): found 1857 extents, stage: update data pointers
[25850.360325] BTRFS info (device vdb): relocating block group 874160062464 flags data
[25890.444658] BTRFS info (device vdb): found 23621 extents, stage: move data extents
[25899.341159] BTRFS info (device vdb): found 23621 extents, stage: update data pointers
[25904.473467] BTRFS info (device vdb): relocating block group 873086320640 flags data
[25928.260788] BTRFS info (device vdb): found 1942 extents, stage: move data extents
[25932.698003] BTRFS info (device vdb): found 1942 extents, stage: update data pointers
[25935.384096] BTRFS info (device vdb): relocating block group 869865095168 flags data
[25960.627815] BTRFS info (device vdb): found 2049 extents, stage: move data extents
[25961.979376] BTRFS info (device vdb): found 2049 extents, stage: update data pointers
[25962.817341] BTRFS info (device vdb): relocating block group 868791353344 flags data
[25985.918796] BTRFS info (device vdb): found 1856 extents, stage: move data extents
[25987.199403] BTRFS info (device vdb): found 1856 extents, stage: update data pointers
[25987.993002] BTRFS info (device vdb): relocating block group 867717611520 flags data
[26013.488017] BTRFS info (device vdb): found 2049 extents, stage: move data extents
[26014.706349] BTRFS info (device vdb): found 2049 extents, stage: update data pointers
[26015.465201] BTRFS info (device vdb): relocating block group 866643865600 flags data
[26038.007349] BTRFS info (device vdb): found 1857 extents, stage: move data extents
[26039.475963] BTRFS info (device vdb): found 1857 extents, stage: update data pointers
[26040.395696] BTRFS info (device vdb): relocating block group 865570123776 flags data
[26065.662597] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[26066.756129] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[26067.421354] BTRFS info (device vdb): relocating block group 862348902400 flags data
[26090.279074] BTRFS info (device vdb): found 1921 extents, stage: move data extents
[26094.851861] BTRFS info (device vdb): found 1921 extents, stage: update data pointers
[26097.523768] BTRFS info (device vdb): relocating block group 861275160576 flags data
[26137.722911] BTRFS info (device vdb): found 23611 extents, stage: move data extents
[26146.794434] BTRFS info (device vdb): found 23611 extents, stage: update data pointers
[26151.568363] BTRFS info (device vdb): relocating block group 859127672832 flags data
[26193.350848] BTRFS info (device vdb): found 25813 extents, stage: move data extents
[26202.969703] BTRFS info (device vdb): found 25813 extents, stage: update data pointers
[26208.469876] BTRFS info (device vdb): relocating block group 858053935104 flags data
[26232.985017] BTRFS info (device vdb): found 1878 extents, stage: move data extents
[26235.822112] BTRFS info (device vdb): found 1878 extents, stage: update data pointers
[26237.509560] BTRFS info (device vdb): relocating block group 851611484160 flags data
[26260.151153] BTRFS info (device vdb): found 1887 extents, stage: move data extents
[26262.556323] BTRFS info (device vdb): found 1887 extents, stage: update data pointers
[26264.037021] BTRFS info (device vdb): relocating block group 850537742336 flags data
[26303.658241] BTRFS info (device vdb): found 24258 extents, stage: move data extents
[26312.851865] BTRFS info (device vdb): found 24258 extents, stage: update data pointers
[26317.891346] BTRFS info (device vdb): relocating block group 849464000512 flags data
[26342.045721] BTRFS info (device vdb): found 1876 extents, stage: move data extents
[26344.452624] BTRFS info (device vdb): found 1876 extents, stage: update data pointers
[26345.866136] BTRFS info (device vdb): relocating block group 847316516864 flags data
[26368.913254] BTRFS info (device vdb): found 1943 extents, stage: move data extents
[26372.087803] BTRFS info (device vdb): found 1943 extents, stage: update data pointers
[26374.078298] BTRFS info (device vdb): relocating block group 846242775040 flags data
[26414.172002] BTRFS info (device vdb): found 23711 extents, stage: move data extents
[26423.774807] BTRFS info (device vdb): found 23711 extents, stage: update data pointers
[26428.990768] BTRFS info (device vdb): relocating block group 844095291392 flags data
[26469.406122] BTRFS info (device vdb): found 24019 extents, stage: move data extents
[26478.296849] BTRFS info (device vdb): found 24019 extents, stage: update data pointers
[26483.433540] BTRFS info (device vdb): relocating block group 843021549568 flags data
[26507.476930] BTRFS info (device vdb): found 1859 extents, stage: move data extents
[26508.969256] BTRFS info (device vdb): found 1859 extents, stage: update data pointers
[26509.900017] BTRFS info (device vdb): relocating block group 841947807744 flags data
[26547.601576] BTRFS info (device vdb): found 21172 extents, stage: move data extents
[26555.386017] BTRFS info (device vdb): found 21172 extents, stage: update data pointers
[26559.696916] BTRFS info (device vdb): relocating block group 840874065920 flags data
[26583.609649] BTRFS info (device vdb): found 1861 extents, stage: move data extents
[26585.831125] BTRFS info (device vdb): found 1861 extents, stage: update data pointers
[26587.269931] BTRFS info (device vdb): relocating block group 838726598656 flags data
[26610.172838] BTRFS info (device vdb): found 1859 extents, stage: move data extents
[26611.986731] BTRFS info (device vdb): found 1859 extents, stage: update data pointers
[26613.195629] BTRFS info (device vdb): relocating block group 837652856832 flags data
[26652.664813] BTRFS info (device vdb): found 23620 extents, stage: move data extents
[26662.373171] BTRFS info (device vdb): found 23620 extents, stage: update data pointers
[26667.785707] BTRFS info (device vdb): relocating block group 836579098624 flags data
[26692.091820] BTRFS info (device vdb): found 1875 extents, stage: move data extents
[26694.817099] BTRFS info (device vdb): found 1875 extents, stage: update data pointers
[26696.426326] BTRFS info (device vdb): relocating block group 833357873152 flags data
[26737.371670] BTRFS info (device vdb): found 25061 extents, stage: move data extents
[26746.645565] BTRFS info (device vdb): found 25061 extents, stage: update data pointers
[26751.628570] BTRFS info (device vdb): relocating block group 832284131328 flags data
[26775.835300] BTRFS info (device vdb): found 1858 extents, stage: move data extents
[26777.458553] BTRFS info (device vdb): found 1858 extents, stage: update data pointers
[26778.519310] BTRFS info (device vdb): relocating block group 831210389504 flags data
[26817.088800] BTRFS info (device vdb): found 23888 extents, stage: move data extents
[26826.128693] BTRFS info (device vdb): found 23888 extents, stage: update data pointers
[26830.864216] BTRFS info (device vdb): relocating block group 830136647680 flags data
[26854.805938] BTRFS info (device vdb): found 1858 extents, stage: move data extents
[26856.558370] BTRFS info (device vdb): found 1858 extents, stage: update data pointers
[26857.813373] BTRFS info (device vdb): relocating block group 827989164032 flags data
[26880.972671] BTRFS info (device vdb): found 1856 extents, stage: move data extents
[26882.183685] BTRFS info (device vdb): found 1856 extents, stage: update data pointers
[26882.925069] BTRFS info (device vdb): relocating block group 825841680384 flags data
[26906.630440] BTRFS info (device vdb): found 1857 extents, stage: move data extents
[26908.117765] BTRFS info (device vdb): found 1857 extents, stage: update data pointers
[26909.043756] BTRFS info (device vdb): relocating block group 824767938560 flags data
[26934.177037] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[26935.286564] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[26935.929813] BTRFS info (device vdb): relocating block group 823694196736 flags data
[26958.108137] BTRFS info (device vdb): found 1856 extents, stage: move data extents
[26959.369932] BTRFS info (device vdb): found 1856 extents, stage: update data pointers
[26960.099327] BTRFS info (device vdb): relocating block group 822620454912 flags data
[26985.304917] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[26986.387544] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[26987.025967] BTRFS info (device vdb): relocating block group 821546713088 flags data
[27009.584439] BTRFS info (device vdb): found 1856 extents, stage: move data extents
[27010.744812] BTRFS info (device vdb): found 1856 extents, stage: update data pointers
[27011.467207] BTRFS info (device vdb): relocating block group 819399229440 flags data
[27033.969022] BTRFS info (device vdb): found 1856 extents, stage: move data extents
[27035.144881] BTRFS info (device vdb): found 1856 extents, stage: update data pointers
[27035.883699] BTRFS info (device vdb): relocating block group 817251745792 flags data
[27058.110273] BTRFS info (device vdb): found 1856 extents, stage: move data extents
[27059.236281] BTRFS info (device vdb): found 1856 extents, stage: update data pointers
[27059.944990] BTRFS info (device vdb): relocating block group 815104262144 flags data
[27082.243437] BTRFS info (device vdb): found 1856 extents, stage: move data extents
[27083.406287] BTRFS info (device vdb): found 1856 extents, stage: update data pointers
[27084.144615] BTRFS info (device vdb): relocating block group 812956778496 flags data
[27106.776624] BTRFS info (device vdb): found 1856 extents, stage: move data extents
[27108.137918] BTRFS info (device vdb): found 1856 extents, stage: update data pointers
[27109.002091] BTRFS info (device vdb): relocating block group 810809294848 flags data
[27131.087559] BTRFS info (device vdb): found 1863 extents, stage: move data extents
[27132.836414] BTRFS info (device vdb): found 1863 extents, stage: update data pointers
[27134.014170] BTRFS info (device vdb): relocating block group 809735553024 flags data
[27171.843610] BTRFS info (device vdb): found 21503 extents, stage: move data extents
[27179.966476] BTRFS info (device vdb): found 21503 extents, stage: update data pointers
[27184.518037] BTRFS info (device vdb): relocating block group 808661811200 flags data
[27207.972301] BTRFS info (device vdb): found 1871 extents, stage: move data extents
[27210.126461] BTRFS info (device vdb): found 1871 extents, stage: update data pointers
[27211.471584] BTRFS info (device vdb): relocating block group 807588069376 flags data
[27246.854029] BTRFS info (device vdb): found 18648 extents, stage: move data extents
[27254.009645] BTRFS info (device vdb): found 18648 extents, stage: update data pointers
[27257.795300] BTRFS info (device vdb): relocating block group 806514327552 flags data
[27281.157505] BTRFS info (device vdb): found 1896 extents, stage: move data extents
[27284.037839] BTRFS info (device vdb): found 1896 extents, stage: update data pointers
[27285.707174] BTRFS info (device vdb): relocating block group 802219360256 flags data
[27308.192930] BTRFS info (device vdb): found 1859 extents, stage: move data extents
[27309.385774] BTRFS info (device vdb): found 1859 extents, stage: update data pointers
[27310.124037] BTRFS info (device vdb): relocating block group 801145618432 flags data
[27347.834161] BTRFS info (device vdb): found 22195 extents, stage: move data extents
[27355.655467] BTRFS info (device vdb): found 22195 extents, stage: update data pointers
[27359.916251] BTRFS info (device vdb): relocating block group 800071876608 flags data
[27383.570818] BTRFS info (device vdb): found 1858 extents, stage: move data extents
[27385.060721] BTRFS info (device vdb): found 1858 extents, stage: update data pointers
[27386.006149] BTRFS info (device vdb): relocating block group 797924392960 flags data
[27408.600279] BTRFS info (device vdb): found 1893 extents, stage: move data extents
[27412.334683] BTRFS info (device vdb): found 1893 extents, stage: update data pointers
[27414.718714] BTRFS info (device vdb): relocating block group 795776909312 flags data
[27437.018998] BTRFS info (device vdb): found 1860 extents, stage: move data extents
[27438.883655] BTRFS info (device vdb): found 1860 extents, stage: update data pointers
[27440.153299] BTRFS info (device vdb): relocating block group 794434732032 flags data
[27444.303170] BTRFS info (device vdb): found 320 extents, stage: move data extents
[27445.409892] BTRFS info (device vdb): found 320 extents, stage: update data pointers
[27446.139757] BTRFS info (device vdb): relocating block group 791481942016 flags data
[27468.437479] BTRFS info (device vdb): found 1858 extents, stage: move data extents
[27470.201730] BTRFS info (device vdb): found 1858 extents, stage: update data pointers
[27471.409839] BTRFS info (device vdb): relocating block group 790408200192 flags data
[27496.253432] BTRFS info (device vdb): found 2049 extents, stage: move data extents
[27497.410073] BTRFS info (device vdb): found 2049 extents, stage: update data pointers
[27498.116985] BTRFS info (device vdb): relocating block group 777523298304 flags data
[27522.750625] BTRFS info (device vdb): found 2071 extents, stage: move data extents
[27524.603792] BTRFS info (device vdb): found 2071 extents, stage: update data pointers
[27525.789267] BTRFS info (device vdb): relocating block group 772154589184 flags data
[27548.288114] BTRFS info (device vdb): found 1865 extents, stage: move data extents
[27550.292856] BTRFS info (device vdb): found 1865 extents, stage: update data pointers
[27551.681538] BTRFS info (device vdb): relocating block group 768933363712 flags data
[27576.779988] BTRFS info (device vdb): found 2055 extents, stage: move data extents
[27578.282940] BTRFS info (device vdb): found 2055 extents, stage: update data pointers
[27579.165137] BTRFS info (device vdb): relocating block group 768396492800 flags data
[27589.929663] BTRFS info (device vdb): found 834 extents, stage: move data extents
[27591.461273] BTRFS info (device vdb): found 834 extents, stage: update data pointers
[27592.474947] BTRFS info (device vdb): relocating block group 768128057344 flags data
[27593.406550] BTRFS info (device vdb): found 65 extents, stage: move data extents
[27594.526250] BTRFS info (device vdb): found 65 extents, stage: update data pointers
[27595.352185] BTRFS info (device vdb): relocating block group 762490912768 flags data
[27619.733462] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[27621.378061] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[27622.432225] BTRFS info (device vdb): relocating block group 754974720000 flags data
[27644.854878] BTRFS info (device vdb): found 1859 extents, stage: move data extents
[27646.294155] BTRFS info (device vdb): found 1859 extents, stage: update data pointers
[27647.236593] BTRFS info (device vdb): relocating block group 752827236352 flags data
[27669.490601] BTRFS info (device vdb): found 1858 extents, stage: move data extents
[27671.158822] BTRFS info (device vdb): found 1858 extents, stage: update data pointers
[27672.185455] BTRFS info (device vdb): relocating block group 750679752704 flags data
[27694.423618] BTRFS info (device vdb): found 1861 extents, stage: move data extents
[27696.245601] BTRFS info (device vdb): found 1861 extents, stage: update data pointers
[27697.541878] BTRFS info (device vdb): relocating block group 749606010880 flags data
[27739.333051] BTRFS info (device vdb): found 29713 extents, stage: move data extents
[27752.141080] BTRFS info (device vdb): found 29713 extents, stage: update data pointers
[27759.197563] BTRFS info (device vdb): relocating block group 748532269056 flags data
[27783.544796] BTRFS info (device vdb): found 1859 extents, stage: move data extents
[27785.517501] BTRFS info (device vdb): found 1859 extents, stage: update data pointers
[27786.750258] BTRFS info (device vdb): relocating block group 746384785408 flags data
[27809.800390] BTRFS info (device vdb): found 1860 extents, stage: move data extents
[27811.606821] BTRFS info (device vdb): found 1860 extents, stage: update data pointers
[27812.827038] BTRFS info (device vdb): relocating block group 744237301760 flags data
[27835.736951] BTRFS info (device vdb): found 1858 extents, stage: move data extents
[27837.533737] BTRFS info (device vdb): found 1858 extents, stage: update data pointers
[27838.746883] BTRFS info (device vdb): relocating block group 742089818112 flags data
[27861.471055] BTRFS info (device vdb): found 1860 extents, stage: move data extents
[27863.856854] BTRFS info (device vdb): found 1860 extents, stage: update data pointers
[27865.480623] BTRFS info (device vdb): relocating block group 739942334464 flags data
[27889.054026] BTRFS info (device vdb): found 1859 extents, stage: move data extents
[27891.098314] BTRFS info (device vdb): found 1859 extents, stage: update data pointers
[27892.444808] BTRFS info (device vdb): relocating block group 737794850816 flags data
[27915.047350] BTRFS info (device vdb): found 1858 extents, stage: move data extents
[27917.297043] BTRFS info (device vdb): found 1858 extents, stage: update data pointers
[27918.714731] BTRFS info (device vdb): relocating block group 736721108992 flags data
[27992.112038] BTRFS info (device vdb): found 90072 extents, stage: move data extents
[28023.964007] BTRFS info (device vdb): found 90072 extents, stage: update data pointers
[28046.326133] BTRFS info (device vdb): relocating block group 735647367168 flags data
[28069.367501] BTRFS info (device vdb): found 1859 extents, stage: move data extents
[28071.506578] BTRFS info (device vdb): found 1859 extents, stage: update data pointers
[28072.877494] BTRFS info (device vdb): relocating block group 733499883520 flags data
[28096.750283] BTRFS info (device vdb): found 1857 extents, stage: move data extents
[28098.471876] BTRFS info (device vdb): found 1857 extents, stage: update data pointers
[28099.546294] BTRFS info (device vdb): relocating block group 731352399872 flags data
[28122.202014] BTRFS info (device vdb): found 1857 extents, stage: move data extents
[28124.118891] BTRFS info (device vdb): found 1857 extents, stage: update data pointers
[28125.196769] BTRFS info (device vdb): relocating block group 729204916224 flags data
[28148.046712] BTRFS info (device vdb): found 1857 extents, stage: move data extents
[28149.578633] BTRFS info (device vdb): found 1857 extents, stage: update data pointers
[28150.525538] BTRFS info (device vdb): relocating block group 727057432576 flags data
[28172.978781] BTRFS info (device vdb): found 1857 extents, stage: move data extents
[28174.414950] BTRFS info (device vdb): found 1857 extents, stage: update data pointers
[28175.327867] BTRFS info (device vdb): relocating block group 724909948928 flags data
[28198.443998] BTRFS info (device vdb): found 1857 extents, stage: move data extents
[28200.352053] BTRFS info (device vdb): found 1857 extents, stage: update data pointers
[28201.607216] BTRFS info (device vdb): relocating block group 722762465280 flags data
[28224.863376] BTRFS info (device vdb): found 1856 extents, stage: move data extents
[28226.656550] BTRFS info (device vdb): found 1856 extents, stage: update data pointers
[28227.759733] BTRFS info (device vdb): relocating block group 720614981632 flags data
[28250.664475] BTRFS info (device vdb): found 1857 extents, stage: move data extents
[28252.374721] BTRFS info (device vdb): found 1857 extents, stage: update data pointers
[28253.497677] BTRFS info (device vdb): relocating block group 718467497984 flags data
[28276.436845] BTRFS info (device vdb): found 1857 extents, stage: move data extents
[28277.935031] BTRFS info (device vdb): found 1857 extents, stage: update data pointers
[28278.868100] BTRFS info (device vdb): relocating block group 716320014336 flags data
[28301.495599] BTRFS info (device vdb): found 1856 extents, stage: move data extents
[28302.730745] BTRFS info (device vdb): found 1856 extents, stage: update data pointers
[28303.504893] BTRFS info (device vdb): relocating block group 714172530688 flags data
[28326.143455] BTRFS info (device vdb): found 1856 extents, stage: move data extents
[28327.359687] BTRFS info (device vdb): found 1856 extents, stage: update data pointers
[28328.122584] BTRFS info (device vdb): relocating block group 712025047040 flags data
[28350.472434] BTRFS info (device vdb): found 1857 extents, stage: move data extents
[28351.791666] BTRFS info (device vdb): found 1857 extents, stage: update data pointers
[28352.668276] BTRFS info (device vdb): relocating block group 709877563392 flags data
[28375.674653] BTRFS info (device vdb): found 1857 extents, stage: move data extents
[28377.059336] BTRFS info (device vdb): found 1857 extents, stage: update data pointers
[28377.945500] BTRFS info (device vdb): relocating block group 707730079744 flags data
[28400.770104] BTRFS info (device vdb): found 1859 extents, stage: move data extents
[28402.654978] BTRFS info (device vdb): found 1859 extents, stage: update data pointers
[28403.854168] BTRFS info (device vdb): relocating block group 705582596096 flags data
[28426.651774] BTRFS info (device vdb): found 1860 extents, stage: move data extents
[28428.345610] BTRFS info (device vdb): found 1860 extents, stage: update data pointers
[28429.432999] BTRFS info (device vdb): relocating block group 703435112448 flags data
[28451.810086] BTRFS info (device vdb): found 1859 extents, stage: move data extents
[28454.041631] BTRFS info (device vdb): found 1859 extents, stage: update data pointers
[28455.339118] BTRFS info (device vdb): relocating block group 701287628800 flags data
[28478.093936] BTRFS info (device vdb): found 1857 extents, stage: move data extents
[28479.363580] BTRFS info (device vdb): found 1857 extents, stage: update data pointers
[28480.171555] BTRFS info (device vdb): relocating block group 699140145152 flags data
[28503.533138] BTRFS info (device vdb): found 1897 extents, stage: move data extents
[28507.203863] BTRFS info (device vdb): found 1897 extents, stage: update data pointers
[28509.294910] BTRFS info (device vdb): relocating block group 696992661504 flags data
[28532.577109] BTRFS info (device vdb): found 1970 extents, stage: move data extents
[28537.892450] BTRFS info (device vdb): found 1970 extents, stage: update data pointers
[28541.000916] BTRFS info (device vdb): relocating block group 694845177856 flags data
[28563.732753] BTRFS info (device vdb): found 1919 extents, stage: move data extents
[28567.582865] BTRFS info (device vdb): found 1919 extents, stage: update data pointers
[28569.899114] BTRFS info (device vdb): relocating block group 692697694208 flags data
[28593.377739] BTRFS info (device vdb): found 1984 extents, stage: move data extents
[28598.125973] BTRFS info (device vdb): found 1984 extents, stage: update data pointers
[28600.877349] BTRFS info (device vdb): relocating block group 687328985088 flags data
[28609.050994] BTRFS info (device vdb): found 2892 extents, stage: move data extents
[28613.124253] BTRFS info (device vdb): found 2892 extents, stage: update data pointers
[28615.580432] BTRFS info (device vdb): relocating block group 686255243264 flags data
[28638.479007] BTRFS info (device vdb): found 1891 extents, stage: move data extents
[28640.750603] BTRFS info (device vdb): found 1891 extents, stage: update data pointers
[28642.185489] BTRFS info (device vdb): relocating block group 681960275968 flags data
[28667.956098] BTRFS info (device vdb): found 2114 extents, stage: move data extents
[28672.791417] BTRFS info (device vdb): found 2114 extents, stage: update data pointers
[28675.907981] BTRFS info (device vdb): relocating block group 676591566848 flags data
[28701.100806] BTRFS info (device vdb): found 2082 extents, stage: move data extents
[28704.940507] BTRFS info (device vdb): found 2082 extents, stage: update data pointers
[28707.358851] BTRFS info (device vdb): relocating block group 671222857728 flags data
[28730.577779] BTRFS info (device vdb): found 1941 extents, stage: move data extents
[28735.347113] BTRFS info (device vdb): found 1941 extents, stage: update data pointers
[28738.303841] BTRFS info (device vdb): relocating block group 669075374080 flags data
[28761.463913] BTRFS info (device vdb): found 1934 extents, stage: move data extents
[28766.474727] BTRFS info (device vdb): found 1934 extents, stage: update data pointers
[28769.795470] BTRFS info (device vdb): relocating block group 663706664960 flags data
[28794.679917] BTRFS info (device vdb): found 2135 extents, stage: move data extents
[28799.740854] BTRFS info (device vdb): found 2135 extents, stage: update data pointers
[28802.935075] BTRFS info (device vdb): relocating block group 660485439488 flags data
[28829.137338] BTRFS info (device vdb): found 2132 extents, stage: move data extents
[28834.778814] BTRFS info (device vdb): found 2132 extents, stage: update data pointers
[28838.227427] BTRFS info (device vdb): relocating block group 651895504896 flags data
[28860.918208] BTRFS info (device vdb): found 1907 extents, stage: move data extents
[28863.150765] BTRFS info (device vdb): found 1907 extents, stage: update data pointers
[28864.513676] BTRFS info (device vdb): relocating block group 650821763072 flags data
[28890.308333] BTRFS info (device vdb): found 2097 extents, stage: move data extents
[28892.938225] BTRFS info (device vdb): found 2097 extents, stage: update data pointers
[28894.583738] BTRFS info (device vdb): relocating block group 642231828480 flags data
[28919.814216] BTRFS info (device vdb): found 2102 extents, stage: move data extents
[28924.867219] BTRFS info (device vdb): found 2102 extents, stage: update data pointers
[28928.139947] BTRFS info (device vdb): relocating block group 641158086656 flags data
[28951.702764] BTRFS info (device vdb): found 1928 extents, stage: move data extents
[28954.680500] BTRFS info (device vdb): found 1928 extents, stage: update data pointers
[28956.566180] BTRFS info (device vdb): relocating block group 639010603008 flags data
[28979.855306] BTRFS info (device vdb): found 1937 extents, stage: move data extents
[28982.948757] BTRFS info (device vdb): found 1937 extents, stage: update data pointers
[28984.931186] BTRFS info (device vdb): relocating block group 630420668416 flags data
[29010.328129] BTRFS info (device vdb): found 2200 extents, stage: move data extents
[29015.151904] BTRFS info (device vdb): found 2200 extents, stage: update data pointers
[29018.307713] BTRFS info (device vdb): relocating block group 629346926592 flags data
[29044.190409] BTRFS info (device vdb): found 2112 extents, stage: move data extents
[29049.640078] BTRFS info (device vdb): found 2112 extents, stage: update data pointers
[29052.978494] BTRFS info (device vdb): relocating block group 628273184768 flags data
[29078.653164] BTRFS info (device vdb): found 2152 extents, stage: move data extents
[29083.833972] BTRFS info (device vdb): found 2152 extents, stage: update data pointers
[29087.013670] BTRFS info (device vdb): relocating block group 624204709888 flags data
[29104.996809] BTRFS info (device vdb): found 1435 extents, stage: move data extents
[29107.299536] BTRFS info (device vdb): found 1435 extents, stage: update data pointers
[29108.722943] BTRFS info (device vdb): relocating block group 623978217472 flags data
[29112.681121] BTRFS info (device vdb): found 306 extents, stage: move data extents
[29113.893025] BTRFS info (device vdb): found 306 extents, stage: update data pointers
[29114.693450] BTRFS info (device vdb): relocating block group 622904475648 flags data
[29149.973739] BTRFS info (device vdb): found 17162 extents, stage: move data extents
[29160.187713] BTRFS info (device vdb): found 17162 extents, stage: update data pointers
[29165.971522] BTRFS info (device vdb): relocating block group 621830733824 flags data
[29189.816427] BTRFS info (device vdb): found 1893 extents, stage: move data extents
[29192.077318] BTRFS info (device vdb): found 1893 extents, stage: update data pointers
[29193.444304] BTRFS info (device vdb): relocating block group 619683250176 flags data
[29216.582521] BTRFS info (device vdb): found 1885 extents, stage: move data extents
[29218.238217] BTRFS info (device vdb): found 1885 extents, stage: update data pointers
[29219.226697] BTRFS info (device vdb): relocating block group 618609508352 flags data
[29253.515208] BTRFS info (device vdb): found 16507 extents, stage: move data extents
[29263.048902] BTRFS info (device vdb): found 16507 extents, stage: update data pointers
[29268.499678] BTRFS info (device vdb): relocating block group 612167057408 flags data
[29294.946185] BTRFS info (device vdb): found 2310 extents, stage: move data extents
[29297.066559] BTRFS info (device vdb): found 2310 extents, stage: update data pointers
[29298.287170] BTRFS info (device vdb): relocating block group 611093315584 flags data
[29324.793055] BTRFS info (device vdb): found 2150 extents, stage: move data extents
[29328.404412] BTRFS info (device vdb): found 2150 extents, stage: update data pointers
[29330.791939] BTRFS info (device vdb): relocating block group 608945831936 flags data
[29357.529425] BTRFS info (device vdb): found 2169 extents, stage: move data extents
[29364.087149] BTRFS info (device vdb): found 2169 extents, stage: update data pointers
[29368.271726] BTRFS info (device vdb): relocating block group 605724606464 flags data
[29393.302385] BTRFS info (device vdb): found 2118 extents, stage: move data extents
[29398.028619] BTRFS info (device vdb): found 2118 extents, stage: update data pointers
[29401.071236] BTRFS info (device vdb): relocating block group 603577122816 flags data
[29413.975655] BTRFS info (device vdb): found 977 extents, stage: move data extents
[29415.043707] BTRFS info (device vdb): found 977 extents, stage: update data pointers
[29415.706909] BTRFS info (device vdb): relocating block group 602503380992 flags data
[29438.951029] BTRFS info (device vdb): found 1884 extents, stage: move data extents
[29440.282946] BTRFS info (device vdb): found 1884 extents, stage: update data pointers
[29441.097986] BTRFS info (device vdb): relocating block group 601429639168 flags data
[29466.013542] BTRFS info (device vdb): found 2069 extents, stage: move data extents
[29467.502003] BTRFS info (device vdb): found 2069 extents, stage: update data pointers
[29468.426333] BTRFS info (device vdb): relocating block group 594987188224 flags data
[29493.642136] BTRFS info (device vdb): found 2049 extents, stage: move data extents
[29495.137969] BTRFS info (device vdb): found 2049 extents, stage: update data pointers
[29496.056344] BTRFS info (device vdb): relocating block group 587470995456 flags data
[29518.947526] BTRFS info (device vdb): found 1866 extents, stage: move data extents
[29521.401389] BTRFS info (device vdb): found 1866 extents, stage: update data pointers
[29522.963540] BTRFS info (device vdb): relocating block group 586397253632 flags data
[29548.253769] BTRFS info (device vdb): found 2059 extents, stage: move data extents
[29550.785532] BTRFS info (device vdb): found 2059 extents, stage: update data pointers
[29552.563219] BTRFS info (device vdb): relocating block group 567069900800 flags data
[29577.650594] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[29578.745971] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[29579.400315] BTRFS info (device vdb): relocating block group 565996158976 flags data
[29602.417202] BTRFS info (device vdb): found 1856 extents, stage: move data extents
[29603.480016] BTRFS info (device vdb): found 1856 extents, stage: update data pointers
[29604.131323] BTRFS info (device vdb): relocating block group 564922417152 flags data
[29629.252548] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[29630.290298] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[29630.908758] BTRFS info (device vdb): relocating block group 561701191680 flags data
[29656.297162] BTRFS info (device vdb): found 2159 extents, stage: move data extents
[29663.008087] BTRFS info (device vdb): found 2159 extents, stage: update data pointers
[29667.133055] BTRFS info (device vdb): relocating block group 560627449856 flags data
[29692.499834] BTRFS info (device vdb): found 2088 extents, stage: move data extents
[29694.859328] BTRFS info (device vdb): found 2088 extents, stage: update data pointers
[29696.391896] BTRFS info (device vdb): relocating block group 559553708032 flags data
[29721.264770] BTRFS info (device vdb): found 2152 extents, stage: move data extents
[29725.362271] BTRFS info (device vdb): found 2152 extents, stage: update data pointers
[29727.923174] BTRFS info (device vdb): relocating block group 557406224384 flags data
[29753.056400] BTRFS info (device vdb): found 2058 extents, stage: move data extents
[29757.915959] BTRFS info (device vdb): found 2058 extents, stage: update data pointers
[29760.844994] BTRFS info (device vdb): relocating block group 556332482560 flags data
[29785.885860] BTRFS info (device vdb): found 2066 extents, stage: move data extents
[29789.109746] BTRFS info (device vdb): found 2066 extents, stage: update data pointers
[29791.104188] BTRFS info (device vdb): relocating block group 555258740736 flags data
[29816.118605] BTRFS info (device vdb): found 2141 extents, stage: move data extents
[29820.894558] BTRFS info (device vdb): found 2141 extents, stage: update data pointers
[29823.836927] BTRFS info (device vdb): relocating block group 553111257088 flags data
[29846.539973] BTRFS info (device vdb): found 1892 extents, stage: move data extents
[29849.790302] BTRFS info (device vdb): found 1892 extents, stage: update data pointers
[29852.281981] BTRFS info (device vdb): relocating block group 550963773440 flags data
[29875.300283] BTRFS info (device vdb): found 1871 extents, stage: move data extents
[29877.988109] BTRFS info (device vdb): found 1871 extents, stage: update data pointers
[29879.746464] BTRFS info (device vdb): relocating block group 548816289792 flags data
[29902.641446] BTRFS info (device vdb): found 1898 extents, stage: move data extents
[29905.154887] BTRFS info (device vdb): found 1898 extents, stage: update data pointers
[29906.797210] BTRFS info (device vdb): relocating block group 543447580672 flags data
[29931.857736] BTRFS info (device vdb): found 2089 extents, stage: move data extents
[29936.172045] BTRFS info (device vdb): found 2089 extents, stage: update data pointers
[29938.973000] BTRFS info (device vdb): relocating block group 542373838848 flags data
[29974.442875] BTRFS info (device vdb): found 18213 extents, stage: move data extents
[29999.506648] BTRFS info (device vdb): found 18213 extents, stage: update data pointers
[30013.663424] BTRFS info (device vdb): relocating block group 541300097024 flags data
[30040.040314] BTRFS info (device vdb): found 2116 extents, stage: move data extents
[30043.976497] BTRFS info (device vdb): found 2116 extents, stage: update data pointers
[30046.458722] BTRFS info (device vdb): relocating block group 535931387904 flags data
[30071.772241] BTRFS info (device vdb): found 2070 extents, stage: move data extents
[30075.041835] BTRFS info (device vdb): found 2070 extents, stage: update data pointers
[30077.220636] BTRFS info (device vdb): relocating block group 534857646080 flags data
[30103.531381] BTRFS info (device vdb): found 2063 extents, stage: move data extents
[30105.643122] BTRFS info (device vdb): found 2063 extents, stage: update data pointers
[30107.031041] BTRFS info (device vdb): relocating block group 533171535872 flags data
[30113.059657] BTRFS info (device vdb): found 469 extents, stage: move data extents
[30114.723275] BTRFS info (device vdb): found 469 extents, stage: update data pointers
[30115.814960] BTRFS info (device vdb): relocating block group 530562678784 flags data
[30156.466606] BTRFS info (device vdb): found 24422 extents, stage: move data extents
[30165.297864] BTRFS info (device vdb): found 24422 extents, stage: update data pointers
[30170.263994] BTRFS info (device vdb): relocating block group 528415195136 flags data
[30210.136506] BTRFS info (device vdb): found 22277 extents, stage: move data extents
[30218.437628] BTRFS info (device vdb): found 22277 extents, stage: update data pointers
[30224.177346] BTRFS info (device vdb): relocating block group 519825260544 flags data
[30250.496254] BTRFS info (device vdb): found 2071 extents, stage: move data extents
[30253.463374] BTRFS info (device vdb): found 2071 extents, stage: update data pointers
[30255.413027] BTRFS info (device vdb): relocating block group 514456551424 flags data
[30278.316137] BTRFS info (device vdb): found 1866 extents, stage: move data extents
[30280.666381] BTRFS info (device vdb): found 1866 extents, stage: update data pointers
[30282.261768] BTRFS info (device vdb): relocating block group 511235325952 flags data
[30308.016750] BTRFS info (device vdb): found 2069 extents, stage: move data extents
[30311.011702] BTRFS info (device vdb): found 2069 extents, stage: update data pointers
[30313.021165] BTRFS info (device vdb): relocating block group 502645391360 flags data
[30339.269671] BTRFS info (device vdb): found 2119 extents, stage: move data extents
[30345.142179] BTRFS info (device vdb): found 2119 extents, stage: update data pointers
[30348.995910] BTRFS info (device vdb): relocating block group 501437431808 flags data
[30374.834230] BTRFS info (device vdb): found 2166 extents, stage: move data extents
[30380.365784] BTRFS info (device vdb): found 2166 extents, stage: update data pointers
[30383.958921] BTRFS info (device vdb): relocating block group 499424165888 flags data
[30407.031147] BTRFS info (device vdb): found 1895 extents, stage: move data extents
[30410.369800] BTRFS info (device vdb): found 1895 extents, stage: update data pointers
[30412.572411] BTRFS info (device vdb): relocating block group 497276682240 flags data
[30436.346933] BTRFS info (device vdb): found 1892 extents, stage: move data extents
[30439.613338] BTRFS info (device vdb): found 1892 extents, stage: update data pointers
[30441.828216] BTRFS info (device vdb): relocating block group 481172684800 flags data
[30443.627267] BTRFS info (device vdb): found 901 extents, stage: move data extents
[30444.517450] BTRFS info (device vdb): found 901 extents, stage: update data pointers
[30445.067199] BTRFS info (device vdb): relocating block group 462916943872 flags data
[30468.043722] BTRFS info (device vdb): found 1975 extents, stage: move data extents
[30474.277512] BTRFS info (device vdb): found 1975 extents, stage: update data pointers
[30478.375892] BTRFS info (device vdb): relocating block group 460769460224 flags data
[30504.519310] BTRFS info (device vdb): found 2264 extents, stage: move data extents
[30511.842253] BTRFS info (device vdb): found 2264 extents, stage: update data pointers
[30516.383227] BTRFS info (device vdb): relocating block group 452179525632 flags data
[30539.431277] BTRFS info (device vdb): found 1858 extents, stage: move data extents
[30540.872687] BTRFS info (device vdb): found 1858 extents, stage: update data pointers
[30541.829936] BTRFS info (device vdb): relocating block group 450032041984 flags data
[30565.491776] BTRFS info (device vdb): found 1859 extents, stage: move data extents
[30567.200209] BTRFS info (device vdb): found 1859 extents, stage: update data pointers
[30568.372894] BTRFS info (device vdb): relocating block group 448152993792 flags data
[30585.269142] BTRFS info (device vdb): found 1346 extents, stage: move data extents
[30586.546769] BTRFS info (device vdb): found 1346 extents, stage: update data pointers
[30587.381152] BTRFS info (device vdb): relocating block group 445737074688 flags data
[30610.234785] BTRFS info (device vdb): found 1857 extents, stage: move data extents
[30611.459522] BTRFS info (device vdb): found 1857 extents, stage: update data pointers
[30612.253243] BTRFS info (device vdb): relocating block group 442515849216 flags data
[30637.885233] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[30639.172977] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[30639.998557] BTRFS info (device vdb): relocating block group 441442107392 flags data
[30662.227257] BTRFS info (device vdb): found 1857 extents, stage: move data extents
[30663.585777] BTRFS info (device vdb): found 1857 extents, stage: update data pointers
[30664.491718] BTRFS info (device vdb): relocating block group 440368365568 flags data
[30689.404542] BTRFS info (device vdb): found 2049 extents, stage: move data extents
[30690.952821] BTRFS info (device vdb): found 2049 extents, stage: update data pointers
[30691.923620] BTRFS info (device vdb): relocating block group 438220881920 flags data
[30717.340863] BTRFS info (device vdb): found 2049 extents, stage: move data extents
[30718.518633] BTRFS info (device vdb): found 2049 extents, stage: update data pointers
[30719.227170] BTRFS info (device vdb): relocating block group 437147140096 flags data
[30742.592088] BTRFS info (device vdb): found 1856 extents, stage: move data extents
[30743.794177] BTRFS info (device vdb): found 1856 extents, stage: update data pointers
[30744.529116] BTRFS info (device vdb): relocating block group 434999656448 flags data
[30767.032215] BTRFS info (device vdb): found 1857 extents, stage: move data extents
[30768.440646] BTRFS info (device vdb): found 1857 extents, stage: update data pointers
[30769.278954] BTRFS info (device vdb): relocating block group 433925914624 flags data
[30794.224458] BTRFS info (device vdb): found 2050 extents, stage: move data extents
[30795.922262] BTRFS info (device vdb): found 2050 extents, stage: update data pointers
[30797.005330] BTRFS info (device vdb): relocating block group 432852172800 flags data
[30819.595003] BTRFS info (device vdb): found 1856 extents, stage: move data extents
[30820.749582] BTRFS info (device vdb): found 1856 extents, stage: update data pointers
[30821.468163] BTRFS info (device vdb): relocating block group 431778430976 flags data
[30846.451897] BTRFS info (device vdb): found 2049 extents, stage: move data extents
[30847.603249] BTRFS info (device vdb): found 2049 extents, stage: update data pointers
[30848.307650] BTRFS info (device vdb): relocating block group 429630947328 flags data
[30873.327075] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[30874.638909] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[30875.466987] BTRFS info (device vdb): relocating block group 427483463680 flags data
[30900.294399] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[30901.491658] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[30902.295032] BTRFS info (device vdb): relocating block group 423188496384 flags data
[30927.350856] BTRFS info (device vdb): found 2056 extents, stage: move data extents
[30929.257161] BTRFS info (device vdb): found 2056 extents, stage: update data pointers
[30930.472304] BTRFS info (device vdb): relocating block group 411377336320 flags data
[30953.218632] BTRFS info (device vdb): found 1866 extents, stage: move data extents
[30955.826983] BTRFS info (device vdb): found 1866 extents, stage: update data pointers
[30957.597801] BTRFS info (device vdb): relocating block group 410303594496 flags data
[30982.719326] BTRFS info (device vdb): found 2059 extents, stage: move data extents
[30985.458799] BTRFS info (device vdb): found 2059 extents, stage: update data pointers
[30987.295569] BTRFS info (device vdb): relocating block group 409229852672 flags data
[31012.332281] BTRFS info (device vdb): found 2113 extents, stage: move data extents
[31015.952294] BTRFS info (device vdb): found 2113 extents, stage: update data pointers
[31018.218424] BTRFS info (device vdb): relocating block group 408156110848 flags data
[31044.105030] BTRFS info (device vdb): found 2054 extents, stage: move data extents
[31047.064705] BTRFS info (device vdb): found 2054 extents, stage: update data pointers
[31048.899035] BTRFS info (device vdb): relocating block group 407082369024 flags data
[31073.984989] BTRFS info (device vdb): found 2051 extents, stage: move data extents
[31076.153068] BTRFS info (device vdb): found 2051 extents, stage: update data pointers
[31077.595600] BTRFS info (device vdb): relocating block group 406008627200 flags data
[31102.796032] BTRFS info (device vdb): found 2057 extents, stage: move data extents
[31105.572396] BTRFS info (device vdb): found 2057 extents, stage: update data pointers
[31107.401954] BTRFS info (device vdb): relocating block group 404934885376 flags data
[31132.171614] BTRFS info (device vdb): found 2119 extents, stage: move data extents
[31135.962115] BTRFS info (device vdb): found 2119 extents, stage: update data pointers
[31138.365240] BTRFS info (device vdb): relocating block group 403861143552 flags data
[31163.525062] BTRFS info (device vdb): found 2052 extents, stage: move data extents
[31165.235136] BTRFS info (device vdb): found 2052 extents, stage: update data pointers
[31166.337563] BTRFS info (device vdb): relocating block group 399566188544 flags data
[31200.836281] workqueue: drain_vmap_area_work hogged CPU for >10000us 16 times, consider switching to WQ_UNBOUND
[31235.685668] BTRFS info (device vdb): found 62310 extents, stage: move data extents
[31259.727419] BTRFS info (device vdb): found 62310 extents, stage: update data pointers
[31274.154070] BTRFS info (device vdb): relocating block group 390976241664 flags data
[31301.955272] BTRFS info (device vdb): found 2049 extents, stage: move data extents
[31303.680479] BTRFS info (device vdb): found 2049 extents, stage: update data pointers
[31304.809945] BTRFS info (device vdb): relocating block group 387755016192 flags data
[31330.331928] BTRFS info (device vdb): found 2051 extents, stage: move data extents
[31333.163507] BTRFS info (device vdb): found 2051 extents, stage: update data pointers
[31335.172896] BTRFS info (device vdb): relocating block group 386681274368 flags data
[31360.268444] BTRFS info (device vdb): found 2064 extents, stage: move data extents
[31364.394206] BTRFS info (device vdb): found 2064 extents, stage: update data pointers
[31366.974166] BTRFS info (device vdb): relocating block group 385607532544 flags data
[31392.175542] BTRFS info (device vdb): found 2061 extents, stage: move data extents
[31396.269325] BTRFS info (device vdb): found 2061 extents, stage: update data pointers
[31398.844592] BTRFS info (device vdb): relocating block group 383460048896 flags data
[31423.857934] BTRFS info (device vdb): found 2066 extents, stage: move data extents
[31428.204621] BTRFS info (device vdb): found 2066 extents, stage: update data pointers
[31430.909045] BTRFS info (device vdb): relocating block group 382386307072 flags data
[31456.212418] BTRFS info (device vdb): found 2059 extents, stage: move data extents
[31459.759177] BTRFS info (device vdb): found 2059 extents, stage: update data pointers
[31462.170226] BTRFS info (device vdb): relocating block group 381312565248 flags data
[31487.238245] BTRFS info (device vdb): found 2057 extents, stage: move data extents
[31491.193173] BTRFS info (device vdb): found 2057 extents, stage: update data pointers
[31494.043219] BTRFS info (device vdb): relocating block group 380238823424 flags data
[31519.267762] BTRFS info (device vdb): found 2061 extents, stage: move data extents
[31523.381665] BTRFS info (device vdb): found 2061 extents, stage: update data pointers
[31525.980603] BTRFS info (device vdb): relocating block group 379165081600 flags data
[31551.483886] BTRFS info (device vdb): found 2063 extents, stage: move data extents
[31555.811501] BTRFS info (device vdb): found 2063 extents, stage: update data pointers
[31558.590519] BTRFS info (device vdb): relocating block group 378091339776 flags data
[31583.429173] BTRFS info (device vdb): found 2050 extents, stage: move data extents
[31587.362502] BTRFS info (device vdb): found 2050 extents, stage: update data pointers
[31590.082950] BTRFS info (device vdb): relocating block group 377017597952 flags data
[31615.487559] BTRFS info (device vdb): found 2056 extents, stage: move data extents
[31619.485831] BTRFS info (device vdb): found 2056 extents, stage: update data pointers
[31622.087737] BTRFS info (device vdb): relocating block group 375943856128 flags data
[31647.147151] BTRFS info (device vdb): found 2055 extents, stage: move data extents
[31650.243402] BTRFS info (device vdb): found 2055 extents, stage: update data pointers
[31652.288825] BTRFS info (device vdb): relocating block group 374870114304 flags data
[31677.485237] BTRFS info (device vdb): found 2059 extents, stage: move data extents
[31681.102382] BTRFS info (device vdb): found 2059 extents, stage: update data pointers
[31683.493971] BTRFS info (device vdb): relocating block group 373796372480 flags data
[31708.389442] BTRFS info (device vdb): found 2063 extents, stage: move data extents
[31712.517152] BTRFS info (device vdb): found 2063 extents, stage: update data pointers
[31715.100159] BTRFS info (device vdb): relocating block group 372722630656 flags data
[31740.444518] BTRFS info (device vdb): found 2052 extents, stage: move data extents
[31743.494555] BTRFS info (device vdb): found 2052 extents, stage: update data pointers
[31745.518673] BTRFS info (device vdb): relocating block group 370575147008 flags data
[31770.311623] BTRFS info (device vdb): found 2059 extents, stage: move data extents
[31775.366508] BTRFS info (device vdb): found 2059 extents, stage: update data pointers
[31778.150804] BTRFS info (device vdb): relocating block group 368427663360 flags data
[31802.757718] BTRFS info (device vdb): found 2067 extents, stage: move data extents
[31807.597128] BTRFS info (device vdb): found 2067 extents, stage: update data pointers
[31810.522734] BTRFS info (device vdb): relocating block group 360911470592 flags data
[31834.625332] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[31835.773324] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[31836.436095] BTRFS info (device vdb): relocating block group 359837728768 flags data
[31858.525048] BTRFS info (device vdb): found 1856 extents, stage: move data extents
[31859.913787] BTRFS info (device vdb): found 1856 extents, stage: update data pointers
[31860.736409] BTRFS info (device vdb): relocating block group 358763986944 flags data
[31884.847272] BTRFS info (device vdb): found 2049 extents, stage: move data extents
[31886.017014] BTRFS info (device vdb): found 2049 extents, stage: update data pointers
[31886.697814] BTRFS info (device vdb): relocating block group 356616503296 flags data
[31910.528214] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[31911.606466] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[31912.214700] BTRFS info (device vdb): relocating block group 354469019648 flags data
[31936.305187] BTRFS info (device vdb): found 2051 extents, stage: move data extents
[31938.059194] BTRFS info (device vdb): found 2051 extents, stage: update data pointers
[31939.119717] BTRFS info (device vdb): relocating block group 353395277824 flags data
[31961.391334] BTRFS info (device vdb): found 1867 extents, stage: move data extents
[31964.147333] BTRFS info (device vdb): found 1867 extents, stage: update data pointers
[31965.941657] BTRFS info (device vdb): relocating block group 352321536000 flags data
[32115.676995] BTRFS info (device vdb): found 232465 extents, stage: move data extents
[32182.854966] BTRFS info (device vdb): found 232465 extents, stage: update data pointers
[32233.929745] BTRFS info (device vdb): relocating block group 343731601408 flags data
[32258.470447] BTRFS info (device vdb): found 2058 extents, stage: move data extents
[32261.062007] BTRFS info (device vdb): found 2058 extents, stage: update data pointers
[32262.674170] BTRFS info (device vdb): relocating block group 342523707392 flags data
[32288.615632] BTRFS info (device vdb): found 2104 extents, stage: move data extents
[32295.229670] BTRFS info (device vdb): found 2104 extents, stage: update data pointers
[32299.331761] BTRFS info (device vdb): relocating block group 338228740096 flags data
[32324.695219] BTRFS info (device vdb): found 2124 extents, stage: move data extents
[32333.035704] BTRFS info (device vdb): found 2124 extents, stage: update data pointers
[32338.257726] BTRFS info (device vdb): relocating block group 337154998272 flags data
[32363.867650] BTRFS info (device vdb): found 2130 extents, stage: move data extents
[32371.910956] BTRFS info (device vdb): found 2130 extents, stage: update data pointers
[32377.154565] BTRFS info (device vdb): relocating block group 336081256448 flags data
[32403.639009] BTRFS info (device vdb): found 2120 extents, stage: move data extents
[32411.656893] BTRFS info (device vdb): found 2120 extents, stage: update data pointers
[32416.849246] BTRFS info (device vdb): relocating block group 335007514624 flags data
[32442.728267] BTRFS info (device vdb): found 2118 extents, stage: move data extents
[32450.892238] BTRFS info (device vdb): found 2118 extents, stage: update data pointers
[32456.202651] BTRFS info (device vdb): relocating block group 333933772800 flags data
[32482.615340] BTRFS info (device vdb): found 2103 extents, stage: move data extents
[32490.108051] BTRFS info (device vdb): found 2103 extents, stage: update data pointers
[32495.422433] BTRFS info (device vdb): relocating block group 332860030976 flags data
[32521.901407] BTRFS info (device vdb): found 2131 extents, stage: move data extents
[32529.078249] BTRFS info (device vdb): found 2131 extents, stage: update data pointers
[32533.772836] BTRFS info (device vdb): relocating block group 330712547328 flags data
[32559.676248] BTRFS info (device vdb): found 2106 extents, stage: move data extents
[32567.557460] BTRFS info (device vdb): found 2106 extents, stage: update data pointers
[32572.909208] BTRFS info (device vdb): relocating block group 329638805504 flags data
[32599.238235] BTRFS info (device vdb): found 2135 extents, stage: move data extents
[32608.004418] BTRFS info (device vdb): found 2135 extents, stage: update data pointers
[32614.013232] BTRFS info (device vdb): relocating block group 328565063680 flags data
[32640.163617] BTRFS info (device vdb): found 2104 extents, stage: move data extents
[32647.189719] BTRFS info (device vdb): found 2104 extents, stage: update data pointers
[32651.661968] BTRFS info (device vdb): relocating block group 327491321856 flags data
[32678.055422] BTRFS info (device vdb): found 2129 extents, stage: move data extents
[32685.649838] BTRFS info (device vdb): found 2129 extents, stage: update data pointers
[32690.625530] BTRFS info (device vdb): relocating block group 326417580032 flags data
[32717.210190] BTRFS info (device vdb): found 2100 extents, stage: move data extents
[32724.447999] BTRFS info (device vdb): found 2100 extents, stage: update data pointers
[32729.213595] BTRFS info (device vdb): relocating block group 325343838208 flags data
[32756.098170] BTRFS info (device vdb): found 2109 extents, stage: move data extents
[32762.803393] BTRFS info (device vdb): found 2109 extents, stage: update data pointers
[32767.221331] BTRFS info (device vdb): relocating block group 324270096384 flags data
[32794.028881] BTRFS info (device vdb): found 2108 extents, stage: move data extents
[32801.244847] BTRFS info (device vdb): found 2108 extents, stage: update data pointers
[32806.267651] BTRFS info (device vdb): relocating block group 323196354560 flags data
[32832.479179] BTRFS info (device vdb): found 2118 extents, stage: move data extents
[32838.978263] BTRFS info (device vdb): found 2118 extents, stage: update data pointers
[32843.469540] BTRFS info (device vdb): relocating block group 322122612736 flags data
[32869.452453] BTRFS info (device vdb): found 2128 extents, stage: move data extents
[32876.869508] BTRFS info (device vdb): found 2128 extents, stage: update data pointers
[32881.775341] BTRFS info (device vdb): relocating block group 321048870912 flags data
[32907.032475] BTRFS info (device vdb): found 2132 extents, stage: move data extents
[32913.416420] BTRFS info (device vdb): found 2132 extents, stage: update data pointers
[32917.773517] BTRFS info (device vdb): relocating block group 319975129088 flags data
[32943.161356] BTRFS info (device vdb): found 2103 extents, stage: move data extents
[32949.487207] BTRFS info (device vdb): found 2103 extents, stage: update data pointers
[32953.624650] BTRFS info (device vdb): relocating block group 318901387264 flags data
[32979.661051] BTRFS info (device vdb): found 2132 extents, stage: move data extents
[32987.061202] BTRFS info (device vdb): found 2132 extents, stage: update data pointers
[32991.696948] BTRFS info (device vdb): relocating block group 316753903616 flags data
[33017.643964] BTRFS info (device vdb): found 2107 extents, stage: move data extents
[33023.926783] BTRFS info (device vdb): found 2107 extents, stage: update data pointers
[33028.208056] BTRFS info (device vdb): relocating block group 315680161792 flags data
[33053.629935] BTRFS info (device vdb): found 2133 extents, stage: move data extents
[33060.850223] BTRFS info (device vdb): found 2133 extents, stage: update data pointers
[33065.552642] BTRFS info (device vdb): relocating block group 314606419968 flags data
[33091.278296] BTRFS info (device vdb): found 2131 extents, stage: move data extents
[33098.237408] BTRFS info (device vdb): found 2131 extents, stage: update data pointers
[33102.856266] BTRFS info (device vdb): relocating block group 313532678144 flags data
[33129.059717] BTRFS info (device vdb): found 2144 extents, stage: move data extents
[33136.048429] BTRFS info (device vdb): found 2144 extents, stage: update data pointers
[33140.656550] BTRFS info (device vdb): relocating block group 312458936320 flags data
[33166.660478] BTRFS info (device vdb): found 2146 extents, stage: move data extents
[33173.822365] BTRFS info (device vdb): found 2146 extents, stage: update data pointers
[33178.645641] BTRFS info (device vdb): relocating block group 308163969024 flags data
[33204.393865] BTRFS info (device vdb): found 2117 extents, stage: move data extents
[33211.237324] BTRFS info (device vdb): found 2117 extents, stage: update data pointers
[33215.945732] BTRFS info (device vdb): relocating block group 306016485376 flags data
[33242.678397] BTRFS info (device vdb): found 2137 extents, stage: move data extents
[33249.673086] BTRFS info (device vdb): found 2137 extents, stage: update data pointers
[33254.179214] BTRFS info (device vdb): relocating block group 304942743552 flags data
[33280.011469] BTRFS info (device vdb): found 2152 extents, stage: move data extents
[33287.211962] BTRFS info (device vdb): found 2152 extents, stage: update data pointers
[33291.853403] BTRFS info (device vdb): relocating block group 303869001728 flags data
[33317.853035] BTRFS info (device vdb): found 2132 extents, stage: move data extents
[33324.415061] BTRFS info (device vdb): found 2132 extents, stage: update data pointers
[33328.747314] BTRFS info (device vdb): relocating block group 301721518080 flags data
[33354.674597] BTRFS info (device vdb): found 2098 extents, stage: move data extents
[33361.146925] BTRFS info (device vdb): found 2098 extents, stage: update data pointers
[33365.535273] BTRFS info (device vdb): relocating block group 299574034432 flags data
[33391.251494] BTRFS info (device vdb): found 2114 extents, stage: move data extents
[33397.892393] BTRFS info (device vdb): found 2114 extents, stage: update data pointers
[33402.336733] BTRFS info (device vdb): relocating block group 298500292608 flags data
[33428.528645] BTRFS info (device vdb): found 2136 extents, stage: move data extents
[33435.736112] BTRFS info (device vdb): found 2136 extents, stage: update data pointers
[33440.694631] BTRFS info (device vdb): relocating block group 297426550784 flags data
[33467.010461] BTRFS info (device vdb): found 2134 extents, stage: move data extents
[33474.147331] BTRFS info (device vdb): found 2134 extents, stage: update data pointers
[33479.106193] BTRFS info (device vdb): relocating block group 295279067136 flags data
[33505.062314] BTRFS info (device vdb): found 2135 extents, stage: move data extents
[33512.154452] BTRFS info (device vdb): found 2135 extents, stage: update data pointers
[33517.052826] BTRFS info (device vdb): relocating block group 294205325312 flags data
[33542.837456] BTRFS info (device vdb): found 2139 extents, stage: move data extents
[33550.831230] BTRFS info (device vdb): found 2139 extents, stage: update data pointers
[33555.941931] BTRFS info (device vdb): relocating block group 293131583488 flags data
[33581.743184] BTRFS info (device vdb): found 2138 extents, stage: move data extents
[33589.317648] BTRFS info (device vdb): found 2138 extents, stage: update data pointers
[33594.386002] BTRFS info (device vdb): relocating block group 292057841664 flags data
[33620.746574] BTRFS info (device vdb): found 2123 extents, stage: move data extents
[33627.938577] BTRFS info (device vdb): found 2123 extents, stage: update data pointers
[33632.429909] BTRFS info (device vdb): relocating block group 290984099840 flags data
[33658.534626] BTRFS info (device vdb): found 2141 extents, stage: move data extents
[33666.623661] BTRFS info (device vdb): found 2141 extents, stage: update data pointers
[33671.658158] BTRFS info (device vdb): relocating block group 289910358016 flags data
[33697.423913] BTRFS info (device vdb): found 2101 extents, stage: move data extents
[33704.294064] BTRFS info (device vdb): found 2101 extents, stage: update data pointers
[33708.955640] BTRFS info (device vdb): relocating block group 288836616192 flags data
[33734.877343] BTRFS info (device vdb): found 2135 extents, stage: move data extents
[33742.627127] BTRFS info (device vdb): found 2135 extents, stage: update data pointers
[33747.703713] BTRFS info (device vdb): relocating block group 287762874368 flags data
[33774.323300] BTRFS info (device vdb): found 2108 extents, stage: move data extents
[33780.369730] BTRFS info (device vdb): found 2108 extents, stage: update data pointers
[33784.575167] BTRFS info (device vdb): relocating block group 285615390720 flags data
[33810.803921] BTRFS info (device vdb): found 2102 extents, stage: move data extents
[33816.482558] BTRFS info (device vdb): found 2102 extents, stage: update data pointers
[33820.413708] BTRFS info (device vdb): relocating block group 284541648896 flags data
[33846.501181] BTRFS info (device vdb): found 2130 extents, stage: move data extents
[33852.733088] BTRFS info (device vdb): found 2130 extents, stage: update data pointers
[33856.845431] BTRFS info (device vdb): relocating block group 283467907072 flags data
[33882.495960] BTRFS info (device vdb): found 2096 extents, stage: move data extents
[33888.560946] BTRFS info (device vdb): found 2096 extents, stage: update data pointers
[33892.564960] BTRFS info (device vdb): relocating block group 282394165248 flags data
[33919.075919] BTRFS info (device vdb): found 2095 extents, stage: move data extents
[33924.815534] BTRFS info (device vdb): found 2095 extents, stage: update data pointers
[33928.642858] BTRFS info (device vdb): relocating block group 281320423424 flags data
[33954.434453] BTRFS info (device vdb): found 2129 extents, stage: move data extents
[33960.092455] BTRFS info (device vdb): found 2129 extents, stage: update data pointers
[33963.810550] BTRFS info (device vdb): relocating block group 280246681600 flags data
[33990.028480] BTRFS info (device vdb): found 2108 extents, stage: move data extents
[33996.710174] BTRFS info (device vdb): found 2108 extents, stage: update data pointers
[34001.048365] BTRFS info (device vdb): relocating block group 278099197952 flags data
[34026.799059] BTRFS info (device vdb): found 2107 extents, stage: move data extents
[34033.233268] BTRFS info (device vdb): found 2107 extents, stage: update data pointers
[34037.602303] BTRFS info (device vdb): relocating block group 277025456128 flags data
[34063.506902] BTRFS info (device vdb): found 2129 extents, stage: move data extents
[34070.140227] BTRFS info (device vdb): found 2129 extents, stage: update data pointers
[34074.760888] BTRFS info (device vdb): relocating block group 275951714304 flags data
[34100.950559] BTRFS info (device vdb): found 2118 extents, stage: move data extents
[34107.202170] BTRFS info (device vdb): found 2118 extents, stage: update data pointers
[34111.525209] BTRFS info (device vdb): relocating block group 273938382848 flags data
[34134.437318] BTRFS info (device vdb): found 1867 extents, stage: move data extents
[34141.028475] BTRFS info (device vdb): found 1867 extents, stage: update data pointers
[34145.292193] BTRFS info (device vdb): relocating block group 272864641024 flags data
[34171.075394] BTRFS info (device vdb): found 2121 extents, stage: move data extents
[34177.917314] BTRFS info (device vdb): found 2121 extents, stage: update data pointers
[34182.557992] BTRFS info (device vdb): relocating block group 271790899200 flags data
[34208.257491] BTRFS info (device vdb): found 2108 extents, stage: move data extents
[34215.103786] BTRFS info (device vdb): found 2108 extents, stage: update data pointers
[34219.768498] BTRFS info (device vdb): relocating block group 270717157376 flags data
[34245.454576] BTRFS info (device vdb): found 2117 extents, stage: move data extents
[34252.351698] BTRFS info (device vdb): found 2117 extents, stage: update data pointers
[34257.039302] BTRFS info (device vdb): relocating block group 269643415552 flags data
[34282.961743] BTRFS info (device vdb): found 2094 extents, stage: move data extents
[34289.227956] BTRFS info (device vdb): found 2094 extents, stage: update data pointers
[34293.537076] BTRFS info (device vdb): relocating block group 268569673728 flags data
[34319.379887] BTRFS info (device vdb): found 2093 extents, stage: move data extents
[34325.981938] BTRFS info (device vdb): found 2093 extents, stage: update data pointers
[34330.361454] BTRFS info (device vdb): relocating block group 267495931904 flags data
[34356.029877] BTRFS info (device vdb): found 2106 extents, stage: move data extents
[34362.086691] BTRFS info (device vdb): found 2106 extents, stage: update data pointers
[34365.997367] BTRFS info (device vdb): relocating block group 266422190080 flags data
[34391.399936] BTRFS info (device vdb): found 2114 extents, stage: move data extents
[34398.004296] BTRFS info (device vdb): found 2114 extents, stage: update data pointers
[34402.225644] BTRFS info (device vdb): relocating block group 265348448256 flags data
[34428.198612] BTRFS info (device vdb): found 2158 extents, stage: move data extents
[34434.517538] BTRFS info (device vdb): found 2158 extents, stage: update data pointers
[34438.619427] BTRFS info (device vdb): relocating block group 264274706432 flags data
[34464.099728] BTRFS info (device vdb): found 2130 extents, stage: move data extents
[34471.136513] BTRFS info (device vdb): found 2130 extents, stage: update data pointers
[34475.676481] BTRFS info (device vdb): relocating block group 262127222784 flags data
[34501.273247] BTRFS info (device vdb): found 2104 extents, stage: move data extents
[34507.836135] BTRFS info (device vdb): found 2104 extents, stage: update data pointers
[34512.172839] BTRFS info (device vdb): relocating block group 261053480960 flags data
[34537.762248] BTRFS info (device vdb): found 2121 extents, stage: move data extents
[34544.459051] BTRFS info (device vdb): found 2121 extents, stage: update data pointers
[34548.805890] BTRFS info (device vdb): relocating block group 259979739136 flags data
[34574.098789] BTRFS info (device vdb): found 2099 extents, stage: move data extents
[34579.774538] BTRFS info (device vdb): found 2099 extents, stage: update data pointers
[34583.535162] BTRFS info (device vdb): relocating block group 258905997312 flags data
[34609.271099] BTRFS info (device vdb): found 2097 extents, stage: move data extents
[34615.693189] BTRFS info (device vdb): found 2097 extents, stage: update data pointers
[34619.843958] BTRFS info (device vdb): relocating block group 257832255488 flags data
[34645.158060] BTRFS info (device vdb): found 2102 extents, stage: move data extents
[34651.898982] BTRFS info (device vdb): found 2102 extents, stage: update data pointers
[34656.412652] BTRFS info (device vdb): relocating block group 256758513664 flags data
[34681.971668] BTRFS info (device vdb): found 2133 extents, stage: move data extents
[34688.749895] BTRFS info (device vdb): found 2133 extents, stage: update data pointers
[34693.414605] BTRFS info (device vdb): relocating block group 255684771840 flags data
[34718.796366] BTRFS info (device vdb): found 2082 extents, stage: move data extents
[34724.476775] BTRFS info (device vdb): found 2082 extents, stage: update data pointers
[34728.176465] BTRFS info (device vdb): relocating block group 254611030016 flags data
[34753.299072] BTRFS info (device vdb): found 2078 extents, stage: move data extents
[34757.825086] BTRFS info (device vdb): found 2078 extents, stage: update data pointers
[34760.832435] BTRFS info (device vdb): relocating block group 251389804544 flags data
[34786.115214] BTRFS info (device vdb): found 2088 extents, stage: move data extents
[34792.044385] BTRFS info (device vdb): found 2088 extents, stage: update data pointers
[34795.921907] BTRFS info (device vdb): relocating block group 250316062720 flags data
[34821.133231] BTRFS info (device vdb): found 2078 extents, stage: move data extents
[34826.191146] BTRFS info (device vdb): found 2078 extents, stage: update data pointers
[34829.524308] BTRFS info (device vdb): relocating block group 248168579072 flags data
[34855.190550] BTRFS info (device vdb): found 2111 extents, stage: move data extents
[34861.467521] BTRFS info (device vdb): found 2111 extents, stage: update data pointers
[34865.565054] BTRFS info (device vdb): relocating block group 247094837248 flags data
[34891.087848] BTRFS info (device vdb): found 2102 extents, stage: move data extents
[34896.692493] BTRFS info (device vdb): found 2102 extents, stage: update data pointers
[34900.346264] BTRFS info (device vdb): relocating block group 246021095424 flags data
[34925.904634] BTRFS info (device vdb): found 2100 extents, stage: move data extents
[34931.733540] BTRFS info (device vdb): found 2100 extents, stage: update data pointers
[34935.541136] BTRFS info (device vdb): relocating block group 244947353600 flags data
[34960.915610] BTRFS info (device vdb): found 2092 extents, stage: move data extents
[34967.786911] BTRFS info (device vdb): found 2092 extents, stage: update data pointers
[34972.157525] BTRFS info (device vdb): relocating block group 243873611776 flags data
[34997.745122] BTRFS info (device vdb): found 2086 extents, stage: move data extents
[35003.841012] BTRFS info (device vdb): found 2086 extents, stage: update data pointers
[35007.744695] BTRFS info (device vdb): relocating block group 242799869952 flags data
[35032.957812] BTRFS info (device vdb): found 2090 extents, stage: move data extents
[35038.479657] BTRFS info (device vdb): found 2090 extents, stage: update data pointers
[35042.113919] BTRFS info (device vdb): relocating block group 241726128128 flags data
[35067.377684] BTRFS info (device vdb): found 2097 extents, stage: move data extents
[35073.673609] BTRFS info (device vdb): found 2097 extents, stage: update data pointers
[35077.750054] BTRFS info (device vdb): relocating block group 240652386304 flags data
[35103.262645] BTRFS info (device vdb): found 2102 extents, stage: move data extents
[35109.766384] BTRFS info (device vdb): found 2102 extents, stage: update data pointers
[35113.944755] BTRFS info (device vdb): relocating block group 237431160832 flags data
[35139.554060] BTRFS info (device vdb): found 2090 extents, stage: move data extents
[35145.295771] BTRFS info (device vdb): found 2090 extents, stage: update data pointers
[35148.966823] BTRFS info (device vdb): relocating block group 235283677184 flags data
[35173.796231] BTRFS info (device vdb): found 2075 extents, stage: move data extents
[35178.231943] BTRFS info (device vdb): found 2075 extents, stage: update data pointers
[35181.168085] BTRFS info (device vdb): relocating block group 234209935360 flags data
[35206.207883] BTRFS info (device vdb): found 2076 extents, stage: move data extents
[35211.490668] BTRFS info (device vdb): found 2076 extents, stage: update data pointers
[35214.964823] BTRFS info (device vdb): relocating block group 232062451712 flags data
[35240.222471] BTRFS info (device vdb): found 2093 extents, stage: move data extents
[35245.509078] BTRFS info (device vdb): found 2093 extents, stage: update data pointers
[35248.960523] BTRFS info (device vdb): relocating block group 230988709888 flags data
[35274.464379] BTRFS info (device vdb): found 2087 extents, stage: move data extents
[35279.357845] BTRFS info (device vdb): found 2087 extents, stage: update data pointers
[35282.553108] BTRFS info (device vdb): relocating block group 229914968064 flags data
[35307.932342] BTRFS info (device vdb): found 2069 extents, stage: move data extents
[35312.239034] BTRFS info (device vdb): found 2069 extents, stage: update data pointers
[35315.043581] BTRFS info (device vdb): relocating block group 228841226240 flags data
[35340.345076] BTRFS info (device vdb): found 2090 extents, stage: move data extents
[35345.845488] BTRFS info (device vdb): found 2090 extents, stage: update data pointers
[35349.443504] BTRFS info (device vdb): relocating block group 226693742592 flags data
[35375.060149] BTRFS info (device vdb): found 2097 extents, stage: move data extents
[35380.785679] BTRFS info (device vdb): found 2097 extents, stage: update data pointers
[35384.476411] BTRFS info (device vdb): relocating block group 225620000768 flags data
[35409.552794] BTRFS info (device vdb): found 2087 extents, stage: move data extents
[35415.135222] BTRFS info (device vdb): found 2087 extents, stage: update data pointers
[35418.727779] BTRFS info (device vdb): relocating block group 224546258944 flags data
[35444.050952] BTRFS info (device vdb): found 2094 extents, stage: move data extents
[35450.749528] BTRFS info (device vdb): found 2094 extents, stage: update data pointers
[35455.083126] BTRFS info (device vdb): relocating block group 223472517120 flags data
[35480.312387] BTRFS info (device vdb): found 2097 extents, stage: move data extents
[35486.508910] BTRFS info (device vdb): found 2097 extents, stage: update data pointers
[35490.377698] BTRFS info (device vdb): relocating block group 222398775296 flags data
[35515.812390] BTRFS info (device vdb): found 2093 extents, stage: move data extents
[35521.164079] BTRFS info (device vdb): found 2093 extents, stage: update data pointers
[35524.629899] BTRFS info (device vdb): relocating block group 221325033472 flags data
[35549.702614] BTRFS info (device vdb): found 2096 extents, stage: move data extents
[35556.233651] BTRFS info (device vdb): found 2096 extents, stage: update data pointers
[35560.261553] BTRFS info (device vdb): relocating block group 220251291648 flags data
[35585.395748] BTRFS info (device vdb): found 2084 extents, stage: move data extents
[35591.676283] BTRFS info (device vdb): found 2084 extents, stage: update data pointers
[35595.656072] BTRFS info (device vdb): relocating block group 219177549824 flags data
[35620.783767] BTRFS info (device vdb): found 2100 extents, stage: move data extents
[35626.947506] BTRFS info (device vdb): found 2100 extents, stage: update data pointers
[35630.981635] BTRFS info (device vdb): relocating block group 218103808000 flags data
[35656.351872] BTRFS info (device vdb): found 2084 extents, stage: move data extents
[35662.429094] BTRFS info (device vdb): found 2084 extents, stage: update data pointers
[35666.276557] BTRFS info (device vdb): relocating block group 217030066176 flags data
[35691.946526] BTRFS info (device vdb): found 2094 extents, stage: move data extents
[35697.845654] BTRFS info (device vdb): found 2094 extents, stage: update data pointers
[35701.674637] BTRFS info (device vdb): relocating block group 215956324352 flags data
[35726.927137] BTRFS info (device vdb): found 2100 extents, stage: move data extents
[35733.262316] BTRFS info (device vdb): found 2100 extents, stage: update data pointers
[35737.398994] BTRFS info (device vdb): relocating block group 214882582528 flags data
[35762.828893] BTRFS info (device vdb): found 2100 extents, stage: move data extents
[35769.452735] BTRFS info (device vdb): found 2100 extents, stage: update data pointers
[35773.814141] BTRFS info (device vdb): relocating block group 213808840704 flags data
[35798.886629] BTRFS info (device vdb): found 2091 extents, stage: move data extents
[35804.845483] BTRFS info (device vdb): found 2091 extents, stage: update data pointers
[35808.818539] BTRFS info (device vdb): relocating block group 212735098880 flags data
[35834.474733] BTRFS info (device vdb): found 2089 extents, stage: move data extents
[35840.380083] BTRFS info (device vdb): found 2089 extents, stage: update data pointers
[35844.228004] BTRFS info (device vdb): relocating block group 210587615232 flags data
[35869.625145] BTRFS info (device vdb): found 2102 extents, stage: move data extents
[35876.294363] BTRFS info (device vdb): found 2102 extents, stage: update data pointers
[35880.630558] BTRFS info (device vdb): relocating block group 209513873408 flags data
[35905.339034] BTRFS info (device vdb): found 2093 extents, stage: move data extents
[35911.277721] BTRFS info (device vdb): found 2093 extents, stage: update data pointers
[35915.117624] BTRFS info (device vdb): relocating block group 208440131584 flags data
[35940.097857] BTRFS info (device vdb): found 2084 extents, stage: move data extents
[35945.507270] BTRFS info (device vdb): found 2084 extents, stage: update data pointers
[35949.027360] BTRFS info (device vdb): relocating block group 207366389760 flags data
[35974.263935] BTRFS info (device vdb): found 2090 extents, stage: move data extents
[35980.395361] BTRFS info (device vdb): found 2090 extents, stage: update data pointers
[35984.349143] BTRFS info (device vdb): relocating block group 206292647936 flags data
[36009.491299] BTRFS info (device vdb): found 2102 extents, stage: move data extents
[36015.294953] BTRFS info (device vdb): found 2102 extents, stage: update data pointers
[36019.061985] BTRFS info (device vdb): relocating block group 205218906112 flags data
[36064.879370] BTRFS info (device vdb): found 37733 extents, stage: move data extents
[36101.384106] BTRFS info (device vdb): found 37733 extents, stage: update data pointers
[36121.406684] BTRFS info (device vdb): relocating block group 204145164288 flags data
[36148.722918] BTRFS info (device vdb): found 2093 extents, stage: move data extents
[36154.574977] BTRFS info (device vdb): found 2093 extents, stage: update data pointers
[36158.367256] BTRFS info (device vdb): relocating block group 203071422464 flags data
[36183.462038] BTRFS info (device vdb): found 2098 extents, stage: move data extents
[36189.828736] BTRFS info (device vdb): found 2098 extents, stage: update data pointers
[36193.948685] BTRFS info (device vdb): relocating block group 200923938816 flags data
[36219.516801] BTRFS info (device vdb): found 2094 extents, stage: move data extents
[36225.482594] BTRFS info (device vdb): found 2094 extents, stage: update data pointers
[36229.402340] BTRFS info (device vdb): relocating block group 199850196992 flags data
[36254.442610] BTRFS info (device vdb): found 2096 extents, stage: move data extents
[36259.929068] BTRFS info (device vdb): found 2096 extents, stage: update data pointers
[36263.529079] BTRFS info (device vdb): relocating block group 198776455168 flags data
[36288.621616] BTRFS info (device vdb): found 2126 extents, stage: move data extents
[36294.515221] BTRFS info (device vdb): found 2126 extents, stage: update data pointers
[36298.209415] BTRFS info (device vdb): relocating block group 188039036928 flags data
[36320.774866] BTRFS info (device vdb): found 1858 extents, stage: move data extents
[36321.912178] BTRFS info (device vdb): found 1858 extents, stage: update data pointers
[36322.609638] BTRFS info (device vdb): relocating block group 185891553280 flags data
[36347.807753] BTRFS info (device vdb): found 2069 extents, stage: move data extents
[36351.160580] BTRFS info (device vdb): found 2069 extents, stage: update data pointers
[36353.363915] BTRFS info (device vdb): relocating block group 184817811456 flags data
[36378.380972] BTRFS info (device vdb): found 2098 extents, stage: move data extents
[36382.817729] BTRFS info (device vdb): found 2098 extents, stage: update data pointers
[36385.446480] BTRFS info (device vdb): relocating block group 180522844160 flags data
[36410.610822] BTRFS info (device vdb): found 2060 extents, stage: move data extents
[36412.565085] BTRFS info (device vdb): found 2060 extents, stage: update data pointers
[36413.814529] BTRFS info (device vdb): relocating block group 177301618688 flags data
[36436.176791] BTRFS info (device vdb): found 1858 extents, stage: move data extents
[36437.757217] BTRFS info (device vdb): found 1858 extents, stage: update data pointers
[36438.753327] BTRFS info (device vdb): relocating block group 165490458624 flags data
[36463.370986] BTRFS info (device vdb): found 2063 extents, stage: move data extents
[36464.517085] BTRFS info (device vdb): found 2063 extents, stage: update data pointers
[36465.200162] BTRFS info (device vdb): relocating block group 160591511552 flags data
[36477.527108] BTRFS info (device vdb): found 960 extents, stage: move data extents
[36478.206287] BTRFS info (device vdb): found 960 extents, stage: update data pointers
[36478.602696] BTRFS info (device vdb): relocating block group 156866969600 flags data
[36503.376793] BTRFS info (device vdb): found 2070 extents, stage: move data extents
[36506.264738] BTRFS info (device vdb): found 2070 extents, stage: update data pointers
[36508.063323] BTRFS info (device vdb): relocating block group 155021484032 flags data
[36510.236907] BTRFS info (device vdb): found 161 extents, stage: move data extents
[36510.742227] BTRFS info (device vdb): found 161 extents, stage: update data pointers
[36511.028589] BTRFS info (device vdb): relocating block group 154887307264 flags data
[36512.352936] BTRFS info (device vdb): found 108 extents, stage: move data extents
[36512.739143] BTRFS info (device vdb): found 108 extents, stage: update data pointers
[36512.961852] BTRFS info (device vdb): relocating block group 152605556736 flags data
[36537.866181] BTRFS info (device vdb): found 2048 extents, stage: move data extents
[36538.963183] BTRFS info (device vdb): found 2048 extents, stage: update data pointers
[36539.633213] BTRFS info (device vdb): relocating block group 150458073088 flags data
[36564.556704] BTRFS info (device vdb): found 2059 extents, stage: move data extents
[36567.287212] BTRFS info (device vdb): found 2059 extents, stage: update data pointers
[36568.957456] BTRFS info (device vdb): relocating block group 146163105792 flags data
[36604.828355] BTRFS info (device vdb): found 18694 extents, stage: move data extents
[36611.575979] BTRFS info (device vdb): found 18694 extents, stage: update data pointers
[36615.327034] BTRFS info (device vdb): relocating block group 141868138496 flags data
[36641.189481] BTRFS info (device vdb): found 2104 extents, stage: move data extents
[36645.894971] BTRFS info (device vdb): found 2104 extents, stage: update data pointers
[36648.640259] BTRFS info (device vdb): relocating block group 137573171200 flags data
[36673.472168] BTRFS info (device vdb): found 2111 extents, stage: move data extents
[36676.952609] BTRFS info (device vdb): found 2111 extents, stage: update data pointers
[36679.052668] BTRFS info (device vdb): relocating block group 135425687552 flags data
[36713.958695] BTRFS info (device vdb): found 17414 extents, stage: move data extents
[36721.398882] BTRFS info (device vdb): found 17414 extents, stage: update data pointers
[36725.758402] BTRFS info (device vdb): relocating block group 131130720256 flags data
[36751.338422] BTRFS info (device vdb): found 2054 extents, stage: move data extents
[36752.809531] BTRFS info (device vdb): found 2054 extents, stage: update data pointers
[36753.692247] BTRFS info (device vdb): relocating block group 130056978432 flags data
[36776.307233] BTRFS info (device vdb): found 1861 extents, stage: move data extents
[36777.499100] BTRFS info (device vdb): found 1861 extents, stage: update data pointers
[36778.248124] BTRFS info (device vdb): relocating block group 128983236608 flags data
[36803.613799] BTRFS info (device vdb): found 2052 extents, stage: move data extents
[36804.771597] BTRFS info (device vdb): found 2052 extents, stage: update data pointers
[36805.459883] BTRFS info (device vdb): relocating block group 125762011136 flags data
[36827.574840] BTRFS info (device vdb): found 1860 extents, stage: move data extents
[36828.922460] BTRFS info (device vdb): found 1860 extents, stage: update data pointers
[36829.750190] BTRFS info (device vdb): relocating block group 122540785664 flags data
[36854.651683] BTRFS info (device vdb): found 2051 extents, stage: move data extents
[36856.514014] BTRFS info (device vdb): found 2051 extents, stage: update data pointers
[36857.717481] BTRFS info (device vdb): relocating block group 121467043840 flags data
[36882.575151] BTRFS info (device vdb): found 2058 extents, stage: move data extents
[36884.780302] BTRFS info (device vdb): found 2058 extents, stage: update data pointers
[36886.257067] BTRFS info (device vdb): relocating block group 116098334720 flags data
[36911.221789] BTRFS info (device vdb): found 2051 extents, stage: move data extents
[36912.533808] BTRFS info (device vdb): found 2051 extents, stage: update data pointers
[36913.352158] BTRFS info (device vdb): relocating block group 113950851072 flags data
[36937.958877] BTRFS info (device vdb): found 2053 extents, stage: move data extents
[36939.277577] BTRFS info (device vdb): found 2053 extents, stage: update data pointers
[36940.092751] BTRFS info (device vdb): relocating block group 108582141952 flags data
[36962.240105] BTRFS info (device vdb): found 1862 extents, stage: move data extents
[36964.262766] BTRFS info (device vdb): found 1862 extents, stage: update data pointers
[36965.550503] BTRFS info (device vdb): relocating block group 104287174656 flags data
[36988.241545] BTRFS info (device vdb): found 2059 extents, stage: move data extents
[36992.973656] BTRFS info (device vdb): found 2059 extents, stage: update data pointers
[36996.208127] BTRFS info (device vdb): relocating block group 99992207360 flags data
[37050.187015] BTRFS info (device vdb): found 53531 extents, stage: move data extents
[37080.472252] BTRFS info (device vdb): found 53531 extents, stage: update data pointers
[37097.942451] BTRFS info (device vdb): relocating block group 98918465536 flags data
[37125.097837] BTRFS info (device vdb): found 2343 extents, stage: move data extents
[37130.970161] BTRFS info (device vdb): found 2343 extents, stage: update data pointers
[37134.535681] BTRFS info (device vdb): relocating block group 97844723712 flags data
[37160.400575] BTRFS info (device vdb): found 3597 extents, stage: move data extents
[37168.011052] BTRFS info (device vdb): found 3597 extents, stage: update data pointers
[37172.485603] BTRFS info (device vdb): relocating block group 95697240064 flags data
[37198.156991] BTRFS info (device vdb): found 3313 extents, stage: move data extents
[37205.744274] BTRFS info (device vdb): found 3313 extents, stage: update data pointers
[37210.461974] BTRFS info (device vdb): relocating block group 92476014592 flags data
[37235.461958] BTRFS info (device vdb): found 2244 extents, stage: move data extents
[37240.883699] BTRFS info (device vdb): found 2244 extents, stage: update data pointers
[37244.326466] BTRFS info (device vdb): relocating block group 84959821824 flags data
[37266.730801] BTRFS info (device vdb): found 2037 extents, stage: move data extents
[37270.843950] BTRFS info (device vdb): found 2037 extents, stage: update data pointers
[37273.520000] BTRFS info (device vdb): relocating block group 83886080000 flags data
[37298.765986] BTRFS info (device vdb): found 2236 extents, stage: move data extents
[37303.303773] BTRFS info (device vdb): found 2236 extents, stage: update data pointers
[37306.329871] BTRFS info (device vdb): relocating block group 81738596352 flags data
[37331.649574] BTRFS info (device vdb): found 2181 extents, stage: move data extents
[37336.749506] BTRFS info (device vdb): found 2181 extents, stage: update data pointers
[37340.165289] BTRFS info (device vdb): relocating block group 79591112704 flags data
[37365.216322] BTRFS info (device vdb): found 2159 extents, stage: move data extents
[37370.173796] BTRFS info (device vdb): found 2159 extents, stage: update data pointers
[37373.301838] BTRFS info (device vdb): relocating block group 78517370880 flags data
[37398.451617] BTRFS info (device vdb): found 2137 extents, stage: move data extents
[37403.762698] BTRFS info (device vdb): found 2137 extents, stage: update data pointers
[37407.341775] BTRFS info (device vdb): relocating block group 76369887232 flags data
[37432.381817] BTRFS info (device vdb): found 2173 extents, stage: move data extents
[37438.091120] BTRFS info (device vdb): found 2173 extents, stage: update data pointers
[37441.954995] BTRFS info (device vdb): relocating block group 75296145408 flags data
[37467.004401] BTRFS info (device vdb): found 2146 extents, stage: move data extents
[37471.784405] BTRFS info (device vdb): found 2146 extents, stage: update data pointers
[37475.014844] BTRFS info (device vdb): relocating block group 74222403584 flags data
[37497.589906] BTRFS info (device vdb): found 1873 extents, stage: move data extents
[37500.368436] BTRFS info (device vdb): found 1873 extents, stage: update data pointers
[37502.189985] BTRFS info (device vdb): relocating block group 68853694464 flags data
[37527.479618] BTRFS info (device vdb): found 2254 extents, stage: move data extents
[37535.332340] BTRFS info (device vdb): found 2254 extents, stage: update data pointers
[37540.753219] BTRFS info (device vdb): relocating block group 44157632512 flags data
[37570.006673] BTRFS info (device vdb): found 12671 extents, stage: move data extents
[37576.794319] BTRFS info (device vdb): found 12671 extents, stage: update data pointers
[37580.581337] BTRFS info (device vdb): relocating block group 42010148864 flags data
[37611.285340] BTRFS info (device vdb): found 15788 extents, stage: move data extents
[37617.890115] BTRFS info (device vdb): found 15788 extents, stage: update data pointers
[37621.746203] BTRFS info (device vdb): relocating block group 39862665216 flags data
[37650.924150] BTRFS info (device vdb): found 10607 extents, stage: move data extents
[37656.329344] BTRFS info (device vdb): found 10607 extents, stage: update data pointers
[37659.343151] BTRFS info (device vdb): relocating block group 37715181568 flags data
[37687.518789] BTRFS info (device vdb): found 11216 extents, stage: move data extents
[37692.580530] BTRFS info (device vdb): found 11216 extents, stage: update data pointers
[37695.436425] BTRFS info (device vdb): relocating block group 35567697920 flags data
[37728.117318] BTRFS info (device vdb): found 18441 extents, stage: move data extents
[37738.082719] BTRFS info (device vdb): found 18441 extents, stage: update data pointers
[37743.234889] BTRFS info (device vdb): relocating block group 33420214272 flags data
[37770.592298] BTRFS info (device vdb): found 10412 extents, stage: move data extents
[37776.885753] BTRFS info (device vdb): found 10412 extents, stage: update data pointers
[37780.139690] BTRFS info (device vdb): relocating block group 32346472448 flags data
[37803.616853] BTRFS info (device vdb): found 2226 extents, stage: move data extents
[37809.537219] BTRFS info (device vdb): found 2226 extents, stage: update data pointers
[37813.161734] BTRFS info (device vdb): relocating block group 31272730624 flags data
[37842.653522] BTRFS info (device vdb): found 12907 extents, stage: move data extents
[37851.628964] BTRFS info (device vdb): found 12907 extents, stage: update data pointers
[37856.705528] BTRFS info (device vdb): relocating block group 29125246976 flags data
[37886.321839] BTRFS info (device vdb): found 11114 extents, stage: move data extents
[37893.151606] BTRFS info (device vdb): found 11114 extents, stage: update data pointers
[37897.007427] BTRFS info (device vdb): relocating block group 26977763328 flags data
[37926.537268] BTRFS info (device vdb): found 12271 extents, stage: move data extents
[37939.292348] BTRFS info (device vdb): found 12271 extents, stage: update data pointers
[37946.443826] BTRFS info (device vdb): relocating block group 24830279680 flags data
[37978.409406] BTRFS info (device vdb): found 15284 extents, stage: move data extents
[37990.852657] BTRFS info (device vdb): found 15284 extents, stage: update data pointers
[37998.331912] BTRFS info (device vdb): relocating block group 22682796032 flags data
[38028.250236] BTRFS info (device vdb): found 12700 extents, stage: move data extents
[38040.556042] BTRFS info (device vdb): found 12700 extents, stage: update data pointers
[38047.946513] BTRFS info (device vdb): relocating block group 20535312384 flags data
[38171.970790] BTRFS info (device vdb): found 191131 extents, stage: move data extents
[38227.630011] BTRFS info (device vdb): found 191131 extents, stage: update data pointers
[38271.993508] BTRFS info (device vdb): relocating block group 18387828736 flags data
[38307.562605] BTRFS info (device vdb): found 21817 extents, stage: move data extents
[38315.432041] BTRFS info (device vdb): found 21817 extents, stage: update data pointers
[38320.013045] BTRFS info (device vdb): relocating block group 11945377792 flags data
[38360.618709] BTRFS info (device vdb): found 29765 extents, stage: move data extents
[38371.245563] BTRFS info (device vdb): found 29765 extents, stage: update data pointers
[38377.385402] BTRFS info (device vdb): relocating block group 10871635968 flags data
[38404.232397] BTRFS info (device vdb): found 2220 extents, stage: move data extents
[38410.154466] BTRFS info (device vdb): found 2220 extents, stage: update data pointers
[38413.934165] BTRFS info (device vdb): relocating block group 9797894144 flags data
[38504.366599] BTRFS info (device vdb): found 116219 extents, stage: move data extents
[38540.146592] BTRFS info (device vdb): found 116219 extents, stage: update data pointers
[38568.724043] BTRFS info (device vdb): relocating block group 7650410496 flags data
[38603.229240] BTRFS info (device vdb): found 23009 extents, stage: move data extents
[38611.630745] BTRFS info (device vdb): found 23009 extents, stage: update data pointers
[38616.565140] BTRFS info (device vdb): relocating block group 6576668672 flags data
[38643.121725] BTRFS info (device vdb): found 2206 extents, stage: move data extents
[38648.605782] BTRFS info (device vdb): found 2206 extents, stage: update data pointers
[38652.188322] BTRFS info (device vdb): relocating block group 5502926848 flags data
[38688.782032] BTRFS info (device vdb): found 21608 extents, stage: move data extents
[38699.858957] BTRFS info (device vdb): found 21608 extents, stage: update data pointers
[38706.152187] BTRFS info (device vdb): relocating block group 3355443200 flags data
[38729.626264] BTRFS info (device vdb): found 1861 extents, stage: move data extents
[38731.451004] BTRFS info (device vdb): found 1861 extents, stage: update data pointers
[38732.614234] BTRFS info (device vdb): relocating block group 2214658048 flags data
[38732.776580] BTRFS info (device vdb): found 3 extents, stage: move data extents
[38733.213462] BTRFS info (device vdb): found 3 extents, stage: update data pointers
[38733.493361] BTRFS info (device vdb): relocating block group 1048576 flags data
[38735.132920] BTRFS info (device vdb): found 126 extents, stage: move data extents
[38735.546237] BTRFS info (device vdb): found 126 extents, stage: update data pointers
[38735.758216] BTRFS info (device vdb): balance: ended with status: 0
[39230.769686] BTRFS info (device vdb): scrub: started on devid 1
[42140.872240] BTRFS info (device vdb): scrub: finished on devid 1 with status: 0
[56524.055418] workqueue: qxl_gc_work [qxl] hogged CPU for >10000us 4 times, consider switching to WQ_UNBOUND
[69211.917728] workqueue: delayed_fput hogged CPU for >10000us 4 times, consider switching to WQ_UNBOUND
[70510.421470] BTRFS info (device vdb): last unmount of filesystem 1e4fb969-7384-48fb-9377-6fb8817279ee

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: Scrub reports uncorrectable errors with correctable errors unrepaired, but all files are fine
  2024-01-12  7:38           ` Rongrong
@ 2024-01-12  9:53             ` Qu Wenruo
  2024-01-13 19:22               ` Rongrong
  0 siblings, 1 reply; 14+ messages in thread
From: Qu Wenruo @ 2024-01-12  9:53 UTC (permalink / raw)
  To: Rongrong, linux-btrfs



On 2024/1/12 18:08, Rongrong wrote:
> On Thu, 2024-01-11 at 09:22 +1030, Qu Wenruo wrote:
>>
>> On 2024/1/11 00:21, Zhang Rongrong wrote:
>>> On Wed, 2024-01-10 at 20:10 +1030, Qu Wenruo wrote:
>>>>
>>>> On 2024/1/10 19:42, Rongrong wrote:
>>>>> On Wed, 2024-01-10 at 07:49 +1030, Qu Wenruo wrote:
>>>>>>
>>>>>>
>>>>>> On 2024/1/10 04:36, Rongrong wrote:
>>>>>>> I guess the root cause of the issue is that one of the DUP metadata
>>>>>>> copies was somehow corrupted. Am I right?
>>>>>>
>>>>>> I don't think so, I think there may be some false alerts, either from
>>>>>> kernel scrub interface, or btrfs-progs.
>>>>>
>>>>> OK then. But I just wonder, if this is the case:
>>>>> Why `btrfs inspect-internal logical-resolve [LoC]` returned a file
>>>>> instead of ENOENT?
>>>>
>>>> Then we're having very conflicting results.
>>>>
>>>> "btrfs check --check-data-csum" is really the equivalent of scrub (just
>>>> offline), which will ensure EVERY copy is verified.
>>>>
>>>> If "btrfs check --check-data-csum" shows no error, I can only came up
>>>> with one possibility.
>>>>
>>>> - There is something missing csum and btrfs check doesn't report
>>>>      the problem in the first place
>>>>
>>>> This doesn't looks that correct to me though, as we have test cases to
>>>> ensure btrfs check can detect extents without csum.
>>>>
>>>> Can you provide the full dmesg/logical-resolve/btrfs-check result
>>>> without hiding the bytenrs?
>>>> That would help us to really clue all the problems.
>>>>
>>>> Especially for dmesg, the full one (from boot to crash/report) is
>>>> appreciated.
>>>
>>> dmesg:
>>> Please check the attachment. Some log were rate limited. I may disable
>>> the rate limit and retry if you need.
>>>
>>> logical-resolve:
>>> It either reported ENOENT or /path/to/file. Did you mean you want the
>>> address in command? I guess the full dmesg should help in that case.
>>
>> Both would help.
>>
>> If "logical-resolve" leads to -ENOENT, and extra dmesg output caused by
>> it, please attach the extra dmesg and the logical bytenr.
>
> #!/bin/sh
> for addr in $(journalctl -t kernel -p 3 -o cat -g 'find logical' | cut -d' ' -f9 | sort -nu); do
>          btrfs inspect-internal logical-resolve "$addr" /mnt/tmp
> done
>
> All bytenr leaded to -ENOENT, but no extra dmesg.
>
>> If "logical-resolve" leads to some file, and the filename is not
>> sensitive, please provide the filename and the logical bytenr.
>
> #!/bin/bash
> files=""
> for addr in $(journalctl -t kernel -p 3 -o cat -g 'fixed up' | cut -d' ' -f10 | sort -nu); do
>          file="$(btrfs inspect-internal logical-resolve "$addr" /mnt/tmp)"
>          files="$file"$'\n'"$files"
>          echo "$addr: $file"
> done
> IFS=$'\n'
> ls -lhins --time-style=long-iso $(sort -u <<< "$files")
>
> 2214723584: /mnt/tmp/backup.img
> 463895592960: [SENSITIVE_1]
> 839699742720: [SENSITIVE_2]
> 1016250564608: /mnt/tmp/backup.img
> 1020487204864: /mnt/tmp/backup-1.img
> 1030859390976: /mnt/tmp/backup.img
> 1033007464448: /mnt/tmp/backup.img
> 1035155124224: [SENSITIVE_3].jpg
> 1048041357312: /mnt/tmp/backup.img
> 1084548710400: /mnt/tmp/backup.img
> 1091216670720: /mnt/tmp/backup.img
> 1095442169856: /mnt/tmp/backup.img
> 1104076341248: [SENSITIVE_4].mp4
> 1106023546880: /mnt/tmp/backup.img
> 1116741763072: [SENSITIVE_5].flac
> 1119192154112: /mnt/tmp/backup-1.img
> 1232789045248: [SENSITIVE_6].bak
> 1309241769984: [SENSITIVE_7].jpg
> 1348653416448: [SENSITIVE_8].m4a
> 1375150866432: [SENSITIVE_9].JPG
> 1380060102656: [SENSITIVE_10].jpg
> 1589173420032: [SENSITIVE_11]
> 1655601762304: [SENSITIVE_12].jpg
> 1661099704320: [SENSITIVE_13].jpg
> 1752384798720: [SENSITIVE_14].jpg
> 1756680880128: [SENSITIVE_15].jpg
>       276  58G -rw-r--r-- 1 1000 1000  58G 2022-01-09 10:53  /mnt/tmp/backup-1.img
>       266  58G -rw-r--r-- 1    0    0  58G 2021-08-03 15:00  /mnt/tmp/backup.img
> 96078331 448K -rw-rw-rw- 1 1000 1000 448K 2038-01-19 11:14  [SENSITIVE_11]
> 63324217 872K -rw-r--r-- 1 1000 1000 872K 2022-01-17 13:46 '[SENSITIVE_4].mp4'
> 59771572 4.7M -rw-rw-rw- 1 1000 1000 4.7M 2020-02-26 16:20  [SENSITIVE_10].jpg
>       267 2.4G -rw-r--r-- 1 1000 1000 2.4G 2022-01-24 05:22 '[SENSITIVE_2]'
> 99353010 244K -rw-rw-rw- 1 1000 1000 241K 2019-10-11 23:00 '[SENSITIVE_12].jpg'
> 99485427 3.7M -rw-rw-rw- 1 1000 1000 3.7M 2018-05-04 06:21 '[SENSITIVE_13].jpg'
> 59506999  28M -rw-rw-rw- 1 1000 1000  28M 2021-08-09 15:42 '[SENSITIVE_1]'
> 59507881  11G -rwxr-xr-x 1 1000 1000  11G 2021-11-06 07:05 '[SENSITIVE_6].bak'
> 59638058  39M -rwxr-xr-x 1 1000 1000  39M 2021-11-06 07:45 '[SENSITIVE_5].flac'
> 60958833 4.7M -rwxr-xr-x 1 1000 1000 4.7M 2023-07-04 05:53  [SENSITIVE_3].jpg
> 60952438 1.3M -rwxr-xr-x 1 1000 1000 1.3M 2023-07-04 05:56  [SENSITIVE_15].jpg
> 60954090 6.7M -rwxr-xr-x 1 1000 1000 6.7M 2023-07-04 05:59  [SENSITIVE_14].jpg
> 60967686 260K -rwxr-xr-x 1 1000 1000 259K 2023-07-04 06:02  [SENSITIVE_8].m4a
> 41949177  12M -rw-r--r-- 1 1000 1000  12M 2019-08-31 16:32  [SENSITIVE_9].JPG
> 41966502 1.8M -rw-r--r-- 1 1000 1000 1.8M 2019-10-15 16:59  [SENSITIVE_7].jpg
>
> No extra dmesg too.
> All these files have no reflink copies.
> The file with mtime 2038-01-19 should be intentional considering its
> usage. Its last modification occurred before 2023 I guess.

OK, this means at least those failed logical bytenr is not really failed
to be mapped.


> Hmm, let me recall...
> Seeing the mtime of files above, I just remembered that:
> The fs was converted from ext4 using btrfs-convert.

This explains why the chunk bytenr are not aligned to 64K.

If you dump the chunk tree (`btrfs ins dump-tree -t chunk`), you can see
all the chunks and their bytenr.

I believe there are quite some chunks not aligned to 64K boundary.
Mind to provide the chunk tree dump of the fs (before the full balance).

> Roughly at the end
> of 2023-07. I always use the latest stable kernel, and the btrfs-progs
> I used then should be v6.3.2 (from Debian sid).
> Soon after the conversion, I deleted the ext4_saved subvolume and then
> did balance (-m/-d/--full-balance? I am not sure) and defrag.

I think only metadata is fully balanced, considering most of the failed
logical bytenrs are all for data chunks.


> I had used the fs a lot until scrub said there are errors. I might or
> might not have scrubbed it before. I can't recall it clearly. But I am
> sure that this was the first time I saw errors in the fs.
>
> The mtime of files probably hints that there may be bugs in both btrfs-
> convert and scrub.

That can be another bug. If you can find some other files with 2038,
please open another bug, either github issue (btrfs-progs, as I believe
it's a bug in the convert process) or the mailing list is fine.

And I believe either way, I'm going to dig into the beyond-2038 problem
anyway.
Although it would be better if you have the original ext4 fs and able to
reproduce the problem through btrfs-convert.

>
>
>> Since you have a disk dump of it already, mind to full balance the fs,
>> then retry to see if there is any difference?
>
> Full balance eliminated all scrub errors.
>
> Usage before:
>
> Overall:
>      Device size:                   1.82TiB
>      Device allocated:              1.07TiB
>      Device unallocated:          766.84GiB
>      Device missing:                  0.00B
>      Device slack:                  3.50KiB
>      Used:                          1.03TiB
>      Free (estimated):            805.79GiB      (min: 422.37GiB)
>      Free (statfs, df):           766.83GiB
>      Data ratio:                       1.00
>      Metadata ratio:                   2.00
>      Global reserve:              512.00MiB      (used: 0.00B)
>      Multiple profiles:                  no
>
>              Data    Metadata System
> Id Path     single  DUP      DUP       Unallocated Total   Slack
> -- -------- ------- -------- --------- ----------- ------- -------
>   1 /dev/vdc 1.06TiB  6.00GiB 128.00MiB   766.84GiB 1.82TiB 3.50KiB
> -- -------- ------- -------- --------- ----------- ------- -------
>     Total    1.06TiB  3.00GiB  64.00MiB   766.84GiB 1.82TiB 3.50KiB
>     Used     1.03TiB  2.39GiB 208.00KiB
>
> Usage after:
>
> Overall:
>      Device size:                   1.82TiB
>      Device allocated:              1.04TiB
>      Device unallocated:          793.95GiB
>      Device missing:                  0.00B
>      Device slack:                  3.92MiB
>      Used:                          1.03TiB
>      Free (estimated):            795.85GiB      (min: 398.87GiB)
>      Free (statfs, df):           795.85GiB
>      Data ratio:                       1.00
>      Metadata ratio:                   2.00
>      Global reserve:              512.00MiB      (used: 0.00B)
>      Multiple profiles:                  no
>
>              Data    Metadata System
> Id Path     single  DUP      DUP       Unallocated Total   Slack
> -- -------- ------- -------- --------- ----------- ------- -------
>   1 /dev/vdb 1.03TiB 16.00GiB  64.00MiB   793.95GiB 1.82TiB 3.92MiB
> -- -------- ------- -------- --------- ----------- ------- -------
>     Total    1.03TiB  8.00GiB  32.00MiB   793.95GiB 1.82TiB 3.92MiB
>     Used     1.03TiB  2.61GiB 144.00KiB
>
> Metadata got even more puffiness, weird.
>
> See also the attached dmesg.
> Explanation of the kernel version (6.7.0-x64v3-dbg-dirty):
> KASAN enabled
> My previous scrub patch applied, which should have no side effect for
> what we are discussing about mainly in this thread.
> (And yes, while scrubbing the fs before balancing without the patch,
> KASAN discovered UAF — I am not sure if it is a vulnerability that
> shouldn't report in public. I will make another bug report this weekend
> if it is OK to do that)

If you can provide any dying dmesg (thus better using the VM) of the
crash (no matter if it's KASAN enabled or not), as long as it has a
backtrace, it would help a lot.

>
> Should I test balancing only data/metadata to find more clues? Maybe
> metadata? Cuz balancing data is painfully slow :( But if there is
> indeed such a need, I'll do it!

Since after a full balance and the problem is totally gone (aka,
matching the "btrfs check" result), you no longer need to do any balance
as experiments. (Just do the balance on the real disk if you want to
avoid future problems).

Only the crash backtrace would be needed.

Meanwhile it's my turn to dig into the reason why unaligned data chunks
are causing problem.

Thanks for all the detailed info and experiments, this would really help
us to improve btrfs.

Thanks,
Qu

>
>> Thanks,
>> Qu
>
> Thanks,
> Rongrong
>

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: Scrub reports uncorrectable errors with correctable errors unrepaired, but all files are fine
  2024-01-12  9:53             ` Qu Wenruo
@ 2024-01-13 19:22               ` Rongrong
  2024-01-13 21:08                 ` Qu Wenruo
  0 siblings, 1 reply; 14+ messages in thread
From: Rongrong @ 2024-01-13 19:22 UTC (permalink / raw)
  To: Qu Wenruo, linux-btrfs

[-- Attachment #1: Type: text/plain, Size: 4233 bytes --]

On Fri, 2024-01-12 at 20:23 +1030, Qu Wenruo wrote:
> 
> On 2024/1/12 18:08, Rongrong wrote:
> > Hmm, let me recall...
> > Seeing the mtime of files above, I just remembered that:
> > The fs was converted from ext4 using btrfs-convert.
> 
> This explains why the chunk bytenr are not aligned to 64K.
> 
> If you dump the chunk tree (`btrfs ins dump-tree -t chunk`), you can see
> all the chunks and their bytenr.
> 
> I believe there are quite some chunks not aligned to 64K boundary.
> Mind to provide the chunk tree dump of the fs (before the full balance).

Sure, in attachment.

[...]

> > 
> > Full balance eliminated all scrub errors.
> > 
> > Usage before:
> > 
> > Overall:
> >      Device size:                   1.82TiB
> >      Device allocated:              1.07TiB
> >      Device unallocated:          766.84GiB
> >      Device missing:                  0.00B
> >      Device slack:                  3.50KiB
> >      Used:                          1.03TiB
> >      Free (estimated):            805.79GiB      (min: 422.37GiB)
> >      Free (statfs, df):           766.83GiB
> >      Data ratio:                       1.00
> >      Metadata ratio:                   2.00
> >      Global reserve:              512.00MiB      (used: 0.00B)
> >      Multiple profiles:                  no
> > 
> >              Data    Metadata System
> > Id Path     single  DUP      DUP       Unallocated Total   Slack
> > -- -------- ------- -------- --------- ----------- ------- -------
> >   1 /dev/vdc 1.06TiB  6.00GiB 128.00MiB   766.84GiB 1.82TiB 3.50KiB
> > -- -------- ------- -------- --------- ----------- ------- -------
> >     Total    1.06TiB  3.00GiB  64.00MiB   766.84GiB 1.82TiB 3.50KiB
> >     Used     1.03TiB  2.39GiB 208.00KiB
> > 
> > Usage after:
> > 
> > Overall:
> >      Device size:                   1.82TiB
> >      Device allocated:              1.04TiB
> >      Device unallocated:          793.95GiB
> >      Device missing:                  0.00B
> >      Device slack:                  3.92MiB
> >      Used:                          1.03TiB
> >      Free (estimated):            795.85GiB      (min: 398.87GiB)
> >      Free (statfs, df):           795.85GiB
> >      Data ratio:                       1.00
> >      Metadata ratio:                   2.00
> >      Global reserve:              512.00MiB      (used: 0.00B)
> >      Multiple profiles:                  no
> > 
> >              Data    Metadata System
> > Id Path     single  DUP      DUP       Unallocated Total   Slack
> > -- -------- ------- -------- --------- ----------- ------- -------
> >   1 /dev/vdb 1.03TiB 16.00GiB  64.00MiB   793.95GiB 1.82TiB 3.92MiB
> > -- -------- ------- -------- --------- ----------- ------- -------
> >     Total    1.03TiB  8.00GiB  32.00MiB   793.95GiB 1.82TiB 3.92MiB
> >     Used     1.03TiB  2.61GiB 144.00KiB
> > 
> > Metadata got even more puffiness, weird.

Still I am not sure why the full balance made the metadata block groups
grow from 3GiB to 8GiB. AFAIK the only disadvantage of full balance is
slowness.

> > See also the attached dmesg.
> > Explanation of the kernel version (6.7.0-x64v3-dbg-dirty):
> > KASAN enabled
> > My previous scrub patch applied, which should have no side effect for
> > what we are discussing about mainly in this thread.
> > (And yes, while scrubbing the fs before balancing without the patch,
> > KASAN discovered UAF — I am not sure if it is a vulnerability that
> > shouldn't report in public. I will make another bug report this weekend
> > if it is OK to do that)
> 
> If you can provide any dying dmesg (thus better using the VM) of the
> crash (no matter if it's KASAN enabled or not), as long as it has a
> backtrace, it would help a lot.

https://lore.kernel.org/linux-btrfs/0a3faca1c52f7fff0ac35566c6453f81f57a3d16.camel@rong.moe

[...]


> Meanwhile it's my turn to dig into the reason why unaligned data chunks
> are causing problem.
> 
> Thanks for all the detailed info and experiments, this would really help
> us to improve btrfs.

Thanks for your advice on experimenting and helpful answers too :)

Thanks,
Rongrong

> Thanks,
> Qu

[-- Attachment #2: chunk-tree-dump-before-balance.txt --]
[-- Type: text/plain, Size: 377263 bytes --]

btrfs-progs v6.6.3
chunk tree
node 2533779046400 level 1 items 12 free space 481 generation 34532 owner CHUNK_TREE
node 2533779046400 flags 0x1(WRITTEN) backref revision 1
fs uuid 1e4fb969-7384-48fb-9377-6fb8817279ee
chunk uuid 1fda341a-b7ba-4e6a-bab6-994325244ad2
	key (DEV_ITEMS DEV_ITEM 1) block 2533779062784 gen 34532
	key (FIRST_CHUNK_TREE CHUNK_ITEM 156866969600) block 2514418221056 gen 4414
	key (FIRST_CHUNK_TREE CHUNK_ITEM 323196354560) block 2514418237440 gen 4414
	key (FIRST_CHUNK_TREE CHUNK_ITEM 651895504896) block 2514418253824 gen 4414
	key (FIRST_CHUNK_TREE CHUNK_ITEM 812956778496) block 2514418286592 gen 4414
	key (FIRST_CHUNK_TREE CHUNK_ITEM 979386761216) block 2514418679808 gen 4597
	key (FIRST_CHUNK_TREE CHUNK_ITEM 1101927550976) block 2514418302976 gen 4414
	key (FIRST_CHUNK_TREE CHUNK_ITEM 1259633377280) block 2514418188288 gen 4414
	key (FIRST_CHUNK_TREE CHUNK_ITEM 2001530257408) block 2514418171904 gen 4414
	key (FIRST_CHUNK_TREE CHUNK_ITEM 2089149267968) block 2514418155520 gen 4414
	key (FIRST_CHUNK_TREE CHUNK_ITEM 2255579250688) block 2514418728960 gen 4598
	key (FIRST_CHUNK_TREE CHUNK_ITEM 2422009233408) block 2533779079168 gen 34532
leaf 2533779062784 items 56 free space 10385 generation 34532 owner CHUNK_TREE
leaf 2533779062784 flags 0x1(WRITTEN) backref revision 1
fs uuid 1e4fb969-7384-48fb-9377-6fb8817279ee
chunk uuid 1fda341a-b7ba-4e6a-bab6-994325244ad2
	item 0 key (DEV_ITEMS DEV_ITEM 1) itemoff 16185 itemsize 98
		devid 1 total_bytes 2000397881344 bytes_used 1177013080064
		io_align 4096 io_width 4096 sector_size 4096 type 0
		generation 0 start_offset 0 dev_group 0
		seek_speed 0 bandwidth 0
		uuid 005c787c-0e20-4dba-b3df-60730911315e
		fsid 1e4fb969-7384-48fb-9377-6fb8817279ee
	item 1 key (FIRST_CHUNK_TREE CHUNK_ITEM 1048576) itemoff 16105 itemsize 80
		length 66060288 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1048576
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 2 key (FIRST_CHUNK_TREE CHUNK_ITEM 2214658048) itemoff 16025 itemsize 80
		length 86016 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 2214658048
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 3 key (FIRST_CHUNK_TREE CHUNK_ITEM 3355443200) itemoff 15945 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 3355443200
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 4 key (FIRST_CHUNK_TREE CHUNK_ITEM 5502926848) itemoff 15865 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 5502926848
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 5 key (FIRST_CHUNK_TREE CHUNK_ITEM 6576668672) itemoff 15785 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 6576668672
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 6 key (FIRST_CHUNK_TREE CHUNK_ITEM 7650410496) itemoff 15705 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 7650410496
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 7 key (FIRST_CHUNK_TREE CHUNK_ITEM 9797894144) itemoff 15625 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 9797894144
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 8 key (FIRST_CHUNK_TREE CHUNK_ITEM 10871635968) itemoff 15545 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 10871635968
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 9 key (FIRST_CHUNK_TREE CHUNK_ITEM 11945377792) itemoff 15465 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 11945377792
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 10 key (FIRST_CHUNK_TREE CHUNK_ITEM 18387828736) itemoff 15385 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 18387828736
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 11 key (FIRST_CHUNK_TREE CHUNK_ITEM 20535312384) itemoff 15305 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 20535312384
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 12 key (FIRST_CHUNK_TREE CHUNK_ITEM 22682796032) itemoff 15225 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 22682796032
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 13 key (FIRST_CHUNK_TREE CHUNK_ITEM 24830279680) itemoff 15145 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 24830279680
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 14 key (FIRST_CHUNK_TREE CHUNK_ITEM 26977763328) itemoff 15065 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 26977763328
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 15 key (FIRST_CHUNK_TREE CHUNK_ITEM 29125246976) itemoff 14985 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 29125246976
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 16 key (FIRST_CHUNK_TREE CHUNK_ITEM 31272730624) itemoff 14905 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 31272730624
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 17 key (FIRST_CHUNK_TREE CHUNK_ITEM 32346472448) itemoff 14825 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 32346472448
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 18 key (FIRST_CHUNK_TREE CHUNK_ITEM 33420214272) itemoff 14745 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 33420214272
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 19 key (FIRST_CHUNK_TREE CHUNK_ITEM 35567697920) itemoff 14665 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 35567697920
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 20 key (FIRST_CHUNK_TREE CHUNK_ITEM 37715181568) itemoff 14585 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 37715181568
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 21 key (FIRST_CHUNK_TREE CHUNK_ITEM 39862665216) itemoff 14505 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 39862665216
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 22 key (FIRST_CHUNK_TREE CHUNK_ITEM 42010148864) itemoff 14425 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 42010148864
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 23 key (FIRST_CHUNK_TREE CHUNK_ITEM 44157632512) itemoff 14345 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 44157632512
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 24 key (FIRST_CHUNK_TREE CHUNK_ITEM 68853694464) itemoff 14265 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 68853694464
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 25 key (FIRST_CHUNK_TREE CHUNK_ITEM 74222403584) itemoff 14185 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 74222403584
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 26 key (FIRST_CHUNK_TREE CHUNK_ITEM 75296145408) itemoff 14105 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 75296145408
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 27 key (FIRST_CHUNK_TREE CHUNK_ITEM 76369887232) itemoff 14025 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 76369887232
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 28 key (FIRST_CHUNK_TREE CHUNK_ITEM 78517370880) itemoff 13945 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 78517370880
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 29 key (FIRST_CHUNK_TREE CHUNK_ITEM 79591112704) itemoff 13865 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 79591112704
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 30 key (FIRST_CHUNK_TREE CHUNK_ITEM 81738596352) itemoff 13785 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 81738596352
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 31 key (FIRST_CHUNK_TREE CHUNK_ITEM 83886080000) itemoff 13705 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 83886080000
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 32 key (FIRST_CHUNK_TREE CHUNK_ITEM 84959821824) itemoff 13625 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 84959821824
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 33 key (FIRST_CHUNK_TREE CHUNK_ITEM 92476014592) itemoff 13545 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 92476014592
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 34 key (FIRST_CHUNK_TREE CHUNK_ITEM 95697240064) itemoff 13465 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 95697240064
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 35 key (FIRST_CHUNK_TREE CHUNK_ITEM 97844723712) itemoff 13385 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 97844723712
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 36 key (FIRST_CHUNK_TREE CHUNK_ITEM 98918465536) itemoff 13305 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 98918465536
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 37 key (FIRST_CHUNK_TREE CHUNK_ITEM 99992207360) itemoff 13225 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 99992207360
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 38 key (FIRST_CHUNK_TREE CHUNK_ITEM 104287174656) itemoff 13145 itemsize 80
		length 979095552 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 104287174656
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 39 key (FIRST_CHUNK_TREE CHUNK_ITEM 108582141952) itemoff 13065 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 108582141952
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 40 key (FIRST_CHUNK_TREE CHUNK_ITEM 113950851072) itemoff 12985 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 113950851072
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 41 key (FIRST_CHUNK_TREE CHUNK_ITEM 116098334720) itemoff 12905 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 116098334720
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 42 key (FIRST_CHUNK_TREE CHUNK_ITEM 121467043840) itemoff 12825 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 121467043840
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 43 key (FIRST_CHUNK_TREE CHUNK_ITEM 122540785664) itemoff 12745 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 122540785664
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 44 key (FIRST_CHUNK_TREE CHUNK_ITEM 125762011136) itemoff 12665 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 125762011136
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 45 key (FIRST_CHUNK_TREE CHUNK_ITEM 128983236608) itemoff 12585 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 128983236608
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 46 key (FIRST_CHUNK_TREE CHUNK_ITEM 130056978432) itemoff 12505 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 130056978432
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 47 key (FIRST_CHUNK_TREE CHUNK_ITEM 131130720256) itemoff 12425 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 131130720256
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 48 key (FIRST_CHUNK_TREE CHUNK_ITEM 135425687552) itemoff 12345 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 135425687552
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 49 key (FIRST_CHUNK_TREE CHUNK_ITEM 137573171200) itemoff 12265 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 137573171200
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 50 key (FIRST_CHUNK_TREE CHUNK_ITEM 141868138496) itemoff 12185 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 141868138496
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 51 key (FIRST_CHUNK_TREE CHUNK_ITEM 146163105792) itemoff 12105 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 146163105792
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 52 key (FIRST_CHUNK_TREE CHUNK_ITEM 150458073088) itemoff 12025 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 150458073088
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 53 key (FIRST_CHUNK_TREE CHUNK_ITEM 152605556736) itemoff 11945 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 152605556736
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 54 key (FIRST_CHUNK_TREE CHUNK_ITEM 154887307264) itemoff 11865 itemsize 80
		length 56520704 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 154887307264
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 55 key (FIRST_CHUNK_TREE CHUNK_ITEM 155021484032) itemoff 11785 itemsize 80
		length 84066304 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 155021484032
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
leaf 2514418221056 items 102 free space 5573 generation 4414 owner CHUNK_TREE
leaf 2514418221056 flags 0x1(WRITTEN) backref revision 1
fs uuid 1e4fb969-7384-48fb-9377-6fb8817279ee
chunk uuid 1fda341a-b7ba-4e6a-bab6-994325244ad2
	item 0 key (FIRST_CHUNK_TREE CHUNK_ITEM 156866969600) itemoff 16203 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 156866969600
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 1 key (FIRST_CHUNK_TREE CHUNK_ITEM 160591511552) itemoff 16123 itemsize 80
		length 503447552 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 160591511552
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 2 key (FIRST_CHUNK_TREE CHUNK_ITEM 165490458624) itemoff 16043 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 165490458624
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 3 key (FIRST_CHUNK_TREE CHUNK_ITEM 177301618688) itemoff 15963 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 177301618688
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 4 key (FIRST_CHUNK_TREE CHUNK_ITEM 180522844160) itemoff 15883 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 180522844160
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 5 key (FIRST_CHUNK_TREE CHUNK_ITEM 184817811456) itemoff 15803 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 184817811456
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 6 key (FIRST_CHUNK_TREE CHUNK_ITEM 185891553280) itemoff 15723 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 185891553280
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 7 key (FIRST_CHUNK_TREE CHUNK_ITEM 188039036928) itemoff 15643 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 188039036928
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 8 key (FIRST_CHUNK_TREE CHUNK_ITEM 198776455168) itemoff 15563 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 198776455168
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 9 key (FIRST_CHUNK_TREE CHUNK_ITEM 199850196992) itemoff 15483 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 199850196992
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 10 key (FIRST_CHUNK_TREE CHUNK_ITEM 200923938816) itemoff 15403 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 200923938816
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 11 key (FIRST_CHUNK_TREE CHUNK_ITEM 203071422464) itemoff 15323 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 203071422464
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 12 key (FIRST_CHUNK_TREE CHUNK_ITEM 204145164288) itemoff 15243 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 204145164288
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 13 key (FIRST_CHUNK_TREE CHUNK_ITEM 205218906112) itemoff 15163 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 205218906112
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 14 key (FIRST_CHUNK_TREE CHUNK_ITEM 206292647936) itemoff 15083 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 206292647936
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 15 key (FIRST_CHUNK_TREE CHUNK_ITEM 207366389760) itemoff 15003 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 207366389760
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 16 key (FIRST_CHUNK_TREE CHUNK_ITEM 208440131584) itemoff 14923 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 208440131584
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 17 key (FIRST_CHUNK_TREE CHUNK_ITEM 209513873408) itemoff 14843 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 209513873408
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 18 key (FIRST_CHUNK_TREE CHUNK_ITEM 210587615232) itemoff 14763 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 210587615232
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 19 key (FIRST_CHUNK_TREE CHUNK_ITEM 212735098880) itemoff 14683 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 212735098880
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 20 key (FIRST_CHUNK_TREE CHUNK_ITEM 213808840704) itemoff 14603 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 213808840704
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 21 key (FIRST_CHUNK_TREE CHUNK_ITEM 214882582528) itemoff 14523 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 214882582528
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 22 key (FIRST_CHUNK_TREE CHUNK_ITEM 215956324352) itemoff 14443 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 215956324352
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 23 key (FIRST_CHUNK_TREE CHUNK_ITEM 217030066176) itemoff 14363 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 217030066176
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 24 key (FIRST_CHUNK_TREE CHUNK_ITEM 218103808000) itemoff 14283 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 218103808000
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 25 key (FIRST_CHUNK_TREE CHUNK_ITEM 219177549824) itemoff 14203 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 219177549824
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 26 key (FIRST_CHUNK_TREE CHUNK_ITEM 220251291648) itemoff 14123 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 220251291648
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 27 key (FIRST_CHUNK_TREE CHUNK_ITEM 221325033472) itemoff 14043 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 221325033472
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 28 key (FIRST_CHUNK_TREE CHUNK_ITEM 222398775296) itemoff 13963 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 222398775296
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 29 key (FIRST_CHUNK_TREE CHUNK_ITEM 223472517120) itemoff 13883 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 223472517120
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 30 key (FIRST_CHUNK_TREE CHUNK_ITEM 224546258944) itemoff 13803 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 224546258944
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 31 key (FIRST_CHUNK_TREE CHUNK_ITEM 225620000768) itemoff 13723 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 225620000768
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 32 key (FIRST_CHUNK_TREE CHUNK_ITEM 226693742592) itemoff 13643 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 226693742592
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 33 key (FIRST_CHUNK_TREE CHUNK_ITEM 228841226240) itemoff 13563 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 228841226240
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 34 key (FIRST_CHUNK_TREE CHUNK_ITEM 229914968064) itemoff 13483 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 229914968064
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 35 key (FIRST_CHUNK_TREE CHUNK_ITEM 230988709888) itemoff 13403 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 230988709888
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 36 key (FIRST_CHUNK_TREE CHUNK_ITEM 232062451712) itemoff 13323 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 232062451712
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 37 key (FIRST_CHUNK_TREE CHUNK_ITEM 234209935360) itemoff 13243 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 234209935360
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 38 key (FIRST_CHUNK_TREE CHUNK_ITEM 235283677184) itemoff 13163 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 235283677184
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 39 key (FIRST_CHUNK_TREE CHUNK_ITEM 237431160832) itemoff 13083 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 237431160832
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 40 key (FIRST_CHUNK_TREE CHUNK_ITEM 240652386304) itemoff 13003 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 240652386304
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 41 key (FIRST_CHUNK_TREE CHUNK_ITEM 241726128128) itemoff 12923 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 241726128128
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 42 key (FIRST_CHUNK_TREE CHUNK_ITEM 242799869952) itemoff 12843 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 242799869952
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 43 key (FIRST_CHUNK_TREE CHUNK_ITEM 243873611776) itemoff 12763 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 243873611776
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 44 key (FIRST_CHUNK_TREE CHUNK_ITEM 244947353600) itemoff 12683 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 244947353600
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 45 key (FIRST_CHUNK_TREE CHUNK_ITEM 246021095424) itemoff 12603 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 246021095424
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 46 key (FIRST_CHUNK_TREE CHUNK_ITEM 247094837248) itemoff 12523 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 247094837248
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 47 key (FIRST_CHUNK_TREE CHUNK_ITEM 248168579072) itemoff 12443 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 248168579072
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 48 key (FIRST_CHUNK_TREE CHUNK_ITEM 250316062720) itemoff 12363 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 250316062720
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 49 key (FIRST_CHUNK_TREE CHUNK_ITEM 251389804544) itemoff 12283 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 251389804544
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 50 key (FIRST_CHUNK_TREE CHUNK_ITEM 254611030016) itemoff 12203 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 254611030016
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 51 key (FIRST_CHUNK_TREE CHUNK_ITEM 255684771840) itemoff 12123 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 255684771840
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 52 key (FIRST_CHUNK_TREE CHUNK_ITEM 256758513664) itemoff 12043 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 256758513664
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 53 key (FIRST_CHUNK_TREE CHUNK_ITEM 257832255488) itemoff 11963 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 257832255488
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 54 key (FIRST_CHUNK_TREE CHUNK_ITEM 258905997312) itemoff 11883 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 258905997312
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 55 key (FIRST_CHUNK_TREE CHUNK_ITEM 259979739136) itemoff 11803 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 259979739136
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 56 key (FIRST_CHUNK_TREE CHUNK_ITEM 261053480960) itemoff 11723 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 261053480960
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 57 key (FIRST_CHUNK_TREE CHUNK_ITEM 262127222784) itemoff 11643 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 262127222784
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 58 key (FIRST_CHUNK_TREE CHUNK_ITEM 264274706432) itemoff 11563 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 264274706432
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 59 key (FIRST_CHUNK_TREE CHUNK_ITEM 265348448256) itemoff 11483 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 265348448256
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 60 key (FIRST_CHUNK_TREE CHUNK_ITEM 266422190080) itemoff 11403 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 266422190080
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 61 key (FIRST_CHUNK_TREE CHUNK_ITEM 267495931904) itemoff 11323 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 267495931904
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 62 key (FIRST_CHUNK_TREE CHUNK_ITEM 268569673728) itemoff 11243 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 268569673728
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 63 key (FIRST_CHUNK_TREE CHUNK_ITEM 269643415552) itemoff 11163 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 269643415552
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 64 key (FIRST_CHUNK_TREE CHUNK_ITEM 270717157376) itemoff 11083 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 270717157376
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 65 key (FIRST_CHUNK_TREE CHUNK_ITEM 271790899200) itemoff 11003 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 271790899200
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 66 key (FIRST_CHUNK_TREE CHUNK_ITEM 272864641024) itemoff 10923 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 272864641024
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 67 key (FIRST_CHUNK_TREE CHUNK_ITEM 273938382848) itemoff 10843 itemsize 80
		length 939524096 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 273938382848
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 68 key (FIRST_CHUNK_TREE CHUNK_ITEM 275951714304) itemoff 10763 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 275951714304
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 69 key (FIRST_CHUNK_TREE CHUNK_ITEM 277025456128) itemoff 10683 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 277025456128
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 70 key (FIRST_CHUNK_TREE CHUNK_ITEM 278099197952) itemoff 10603 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 278099197952
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 71 key (FIRST_CHUNK_TREE CHUNK_ITEM 280246681600) itemoff 10523 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 280246681600
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 72 key (FIRST_CHUNK_TREE CHUNK_ITEM 281320423424) itemoff 10443 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 281320423424
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 73 key (FIRST_CHUNK_TREE CHUNK_ITEM 282394165248) itemoff 10363 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 282394165248
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 74 key (FIRST_CHUNK_TREE CHUNK_ITEM 283467907072) itemoff 10283 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 283467907072
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 75 key (FIRST_CHUNK_TREE CHUNK_ITEM 284541648896) itemoff 10203 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 284541648896
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 76 key (FIRST_CHUNK_TREE CHUNK_ITEM 285615390720) itemoff 10123 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 285615390720
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 77 key (FIRST_CHUNK_TREE CHUNK_ITEM 287762874368) itemoff 10043 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 287762874368
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 78 key (FIRST_CHUNK_TREE CHUNK_ITEM 288836616192) itemoff 9963 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 288836616192
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 79 key (FIRST_CHUNK_TREE CHUNK_ITEM 289910358016) itemoff 9883 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 289910358016
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 80 key (FIRST_CHUNK_TREE CHUNK_ITEM 290984099840) itemoff 9803 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 290984099840
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 81 key (FIRST_CHUNK_TREE CHUNK_ITEM 292057841664) itemoff 9723 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 292057841664
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 82 key (FIRST_CHUNK_TREE CHUNK_ITEM 293131583488) itemoff 9643 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 293131583488
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 83 key (FIRST_CHUNK_TREE CHUNK_ITEM 294205325312) itemoff 9563 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 294205325312
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 84 key (FIRST_CHUNK_TREE CHUNK_ITEM 295279067136) itemoff 9483 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 295279067136
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 85 key (FIRST_CHUNK_TREE CHUNK_ITEM 297426550784) itemoff 9403 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 297426550784
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 86 key (FIRST_CHUNK_TREE CHUNK_ITEM 298500292608) itemoff 9323 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 298500292608
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 87 key (FIRST_CHUNK_TREE CHUNK_ITEM 299574034432) itemoff 9243 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 299574034432
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 88 key (FIRST_CHUNK_TREE CHUNK_ITEM 301721518080) itemoff 9163 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 301721518080
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 89 key (FIRST_CHUNK_TREE CHUNK_ITEM 303869001728) itemoff 9083 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 303869001728
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 90 key (FIRST_CHUNK_TREE CHUNK_ITEM 304942743552) itemoff 9003 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 304942743552
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 91 key (FIRST_CHUNK_TREE CHUNK_ITEM 306016485376) itemoff 8923 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 306016485376
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 92 key (FIRST_CHUNK_TREE CHUNK_ITEM 308163969024) itemoff 8843 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 308163969024
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 93 key (FIRST_CHUNK_TREE CHUNK_ITEM 312458936320) itemoff 8763 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 312458936320
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 94 key (FIRST_CHUNK_TREE CHUNK_ITEM 313532678144) itemoff 8683 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 313532678144
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 95 key (FIRST_CHUNK_TREE CHUNK_ITEM 314606419968) itemoff 8603 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 314606419968
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 96 key (FIRST_CHUNK_TREE CHUNK_ITEM 315680161792) itemoff 8523 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 315680161792
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 97 key (FIRST_CHUNK_TREE CHUNK_ITEM 316753903616) itemoff 8443 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 316753903616
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 98 key (FIRST_CHUNK_TREE CHUNK_ITEM 318901387264) itemoff 8363 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 318901387264
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 99 key (FIRST_CHUNK_TREE CHUNK_ITEM 319975129088) itemoff 8283 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 319975129088
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 100 key (FIRST_CHUNK_TREE CHUNK_ITEM 321048870912) itemoff 8203 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 321048870912
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 101 key (FIRST_CHUNK_TREE CHUNK_ITEM 322122612736) itemoff 8123 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 322122612736
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
leaf 2514418237440 items 118 free space 3893 generation 4414 owner CHUNK_TREE
leaf 2514418237440 flags 0x1(WRITTEN) backref revision 1
fs uuid 1e4fb969-7384-48fb-9377-6fb8817279ee
chunk uuid 1fda341a-b7ba-4e6a-bab6-994325244ad2
	item 0 key (FIRST_CHUNK_TREE CHUNK_ITEM 323196354560) itemoff 16203 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 323196354560
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 1 key (FIRST_CHUNK_TREE CHUNK_ITEM 324270096384) itemoff 16123 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 324270096384
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 2 key (FIRST_CHUNK_TREE CHUNK_ITEM 325343838208) itemoff 16043 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 325343838208
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 3 key (FIRST_CHUNK_TREE CHUNK_ITEM 326417580032) itemoff 15963 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 326417580032
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 4 key (FIRST_CHUNK_TREE CHUNK_ITEM 327491321856) itemoff 15883 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 327491321856
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 5 key (FIRST_CHUNK_TREE CHUNK_ITEM 328565063680) itemoff 15803 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 328565063680
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 6 key (FIRST_CHUNK_TREE CHUNK_ITEM 329638805504) itemoff 15723 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 329638805504
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 7 key (FIRST_CHUNK_TREE CHUNK_ITEM 330712547328) itemoff 15643 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 330712547328
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 8 key (FIRST_CHUNK_TREE CHUNK_ITEM 332860030976) itemoff 15563 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 332860030976
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 9 key (FIRST_CHUNK_TREE CHUNK_ITEM 333933772800) itemoff 15483 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 333933772800
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 10 key (FIRST_CHUNK_TREE CHUNK_ITEM 335007514624) itemoff 15403 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 335007514624
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 11 key (FIRST_CHUNK_TREE CHUNK_ITEM 336081256448) itemoff 15323 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 336081256448
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 12 key (FIRST_CHUNK_TREE CHUNK_ITEM 337154998272) itemoff 15243 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 337154998272
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 13 key (FIRST_CHUNK_TREE CHUNK_ITEM 338228740096) itemoff 15163 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 338228740096
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 14 key (FIRST_CHUNK_TREE CHUNK_ITEM 342523707392) itemoff 15083 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 342523707392
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 15 key (FIRST_CHUNK_TREE CHUNK_ITEM 343731601408) itemoff 15003 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 343731601408
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 16 key (FIRST_CHUNK_TREE CHUNK_ITEM 352321536000) itemoff 14923 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 352321536000
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 17 key (FIRST_CHUNK_TREE CHUNK_ITEM 353395277824) itemoff 14843 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 353395277824
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 18 key (FIRST_CHUNK_TREE CHUNK_ITEM 354469019648) itemoff 14763 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 354469019648
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 19 key (FIRST_CHUNK_TREE CHUNK_ITEM 356616503296) itemoff 14683 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 356616503296
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 20 key (FIRST_CHUNK_TREE CHUNK_ITEM 358763986944) itemoff 14603 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 358763986944
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 21 key (FIRST_CHUNK_TREE CHUNK_ITEM 359837728768) itemoff 14523 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 359837728768
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 22 key (FIRST_CHUNK_TREE CHUNK_ITEM 360911470592) itemoff 14443 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 360911470592
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 23 key (FIRST_CHUNK_TREE CHUNK_ITEM 368427663360) itemoff 14363 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 368427663360
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 24 key (FIRST_CHUNK_TREE CHUNK_ITEM 370575147008) itemoff 14283 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 370575147008
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 25 key (FIRST_CHUNK_TREE CHUNK_ITEM 372722630656) itemoff 14203 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 372722630656
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 26 key (FIRST_CHUNK_TREE CHUNK_ITEM 373796372480) itemoff 14123 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 373796372480
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 27 key (FIRST_CHUNK_TREE CHUNK_ITEM 374870114304) itemoff 14043 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 374870114304
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 28 key (FIRST_CHUNK_TREE CHUNK_ITEM 375943856128) itemoff 13963 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 375943856128
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 29 key (FIRST_CHUNK_TREE CHUNK_ITEM 377017597952) itemoff 13883 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 377017597952
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 30 key (FIRST_CHUNK_TREE CHUNK_ITEM 378091339776) itemoff 13803 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 378091339776
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 31 key (FIRST_CHUNK_TREE CHUNK_ITEM 379165081600) itemoff 13723 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 379165081600
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 32 key (FIRST_CHUNK_TREE CHUNK_ITEM 380238823424) itemoff 13643 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 380238823424
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 33 key (FIRST_CHUNK_TREE CHUNK_ITEM 381312565248) itemoff 13563 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 381312565248
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 34 key (FIRST_CHUNK_TREE CHUNK_ITEM 382386307072) itemoff 13483 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 382386307072
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 35 key (FIRST_CHUNK_TREE CHUNK_ITEM 383460048896) itemoff 13403 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 383460048896
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 36 key (FIRST_CHUNK_TREE CHUNK_ITEM 385607532544) itemoff 13323 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 385607532544
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 37 key (FIRST_CHUNK_TREE CHUNK_ITEM 386681274368) itemoff 13243 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 386681274368
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 38 key (FIRST_CHUNK_TREE CHUNK_ITEM 387755016192) itemoff 13163 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 387755016192
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 39 key (FIRST_CHUNK_TREE CHUNK_ITEM 390976241664) itemoff 13083 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 390976241664
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 40 key (FIRST_CHUNK_TREE CHUNK_ITEM 399566188544) itemoff 13003 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 399566188544
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 41 key (FIRST_CHUNK_TREE CHUNK_ITEM 403861143552) itemoff 12923 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 403861143552
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 42 key (FIRST_CHUNK_TREE CHUNK_ITEM 404934885376) itemoff 12843 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 404934885376
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 43 key (FIRST_CHUNK_TREE CHUNK_ITEM 406008627200) itemoff 12763 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 406008627200
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 44 key (FIRST_CHUNK_TREE CHUNK_ITEM 407082369024) itemoff 12683 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 407082369024
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 45 key (FIRST_CHUNK_TREE CHUNK_ITEM 408156110848) itemoff 12603 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 408156110848
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 46 key (FIRST_CHUNK_TREE CHUNK_ITEM 409229852672) itemoff 12523 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 409229852672
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 47 key (FIRST_CHUNK_TREE CHUNK_ITEM 410303594496) itemoff 12443 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 410303594496
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 48 key (FIRST_CHUNK_TREE CHUNK_ITEM 411377336320) itemoff 12363 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 411377336320
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 49 key (FIRST_CHUNK_TREE CHUNK_ITEM 423188496384) itemoff 12283 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 423188496384
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 50 key (FIRST_CHUNK_TREE CHUNK_ITEM 427483463680) itemoff 12203 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 427483463680
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 51 key (FIRST_CHUNK_TREE CHUNK_ITEM 429630947328) itemoff 12123 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 429630947328
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 52 key (FIRST_CHUNK_TREE CHUNK_ITEM 431778430976) itemoff 12043 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 431778430976
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 53 key (FIRST_CHUNK_TREE CHUNK_ITEM 432852172800) itemoff 11963 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 432852172800
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 54 key (FIRST_CHUNK_TREE CHUNK_ITEM 433925914624) itemoff 11883 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 433925914624
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 55 key (FIRST_CHUNK_TREE CHUNK_ITEM 434999656448) itemoff 11803 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 434999656448
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 56 key (FIRST_CHUNK_TREE CHUNK_ITEM 437147140096) itemoff 11723 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 437147140096
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 57 key (FIRST_CHUNK_TREE CHUNK_ITEM 438220881920) itemoff 11643 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 438220881920
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 58 key (FIRST_CHUNK_TREE CHUNK_ITEM 440368365568) itemoff 11563 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 440368365568
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 59 key (FIRST_CHUNK_TREE CHUNK_ITEM 441442107392) itemoff 11483 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 441442107392
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 60 key (FIRST_CHUNK_TREE CHUNK_ITEM 442515849216) itemoff 11403 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 442515849216
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 61 key (FIRST_CHUNK_TREE CHUNK_ITEM 445737074688) itemoff 11323 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 445737074688
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 62 key (FIRST_CHUNK_TREE CHUNK_ITEM 448152993792) itemoff 11243 itemsize 80
		length 704774144 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 448152993792
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 63 key (FIRST_CHUNK_TREE CHUNK_ITEM 450032041984) itemoff 11163 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 450032041984
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 64 key (FIRST_CHUNK_TREE CHUNK_ITEM 452179525632) itemoff 11083 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 452179525632
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 65 key (FIRST_CHUNK_TREE CHUNK_ITEM 460769460224) itemoff 11003 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 460769460224
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 66 key (FIRST_CHUNK_TREE CHUNK_ITEM 462916943872) itemoff 10923 itemsize 80
		length 978657280 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 462916943872
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 67 key (FIRST_CHUNK_TREE CHUNK_ITEM 481172684800) itemoff 10843 itemsize 80
		length 33554432 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 481172684800
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 68 key (FIRST_CHUNK_TREE CHUNK_ITEM 497276682240) itemoff 10763 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 497276682240
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 69 key (FIRST_CHUNK_TREE CHUNK_ITEM 499424165888) itemoff 10683 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 499424165888
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 70 key (FIRST_CHUNK_TREE CHUNK_ITEM 501437431808) itemoff 10603 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 501437431808
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 71 key (FIRST_CHUNK_TREE CHUNK_ITEM 502645391360) itemoff 10523 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 502645391360
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 72 key (FIRST_CHUNK_TREE CHUNK_ITEM 511235325952) itemoff 10443 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 511235325952
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 73 key (FIRST_CHUNK_TREE CHUNK_ITEM 514456551424) itemoff 10363 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 514456551424
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 74 key (FIRST_CHUNK_TREE CHUNK_ITEM 519825260544) itemoff 10283 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 519825260544
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 75 key (FIRST_CHUNK_TREE CHUNK_ITEM 528415195136) itemoff 10203 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 528415195136
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 76 key (FIRST_CHUNK_TREE CHUNK_ITEM 530562678784) itemoff 10123 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 530562678784
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 77 key (FIRST_CHUNK_TREE CHUNK_ITEM 533171535872) itemoff 10043 itemsize 80
		length 243269632 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 533171535872
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 78 key (FIRST_CHUNK_TREE CHUNK_ITEM 534857646080) itemoff 9963 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 534857646080
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 79 key (FIRST_CHUNK_TREE CHUNK_ITEM 535931387904) itemoff 9883 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 535931387904
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 80 key (FIRST_CHUNK_TREE CHUNK_ITEM 541300097024) itemoff 9803 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 541300097024
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 81 key (FIRST_CHUNK_TREE CHUNK_ITEM 542373838848) itemoff 9723 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 542373838848
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 82 key (FIRST_CHUNK_TREE CHUNK_ITEM 543447580672) itemoff 9643 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 543447580672
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 83 key (FIRST_CHUNK_TREE CHUNK_ITEM 548816289792) itemoff 9563 itemsize 80
		length 983859200 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 548816289792
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 84 key (FIRST_CHUNK_TREE CHUNK_ITEM 550963773440) itemoff 9483 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 550963773440
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 85 key (FIRST_CHUNK_TREE CHUNK_ITEM 553111257088) itemoff 9403 itemsize 80
		length 980975616 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 553111257088
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 86 key (FIRST_CHUNK_TREE CHUNK_ITEM 555258740736) itemoff 9323 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 555258740736
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 87 key (FIRST_CHUNK_TREE CHUNK_ITEM 556332482560) itemoff 9243 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 556332482560
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 88 key (FIRST_CHUNK_TREE CHUNK_ITEM 557406224384) itemoff 9163 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 557406224384
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 89 key (FIRST_CHUNK_TREE CHUNK_ITEM 559553708032) itemoff 9083 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 559553708032
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 90 key (FIRST_CHUNK_TREE CHUNK_ITEM 560627449856) itemoff 9003 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 560627449856
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 91 key (FIRST_CHUNK_TREE CHUNK_ITEM 561701191680) itemoff 8923 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 561701191680
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 92 key (FIRST_CHUNK_TREE CHUNK_ITEM 564922417152) itemoff 8843 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 564922417152
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 93 key (FIRST_CHUNK_TREE CHUNK_ITEM 565996158976) itemoff 8763 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 565996158976
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 94 key (FIRST_CHUNK_TREE CHUNK_ITEM 567069900800) itemoff 8683 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 567069900800
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 95 key (FIRST_CHUNK_TREE CHUNK_ITEM 586397253632) itemoff 8603 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 586397253632
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 96 key (FIRST_CHUNK_TREE CHUNK_ITEM 587470995456) itemoff 8523 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 587470995456
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 97 key (FIRST_CHUNK_TREE CHUNK_ITEM 594987188224) itemoff 8443 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 594987188224
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 98 key (FIRST_CHUNK_TREE CHUNK_ITEM 601429639168) itemoff 8363 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 601429639168
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 99 key (FIRST_CHUNK_TREE CHUNK_ITEM 602503380992) itemoff 8283 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 602503380992
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 100 key (FIRST_CHUNK_TREE CHUNK_ITEM 603577122816) itemoff 8203 itemsize 80
		length 503316480 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 603577122816
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 101 key (FIRST_CHUNK_TREE CHUNK_ITEM 605724606464) itemoff 8123 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 605724606464
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 102 key (FIRST_CHUNK_TREE CHUNK_ITEM 608945831936) itemoff 8043 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 608945831936
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 103 key (FIRST_CHUNK_TREE CHUNK_ITEM 611093315584) itemoff 7963 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 611093315584
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 104 key (FIRST_CHUNK_TREE CHUNK_ITEM 612167057408) itemoff 7883 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 612167057408
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 105 key (FIRST_CHUNK_TREE CHUNK_ITEM 618609508352) itemoff 7803 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 618609508352
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 106 key (FIRST_CHUNK_TREE CHUNK_ITEM 619683250176) itemoff 7723 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 619683250176
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 107 key (FIRST_CHUNK_TREE CHUNK_ITEM 621830733824) itemoff 7643 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 621830733824
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 108 key (FIRST_CHUNK_TREE CHUNK_ITEM 622904475648) itemoff 7563 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 622904475648
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 109 key (FIRST_CHUNK_TREE CHUNK_ITEM 623978217472) itemoff 7483 itemsize 80
		length 154914816 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 623978217472
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 110 key (FIRST_CHUNK_TREE CHUNK_ITEM 624204709888) itemoff 7403 itemsize 80
		length 746717184 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 624204709888
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 111 key (FIRST_CHUNK_TREE CHUNK_ITEM 628273184768) itemoff 7323 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 628273184768
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 112 key (FIRST_CHUNK_TREE CHUNK_ITEM 629346926592) itemoff 7243 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 629346926592
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 113 key (FIRST_CHUNK_TREE CHUNK_ITEM 630420668416) itemoff 7163 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 630420668416
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 114 key (FIRST_CHUNK_TREE CHUNK_ITEM 639010603008) itemoff 7083 itemsize 80
		length 980865024 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 639010603008
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 115 key (FIRST_CHUNK_TREE CHUNK_ITEM 641158086656) itemoff 7003 itemsize 80
		length 981045248 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 641158086656
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 116 key (FIRST_CHUNK_TREE CHUNK_ITEM 642231828480) itemoff 6923 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 642231828480
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 117 key (FIRST_CHUNK_TREE CHUNK_ITEM 650821763072) itemoff 6843 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 650821763072
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
leaf 2514418253824 items 60 free space 9983 generation 4414 owner CHUNK_TREE
leaf 2514418253824 flags 0x1(WRITTEN) backref revision 1
fs uuid 1e4fb969-7384-48fb-9377-6fb8817279ee
chunk uuid 1fda341a-b7ba-4e6a-bab6-994325244ad2
	item 0 key (FIRST_CHUNK_TREE CHUNK_ITEM 651895504896) itemoff 16203 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 651895504896
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 1 key (FIRST_CHUNK_TREE CHUNK_ITEM 660485439488) itemoff 16123 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 660485439488
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 2 key (FIRST_CHUNK_TREE CHUNK_ITEM 663706664960) itemoff 16043 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 663706664960
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 3 key (FIRST_CHUNK_TREE CHUNK_ITEM 669075374080) itemoff 15963 itemsize 80
		length 979832832 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 669075374080
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 4 key (FIRST_CHUNK_TREE CHUNK_ITEM 671222857728) itemoff 15883 itemsize 80
		length 977117184 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 671222857728
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 5 key (FIRST_CHUNK_TREE CHUNK_ITEM 676591566848) itemoff 15803 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 676591566848
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 6 key (FIRST_CHUNK_TREE CHUNK_ITEM 681960275968) itemoff 15723 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 681960275968
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 7 key (FIRST_CHUNK_TREE CHUNK_ITEM 686255243264) itemoff 15643 itemsize 80
		length 981598208 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 686255243264
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 8 key (FIRST_CHUNK_TREE CHUNK_ITEM 687328985088) itemoff 15563 itemsize 80
		length 224133120 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 687328985088
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 9 key (FIRST_CHUNK_TREE CHUNK_ITEM 692697694208) itemoff 15483 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 692697694208
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 10 key (FIRST_CHUNK_TREE CHUNK_ITEM 694845177856) itemoff 15403 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 694845177856
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 11 key (FIRST_CHUNK_TREE CHUNK_ITEM 696992661504) itemoff 15323 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 696992661504
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 12 key (FIRST_CHUNK_TREE CHUNK_ITEM 699140145152) itemoff 15243 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 699140145152
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 13 key (FIRST_CHUNK_TREE CHUNK_ITEM 701287628800) itemoff 15163 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 701287628800
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 14 key (FIRST_CHUNK_TREE CHUNK_ITEM 703435112448) itemoff 15083 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 703435112448
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 15 key (FIRST_CHUNK_TREE CHUNK_ITEM 705582596096) itemoff 15003 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 705582596096
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 16 key (FIRST_CHUNK_TREE CHUNK_ITEM 707730079744) itemoff 14923 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 707730079744
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 17 key (FIRST_CHUNK_TREE CHUNK_ITEM 709877563392) itemoff 14843 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 709877563392
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 18 key (FIRST_CHUNK_TREE CHUNK_ITEM 712025047040) itemoff 14763 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 712025047040
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 19 key (FIRST_CHUNK_TREE CHUNK_ITEM 714172530688) itemoff 14683 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 714172530688
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 20 key (FIRST_CHUNK_TREE CHUNK_ITEM 716320014336) itemoff 14603 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 716320014336
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 21 key (FIRST_CHUNK_TREE CHUNK_ITEM 718467497984) itemoff 14523 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 718467497984
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 22 key (FIRST_CHUNK_TREE CHUNK_ITEM 720614981632) itemoff 14443 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 720614981632
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 23 key (FIRST_CHUNK_TREE CHUNK_ITEM 722762465280) itemoff 14363 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 722762465280
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 24 key (FIRST_CHUNK_TREE CHUNK_ITEM 724909948928) itemoff 14283 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 724909948928
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 25 key (FIRST_CHUNK_TREE CHUNK_ITEM 727057432576) itemoff 14203 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 727057432576
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 26 key (FIRST_CHUNK_TREE CHUNK_ITEM 729204916224) itemoff 14123 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 729204916224
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 27 key (FIRST_CHUNK_TREE CHUNK_ITEM 731352399872) itemoff 14043 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 731352399872
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 28 key (FIRST_CHUNK_TREE CHUNK_ITEM 733499883520) itemoff 13963 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 733499883520
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 29 key (FIRST_CHUNK_TREE CHUNK_ITEM 735647367168) itemoff 13883 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 735647367168
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 30 key (FIRST_CHUNK_TREE CHUNK_ITEM 736721108992) itemoff 13803 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 736721108992
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 31 key (FIRST_CHUNK_TREE CHUNK_ITEM 737794850816) itemoff 13723 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 737794850816
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 32 key (FIRST_CHUNK_TREE CHUNK_ITEM 739942334464) itemoff 13643 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 739942334464
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 33 key (FIRST_CHUNK_TREE CHUNK_ITEM 742089818112) itemoff 13563 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 742089818112
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 34 key (FIRST_CHUNK_TREE CHUNK_ITEM 744237301760) itemoff 13483 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 744237301760
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 35 key (FIRST_CHUNK_TREE CHUNK_ITEM 746384785408) itemoff 13403 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 746384785408
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 36 key (FIRST_CHUNK_TREE CHUNK_ITEM 748532269056) itemoff 13323 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 748532269056
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 37 key (FIRST_CHUNK_TREE CHUNK_ITEM 749606010880) itemoff 13243 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 749606010880
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 38 key (FIRST_CHUNK_TREE CHUNK_ITEM 750679752704) itemoff 13163 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 750679752704
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 39 key (FIRST_CHUNK_TREE CHUNK_ITEM 752827236352) itemoff 13083 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 752827236352
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 40 key (FIRST_CHUNK_TREE CHUNK_ITEM 754974720000) itemoff 13003 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 754974720000
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 41 key (FIRST_CHUNK_TREE CHUNK_ITEM 762490912768) itemoff 12923 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 762490912768
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 42 key (FIRST_CHUNK_TREE CHUNK_ITEM 768128057344) itemoff 12843 itemsize 80
		length 33554432 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 768128057344
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 43 key (FIRST_CHUNK_TREE CHUNK_ITEM 768396492800) itemoff 12763 itemsize 80
		length 436338688 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 768396492800
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 44 key (FIRST_CHUNK_TREE CHUNK_ITEM 768933363712) itemoff 12683 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 768933363712
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 45 key (FIRST_CHUNK_TREE CHUNK_ITEM 772154589184) itemoff 12603 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 772154589184
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 46 key (FIRST_CHUNK_TREE CHUNK_ITEM 777523298304) itemoff 12523 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 777523298304
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 47 key (FIRST_CHUNK_TREE CHUNK_ITEM 790408200192) itemoff 12443 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 790408200192
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 48 key (FIRST_CHUNK_TREE CHUNK_ITEM 791481942016) itemoff 12363 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 791481942016
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 49 key (FIRST_CHUNK_TREE CHUNK_ITEM 794434732032) itemoff 12283 itemsize 80
		length 167903232 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 794434732032
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 50 key (FIRST_CHUNK_TREE CHUNK_ITEM 795776909312) itemoff 12203 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 795776909312
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 51 key (FIRST_CHUNK_TREE CHUNK_ITEM 797924392960) itemoff 12123 itemsize 80
		length 981254144 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 797924392960
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 52 key (FIRST_CHUNK_TREE CHUNK_ITEM 800071876608) itemoff 12043 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 800071876608
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 53 key (FIRST_CHUNK_TREE CHUNK_ITEM 801145618432) itemoff 11963 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 801145618432
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 54 key (FIRST_CHUNK_TREE CHUNK_ITEM 802219360256) itemoff 11883 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 802219360256
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 55 key (FIRST_CHUNK_TREE CHUNK_ITEM 806514327552) itemoff 11803 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 806514327552
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 56 key (FIRST_CHUNK_TREE CHUNK_ITEM 807588069376) itemoff 11723 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 807588069376
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 57 key (FIRST_CHUNK_TREE CHUNK_ITEM 808661811200) itemoff 11643 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 808661811200
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 58 key (FIRST_CHUNK_TREE CHUNK_ITEM 809735553024) itemoff 11563 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 809735553024
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 59 key (FIRST_CHUNK_TREE CHUNK_ITEM 810809294848) itemoff 11483 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 810809294848
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
leaf 2514418286592 items 90 free space 6833 generation 4414 owner CHUNK_TREE
leaf 2514418286592 flags 0x1(WRITTEN) backref revision 1
fs uuid 1e4fb969-7384-48fb-9377-6fb8817279ee
chunk uuid 1fda341a-b7ba-4e6a-bab6-994325244ad2
	item 0 key (FIRST_CHUNK_TREE CHUNK_ITEM 812956778496) itemoff 16203 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 812956778496
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 1 key (FIRST_CHUNK_TREE CHUNK_ITEM 815104262144) itemoff 16123 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 815104262144
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 2 key (FIRST_CHUNK_TREE CHUNK_ITEM 817251745792) itemoff 16043 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 817251745792
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 3 key (FIRST_CHUNK_TREE CHUNK_ITEM 819399229440) itemoff 15963 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 819399229440
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 4 key (FIRST_CHUNK_TREE CHUNK_ITEM 821546713088) itemoff 15883 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 821546713088
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 5 key (FIRST_CHUNK_TREE CHUNK_ITEM 822620454912) itemoff 15803 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 822620454912
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 6 key (FIRST_CHUNK_TREE CHUNK_ITEM 823694196736) itemoff 15723 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 823694196736
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 7 key (FIRST_CHUNK_TREE CHUNK_ITEM 824767938560) itemoff 15643 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 824767938560
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 8 key (FIRST_CHUNK_TREE CHUNK_ITEM 825841680384) itemoff 15563 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 825841680384
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 9 key (FIRST_CHUNK_TREE CHUNK_ITEM 827989164032) itemoff 15483 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 827989164032
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 10 key (FIRST_CHUNK_TREE CHUNK_ITEM 830136647680) itemoff 15403 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 830136647680
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 11 key (FIRST_CHUNK_TREE CHUNK_ITEM 831210389504) itemoff 15323 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 831210389504
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 12 key (FIRST_CHUNK_TREE CHUNK_ITEM 832284131328) itemoff 15243 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 832284131328
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 13 key (FIRST_CHUNK_TREE CHUNK_ITEM 833357873152) itemoff 15163 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 833357873152
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 14 key (FIRST_CHUNK_TREE CHUNK_ITEM 836579098624) itemoff 15083 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 836579098624
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 15 key (FIRST_CHUNK_TREE CHUNK_ITEM 837652856832) itemoff 15003 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 837652856832
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 16 key (FIRST_CHUNK_TREE CHUNK_ITEM 838726598656) itemoff 14923 itemsize 80
		length 973193216 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 838726598656
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 17 key (FIRST_CHUNK_TREE CHUNK_ITEM 840874065920) itemoff 14843 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 840874065920
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 18 key (FIRST_CHUNK_TREE CHUNK_ITEM 841947807744) itemoff 14763 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 841947807744
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 19 key (FIRST_CHUNK_TREE CHUNK_ITEM 843021549568) itemoff 14683 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 843021549568
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 20 key (FIRST_CHUNK_TREE CHUNK_ITEM 844095291392) itemoff 14603 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 844095291392
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 21 key (FIRST_CHUNK_TREE CHUNK_ITEM 846242775040) itemoff 14523 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 846242775040
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 22 key (FIRST_CHUNK_TREE CHUNK_ITEM 847316516864) itemoff 14443 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 847316516864
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 23 key (FIRST_CHUNK_TREE CHUNK_ITEM 849464000512) itemoff 14363 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 849464000512
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 24 key (FIRST_CHUNK_TREE CHUNK_ITEM 850537742336) itemoff 14283 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 850537742336
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 25 key (FIRST_CHUNK_TREE CHUNK_ITEM 851611484160) itemoff 14203 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 851611484160
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 26 key (FIRST_CHUNK_TREE CHUNK_ITEM 858053935104) itemoff 14123 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 858053935104
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 27 key (FIRST_CHUNK_TREE CHUNK_ITEM 859127672832) itemoff 14043 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 859127672832
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 28 key (FIRST_CHUNK_TREE CHUNK_ITEM 861275160576) itemoff 13963 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 861275160576
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 29 key (FIRST_CHUNK_TREE CHUNK_ITEM 862348902400) itemoff 13883 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 862348902400
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 30 key (FIRST_CHUNK_TREE CHUNK_ITEM 865570123776) itemoff 13803 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 865570123776
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 31 key (FIRST_CHUNK_TREE CHUNK_ITEM 866643865600) itemoff 13723 itemsize 80
		length 973213696 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 866643865600
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 32 key (FIRST_CHUNK_TREE CHUNK_ITEM 867717611520) itemoff 13643 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 867717611520
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 33 key (FIRST_CHUNK_TREE CHUNK_ITEM 868791353344) itemoff 13563 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 868791353344
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 34 key (FIRST_CHUNK_TREE CHUNK_ITEM 869865095168) itemoff 13483 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 869865095168
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 35 key (FIRST_CHUNK_TREE CHUNK_ITEM 873086320640) itemoff 13403 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 873086320640
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 36 key (FIRST_CHUNK_TREE CHUNK_ITEM 874160062464) itemoff 13323 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 874160062464
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 37 key (FIRST_CHUNK_TREE CHUNK_ITEM 875233804288) itemoff 13243 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 875233804288
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 38 key (FIRST_CHUNK_TREE CHUNK_ITEM 877381287936) itemoff 13163 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 877381287936
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 39 key (FIRST_CHUNK_TREE CHUNK_ITEM 878455029760) itemoff 13083 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 878455029760
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 40 key (FIRST_CHUNK_TREE CHUNK_ITEM 880602513408) itemoff 13003 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 880602513408
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 41 key (FIRST_CHUNK_TREE CHUNK_ITEM 881676255232) itemoff 12923 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 881676255232
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 42 key (FIRST_CHUNK_TREE CHUNK_ITEM 882749997056) itemoff 12843 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 882749997056
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 43 key (FIRST_CHUNK_TREE CHUNK_ITEM 883823738880) itemoff 12763 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 883823738880
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 44 key (FIRST_CHUNK_TREE CHUNK_ITEM 885971222528) itemoff 12683 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 885971222528
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 45 key (FIRST_CHUNK_TREE CHUNK_ITEM 887044964352) itemoff 12603 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 887044964352
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 46 key (FIRST_CHUNK_TREE CHUNK_ITEM 888118706176) itemoff 12523 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 888118706176
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 47 key (FIRST_CHUNK_TREE CHUNK_ITEM 891339931648) itemoff 12443 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 891339931648
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 48 key (FIRST_CHUNK_TREE CHUNK_ITEM 892413673472) itemoff 12363 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 892413673472
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 49 key (FIRST_CHUNK_TREE CHUNK_ITEM 894561157120) itemoff 12283 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 894561157120
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 50 key (FIRST_CHUNK_TREE CHUNK_ITEM 895634898944) itemoff 12203 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 895634898944
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 51 key (FIRST_CHUNK_TREE CHUNK_ITEM 898856124416) itemoff 12123 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 898856124416
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 52 key (FIRST_CHUNK_TREE CHUNK_ITEM 899929866240) itemoff 12043 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 899929866240
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 53 key (FIRST_CHUNK_TREE CHUNK_ITEM 901003608064) itemoff 11963 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 901003608064
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 54 key (FIRST_CHUNK_TREE CHUNK_ITEM 904224833536) itemoff 11883 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 904224833536
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 55 key (FIRST_CHUNK_TREE CHUNK_ITEM 905298575360) itemoff 11803 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 905298575360
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 56 key (FIRST_CHUNK_TREE CHUNK_ITEM 906372317184) itemoff 11723 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 906372317184
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 57 key (FIRST_CHUNK_TREE CHUNK_ITEM 907446059008) itemoff 11643 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 907446059008
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 58 key (FIRST_CHUNK_TREE CHUNK_ITEM 909593542656) itemoff 11563 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 909593542656
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 59 key (FIRST_CHUNK_TREE CHUNK_ITEM 912546332672) itemoff 11483 itemsize 80
		length 167903232 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 912546332672
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 60 key (FIRST_CHUNK_TREE CHUNK_ITEM 912814768128) itemoff 11403 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 912814768128
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 61 key (FIRST_CHUNK_TREE CHUNK_ITEM 913888509952) itemoff 11323 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 913888509952
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 62 key (FIRST_CHUNK_TREE CHUNK_ITEM 916035993600) itemoff 11243 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 916035993600
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 63 key (FIRST_CHUNK_TREE CHUNK_ITEM 918183477248) itemoff 11163 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 918183477248
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 64 key (FIRST_CHUNK_TREE CHUNK_ITEM 922478444544) itemoff 11083 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 922478444544
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 65 key (FIRST_CHUNK_TREE CHUNK_ITEM 925699670016) itemoff 11003 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 925699670016
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 66 key (FIRST_CHUNK_TREE CHUNK_ITEM 926773411840) itemoff 10923 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 926773411840
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 67 key (FIRST_CHUNK_TREE CHUNK_ITEM 928920895488) itemoff 10843 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 928920895488
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 68 key (FIRST_CHUNK_TREE CHUNK_ITEM 931068379136) itemoff 10763 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 931068379136
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 69 key (FIRST_CHUNK_TREE CHUNK_ITEM 933215862784) itemoff 10683 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 933215862784
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 70 key (FIRST_CHUNK_TREE CHUNK_ITEM 934289604608) itemoff 10603 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 934289604608
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 71 key (FIRST_CHUNK_TREE CHUNK_ITEM 936437088256) itemoff 10523 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 936437088256
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 72 key (FIRST_CHUNK_TREE CHUNK_ITEM 937510830080) itemoff 10443 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 937510830080
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 73 key (FIRST_CHUNK_TREE CHUNK_ITEM 938584571904) itemoff 10363 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 938584571904
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 74 key (FIRST_CHUNK_TREE CHUNK_ITEM 939658313728) itemoff 10283 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 939658313728
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 75 key (FIRST_CHUNK_TREE CHUNK_ITEM 940732055552) itemoff 10203 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 940732055552
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 76 key (FIRST_CHUNK_TREE CHUNK_ITEM 941805797376) itemoff 10123 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 941805797376
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 77 key (FIRST_CHUNK_TREE CHUNK_ITEM 946100764672) itemoff 10043 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 946100764672
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 78 key (FIRST_CHUNK_TREE CHUNK_ITEM 947174506496) itemoff 9963 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 947174506496
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 79 key (FIRST_CHUNK_TREE CHUNK_ITEM 948248248320) itemoff 9883 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 948248248320
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 80 key (FIRST_CHUNK_TREE CHUNK_ITEM 951469473792) itemoff 9803 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 951469473792
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 81 key (FIRST_CHUNK_TREE CHUNK_ITEM 952543215616) itemoff 9723 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 952543215616
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 82 key (FIRST_CHUNK_TREE CHUNK_ITEM 954690699264) itemoff 9643 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 954690699264
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 83 key (FIRST_CHUNK_TREE CHUNK_ITEM 956838182912) itemoff 9563 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 956838182912
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 84 key (FIRST_CHUNK_TREE CHUNK_ITEM 957911924736) itemoff 9483 itemsize 80
		length 763363328 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 957911924736
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 85 key (FIRST_CHUNK_TREE CHUNK_ITEM 960864714752) itemoff 9403 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 960864714752
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 86 key (FIRST_CHUNK_TREE CHUNK_ITEM 961938456576) itemoff 9323 itemsize 80
		length 167903232 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 961938456576
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 87 key (FIRST_CHUNK_TREE CHUNK_ITEM 964354375680) itemoff 9243 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 964354375680
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 88 key (FIRST_CHUNK_TREE CHUNK_ITEM 975091793920) itemoff 9163 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 975091793920
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 89 key (FIRST_CHUNK_TREE CHUNK_ITEM 977239277568) itemoff 9083 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 977239277568
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
leaf 2514418679808 items 80 free space 7883 generation 4597 owner CHUNK_TREE
leaf 2514418679808 flags 0x1(WRITTEN) backref revision 1
fs uuid 1e4fb969-7384-48fb-9377-6fb8817279ee
chunk uuid 1fda341a-b7ba-4e6a-bab6-994325244ad2
	item 0 key (FIRST_CHUNK_TREE CHUNK_ITEM 979386761216) itemoff 16203 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 979386761216
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 1 key (FIRST_CHUNK_TREE CHUNK_ITEM 986902953984) itemoff 16123 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 986902953984
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 2 key (FIRST_CHUNK_TREE CHUNK_ITEM 1000458944512) itemoff 16043 itemsize 80
		length 33554432 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1000458944512
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 3 key (FIRST_CHUNK_TREE CHUNK_ITEM 1000593162240) itemoff 15963 itemsize 80
		length 33554432 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1000593162240
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 4 key (FIRST_CHUNK_TREE CHUNK_ITEM 1001801121792) itemoff 15883 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1001801121792
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 5 key (FIRST_CHUNK_TREE CHUNK_ITEM 1002874863616) itemoff 15803 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1002874863616
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 6 key (FIRST_CHUNK_TREE CHUNK_ITEM 1005022347264) itemoff 15723 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1005022347264
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 7 key (FIRST_CHUNK_TREE CHUNK_ITEM 1006096089088) itemoff 15643 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1006096089088
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 8 key (FIRST_CHUNK_TREE CHUNK_ITEM 1007169830912) itemoff 15563 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1007169830912
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 9 key (FIRST_CHUNK_TREE CHUNK_ITEM 1008243572736) itemoff 15483 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1008243572736
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 10 key (FIRST_CHUNK_TREE CHUNK_ITEM 1010391056384) itemoff 15403 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1010391056384
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 11 key (FIRST_CHUNK_TREE CHUNK_ITEM 1011464798208) itemoff 15323 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1011464798208
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 12 key (FIRST_CHUNK_TREE CHUNK_ITEM 1013612281856) itemoff 15243 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1013612281856
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 13 key (FIRST_CHUNK_TREE CHUNK_ITEM 1015759765504) itemoff 15163 itemsize 80
		length 67239936 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1015759765504
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 14 key (FIRST_CHUNK_TREE CHUNK_ITEM 1015893983232) itemoff 15083 itemsize 80
		length 356589568 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1015893983232
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 15 key (FIRST_CHUNK_TREE CHUNK_ITEM 1016288370688) itemoff 15003 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1016288370688
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 16 key (FIRST_CHUNK_TREE CHUNK_ITEM 1018041466880) itemoff 14923 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1018041466880
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 17 key (FIRST_CHUNK_TREE CHUNK_ITEM 1019115208704) itemoff 14843 itemsize 80
		length 363945984 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1019115208704
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 18 key (FIRST_CHUNK_TREE CHUNK_ITEM 1020188950528) itemoff 14763 itemsize 80
		length 298299392 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1020188950528
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 19 key (FIRST_CHUNK_TREE CHUNK_ITEM 1020524494848) itemoff 14683 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1020524494848
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 20 key (FIRST_CHUNK_TREE CHUNK_ITEM 1021598236672) itemoff 14603 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1021598236672
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 21 key (FIRST_CHUNK_TREE CHUNK_ITEM 1022671978496) itemoff 14523 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1022671978496
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 22 key (FIRST_CHUNK_TREE CHUNK_ITEM 1024819462144) itemoff 14443 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1024819462144
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 23 key (FIRST_CHUNK_TREE CHUNK_ITEM 1026966945792) itemoff 14363 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1026966945792
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 24 key (FIRST_CHUNK_TREE CHUNK_ITEM 1028040687616) itemoff 14283 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1028040687616
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 25 key (FIRST_CHUNK_TREE CHUNK_ITEM 1029114429440) itemoff 14203 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1029114429440
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 26 key (FIRST_CHUNK_TREE CHUNK_ITEM 1030188171264) itemoff 14123 itemsize 80
		length 671248384 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1030188171264
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 27 key (FIRST_CHUNK_TREE CHUNK_ITEM 1030926397440) itemoff 14043 itemsize 80
		length 269053952 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1030926397440
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 28 key (FIRST_CHUNK_TREE CHUNK_ITEM 1032939634688) itemoff 13963 itemsize 80
		length 67846144 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1032939634688
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 29 key (FIRST_CHUNK_TREE CHUNK_ITEM 1033073897472) itemoff 13883 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1033073897472
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 30 key (FIRST_CHUNK_TREE CHUNK_ITEM 1034147639296) itemoff 13803 itemsize 80
		length 1007542272 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1034147639296
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 31 key (FIRST_CHUNK_TREE CHUNK_ITEM 1035221336064) itemoff 13723 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1035221336064
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 32 key (FIRST_CHUNK_TREE CHUNK_ITEM 1037368819712) itemoff 13643 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1037368819712
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 33 key (FIRST_CHUNK_TREE CHUNK_ITEM 1038442561536) itemoff 13563 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1038442561536
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 34 key (FIRST_CHUNK_TREE CHUNK_ITEM 1039516303360) itemoff 13483 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1039516303360
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 35 key (FIRST_CHUNK_TREE CHUNK_ITEM 1040590045184) itemoff 13403 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1040590045184
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 36 key (FIRST_CHUNK_TREE CHUNK_ITEM 1041663787008) itemoff 13323 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1041663787008
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 37 key (FIRST_CHUNK_TREE CHUNK_ITEM 1043408617472) itemoff 13243 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1043408617472
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 38 key (FIRST_CHUNK_TREE CHUNK_ITEM 1045556101120) itemoff 13163 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1045556101120
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 39 key (FIRST_CHUNK_TREE CHUNK_ITEM 1047703584768) itemoff 13083 itemsize 80
		length 337825792 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1047703584768
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 40 key (FIRST_CHUNK_TREE CHUNK_ITEM 1048106237952) itemoff 13003 itemsize 80
		length 33554432 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1048106237952
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 41 key (FIRST_CHUNK_TREE CHUNK_ITEM 1050253721600) itemoff 12923 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1050253721600
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 42 key (FIRST_CHUNK_TREE CHUNK_ITEM 1052401332224) itemoff 12843 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1052401332224
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 43 key (FIRST_CHUNK_TREE CHUNK_ITEM 1056696815616) itemoff 12763 itemsize 80
		length 67108864 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1056696815616
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 44 key (FIRST_CHUNK_TREE CHUNK_ITEM 1058843656192) itemoff 12683 itemsize 80
		length 33554432 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1058843656192
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 45 key (FIRST_CHUNK_TREE CHUNK_ITEM 1060991139840) itemoff 12603 itemsize 80
		length 33554432 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1060991139840
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 46 key (FIRST_CHUNK_TREE CHUNK_ITEM 1062601752576) itemoff 12523 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1062601752576
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 47 key (FIRST_CHUNK_TREE CHUNK_ITEM 1065286107136) itemoff 12443 itemsize 80
		length 33554432 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1065286107136
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 48 key (FIRST_CHUNK_TREE CHUNK_ITEM 1065420324864) itemoff 12363 itemsize 80
		length 33554432 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1065420324864
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 49 key (FIRST_CHUNK_TREE CHUNK_ITEM 1067433590784) itemoff 12283 itemsize 80
		length 33554432 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1067433590784
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 50 key (FIRST_CHUNK_TREE CHUNK_ITEM 1067567808512) itemoff 12203 itemsize 80
		length 33554432 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1067567808512
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 51 key (FIRST_CHUNK_TREE CHUNK_ITEM 1067702022144) itemoff 12123 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1067702022144
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 52 key (FIRST_CHUNK_TREE CHUNK_ITEM 1069581074432) itemoff 12043 itemsize 80
		length 33554432 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1069581074432
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 53 key (FIRST_CHUNK_TREE CHUNK_ITEM 1069715292160) itemoff 11963 itemsize 80
		length 33554432 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1069715292160
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 54 key (FIRST_CHUNK_TREE CHUNK_ITEM 1071728558080) itemoff 11883 itemsize 80
		length 33554432 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1071728558080
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 55 key (FIRST_CHUNK_TREE CHUNK_ITEM 1071862775808) itemoff 11803 itemsize 80
		length 33554432 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1071862775808
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 56 key (FIRST_CHUNK_TREE CHUNK_ITEM 1073876041728) itemoff 11723 itemsize 80
		length 33554432 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1073876041728
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 57 key (FIRST_CHUNK_TREE CHUNK_ITEM 1074010259456) itemoff 11643 itemsize 80
		length 33554432 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1074010259456
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 58 key (FIRST_CHUNK_TREE CHUNK_ITEM 1074144477184) itemoff 11563 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1074144477184
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 59 key (FIRST_CHUNK_TREE CHUNK_ITEM 1076023525376) itemoff 11483 itemsize 80
		length 33554432 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1076023525376
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 60 key (FIRST_CHUNK_TREE CHUNK_ITEM 1076157743104) itemoff 11403 itemsize 80
		length 33554432 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1076157743104
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 61 key (FIRST_CHUNK_TREE CHUNK_ITEM 1078171009024) itemoff 11323 itemsize 80
		length 33554432 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1078171009024
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 62 key (FIRST_CHUNK_TREE CHUNK_ITEM 1078305226752) itemoff 11243 itemsize 80
		length 33554432 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1078305226752
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 63 key (FIRST_CHUNK_TREE CHUNK_ITEM 1079513186304) itemoff 11163 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1079513186304
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 64 key (FIRST_CHUNK_TREE CHUNK_ITEM 1082465976320) itemoff 11083 itemsize 80
		length 33554432 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1082465976320
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 65 key (FIRST_CHUNK_TREE CHUNK_ITEM 1082600194048) itemoff 11003 itemsize 80
		length 33554432 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1082600194048
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 66 key (FIRST_CHUNK_TREE CHUNK_ITEM 1083808153600) itemoff 10923 itemsize 80
		length 740564992 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1083808153600
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 67 key (FIRST_CHUNK_TREE CHUNK_ITEM 1084613459968) itemoff 10843 itemsize 80
		length 33554432 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1084613459968
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 68 key (FIRST_CHUNK_TREE CHUNK_ITEM 1084747677696) itemoff 10763 itemsize 80
		length 33554432 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1084747677696
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 69 key (FIRST_CHUNK_TREE CHUNK_ITEM 1086760943616) itemoff 10683 itemsize 80
		length 33554432 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1086760943616
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 70 key (FIRST_CHUNK_TREE CHUNK_ITEM 1088908427264) itemoff 10603 itemsize 80
		length 33554432 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1088908427264
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 71 key (FIRST_CHUNK_TREE CHUNK_ITEM 1089042644992) itemoff 10523 itemsize 80
		length 33554432 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1089042644992
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 72 key (FIRST_CHUNK_TREE CHUNK_ITEM 1091055910912) itemoff 10443 itemsize 80
		length 160784384 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1091055910912
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 73 key (FIRST_CHUNK_TREE CHUNK_ITEM 1093203394560) itemoff 10363 itemsize 80
		length 135925760 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1093203394560
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 74 key (FIRST_CHUNK_TREE CHUNK_ITEM 1095350878208) itemoff 10283 itemsize 80
		length 91344896 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1095350878208
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 75 key (FIRST_CHUNK_TREE CHUNK_ITEM 1095485140992) itemoff 10203 itemsize 80
		length 33554432 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1095485140992
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 76 key (FIRST_CHUNK_TREE CHUNK_ITEM 1096693055488) itemoff 10123 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1096693055488
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 77 key (FIRST_CHUNK_TREE CHUNK_ITEM 1099781079040) itemoff 10043 itemsize 80
		length 33554432 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1099781079040
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 78 key (FIRST_CHUNK_TREE CHUNK_ITEM 1099914280960) itemoff 9963 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1099914280960
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 79 key (FIRST_CHUNK_TREE CHUNK_ITEM 1101793329152) itemoff 9883 itemsize 80
		length 69726208 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1101793329152
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
leaf 2514418302976 items 83 free space 7568 generation 4414 owner CHUNK_TREE
leaf 2514418302976 flags 0x1(WRITTEN) backref revision 1
fs uuid 1e4fb969-7384-48fb-9377-6fb8817279ee
chunk uuid 1fda341a-b7ba-4e6a-bab6-994325244ad2
	item 0 key (FIRST_CHUNK_TREE CHUNK_ITEM 1101927550976) itemoff 16203 itemsize 80
		length 33554432 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1101927550976
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 1 key (FIRST_CHUNK_TREE CHUNK_ITEM 1103940812800) itemoff 16123 itemsize 80
		length 135585792 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1103940812800
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 2 key (FIRST_CHUNK_TREE CHUNK_ITEM 1105282990080) itemoff 16043 itemsize 80
		length 740564992 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1105282990080
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 3 key (FIRST_CHUNK_TREE CHUNK_ITEM 1106088296448) itemoff 15963 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1106088296448
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 4 key (FIRST_CHUNK_TREE CHUNK_ITEM 1112530747392) itemoff 15883 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1112530747392
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 5 key (FIRST_CHUNK_TREE CHUNK_ITEM 1114678231040) itemoff 15803 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1114678231040
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 6 key (FIRST_CHUNK_TREE CHUNK_ITEM 1115751972864) itemoff 15723 itemsize 80
		length 989822976 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1115751972864
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 7 key (FIRST_CHUNK_TREE CHUNK_ITEM 1116825804800) itemoff 15643 itemsize 80
		length 233058304 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1116825804800
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 8 key (FIRST_CHUNK_TREE CHUNK_ITEM 1118973198336) itemoff 15563 itemsize 80
		length 218988544 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1118973198336
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 9 key (FIRST_CHUNK_TREE CHUNK_ITEM 1119644286976) itemoff 15483 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1119644286976
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 10 key (FIRST_CHUNK_TREE CHUNK_ITEM 1120718028800) itemoff 15403 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1120718028800
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 11 key (FIRST_CHUNK_TREE CHUNK_ITEM 1122865512448) itemoff 15323 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1122865512448
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 12 key (FIRST_CHUNK_TREE CHUNK_ITEM 1128234221568) itemoff 15243 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1128234221568
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 13 key (FIRST_CHUNK_TREE CHUNK_ITEM 1131455447040) itemoff 15163 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1131455447040
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 14 key (FIRST_CHUNK_TREE CHUNK_ITEM 1133602930688) itemoff 15083 itemsize 80
		length 336289792 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1133602930688
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 15 key (FIRST_CHUNK_TREE CHUNK_ITEM 1134005583872) itemoff 15003 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1134005583872
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 16 key (FIRST_CHUNK_TREE CHUNK_ITEM 1138300551168) itemoff 14923 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1138300551168
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 17 key (FIRST_CHUNK_TREE CHUNK_ITEM 1143669260288) itemoff 14843 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1143669260288
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 18 key (FIRST_CHUNK_TREE CHUNK_ITEM 1145816743936) itemoff 14763 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1145816743936
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 19 key (FIRST_CHUNK_TREE CHUNK_ITEM 1146890485760) itemoff 14683 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1146890485760
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 20 key (FIRST_CHUNK_TREE CHUNK_ITEM 1147964227584) itemoff 14603 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1147964227584
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 21 key (FIRST_CHUNK_TREE CHUNK_ITEM 1150111711232) itemoff 14523 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1150111711232
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 22 key (FIRST_CHUNK_TREE CHUNK_ITEM 1156822593536) itemoff 14443 itemsize 80
		length 704778240 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1156822593536
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 23 key (FIRST_CHUNK_TREE CHUNK_ITEM 1158701645824) itemoff 14363 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1158701645824
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 24 key (FIRST_CHUNK_TREE CHUNK_ITEM 1160849129472) itemoff 14283 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1160849129472
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 25 key (FIRST_CHUNK_TREE CHUNK_ITEM 1161922871296) itemoff 14203 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1161922871296
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 26 key (FIRST_CHUNK_TREE CHUNK_ITEM 1162996613120) itemoff 14123 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1162996613120
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 27 key (FIRST_CHUNK_TREE CHUNK_ITEM 1164070354944) itemoff 14043 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1164070354944
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 28 key (FIRST_CHUNK_TREE CHUNK_ITEM 1165144096768) itemoff 13963 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1165144096768
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 29 key (FIRST_CHUNK_TREE CHUNK_ITEM 1168365322240) itemoff 13883 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1168365322240
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 30 key (FIRST_CHUNK_TREE CHUNK_ITEM 1169439064064) itemoff 13803 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1169439064064
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 31 key (FIRST_CHUNK_TREE CHUNK_ITEM 1171586547712) itemoff 13723 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1171586547712
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 32 key (FIRST_CHUNK_TREE CHUNK_ITEM 1172660289536) itemoff 13643 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1172660289536
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 33 key (FIRST_CHUNK_TREE CHUNK_ITEM 1173734031360) itemoff 13563 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1173734031360
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 34 key (FIRST_CHUNK_TREE CHUNK_ITEM 1174807773184) itemoff 13483 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1174807773184
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 35 key (FIRST_CHUNK_TREE CHUNK_ITEM 1175881515008) itemoff 13403 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1175881515008
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 36 key (FIRST_CHUNK_TREE CHUNK_ITEM 1178028998656) itemoff 13323 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1178028998656
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 37 key (FIRST_CHUNK_TREE CHUNK_ITEM 1180176482304) itemoff 13243 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1180176482304
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 38 key (FIRST_CHUNK_TREE CHUNK_ITEM 1182323965952) itemoff 13163 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1182323965952
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 39 key (FIRST_CHUNK_TREE CHUNK_ITEM 1183397707776) itemoff 13083 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1183397707776
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 40 key (FIRST_CHUNK_TREE CHUNK_ITEM 1184471449600) itemoff 13003 itemsize 80
		length 973213696 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1184471449600
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 41 key (FIRST_CHUNK_TREE CHUNK_ITEM 1185679409152) itemoff 12923 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1185679409152
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 42 key (FIRST_CHUNK_TREE CHUNK_ITEM 1186753150976) itemoff 12843 itemsize 80
		length 838991872 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1186753150976
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 43 key (FIRST_CHUNK_TREE CHUNK_ITEM 1187692675072) itemoff 12763 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1187692675072
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 44 key (FIRST_CHUNK_TREE CHUNK_ITEM 1188766416896) itemoff 12683 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1188766416896
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 45 key (FIRST_CHUNK_TREE CHUNK_ITEM 1190913900544) itemoff 12603 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1190913900544
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 46 key (FIRST_CHUNK_TREE CHUNK_ITEM 1191987642368) itemoff 12523 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1191987642368
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 47 key (FIRST_CHUNK_TREE CHUNK_ITEM 1193061384192) itemoff 12443 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1193061384192
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 48 key (FIRST_CHUNK_TREE CHUNK_ITEM 1194135126016) itemoff 12363 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1194135126016
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 49 key (FIRST_CHUNK_TREE CHUNK_ITEM 1195208867840) itemoff 12283 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1195208867840
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 50 key (FIRST_CHUNK_TREE CHUNK_ITEM 1197356351488) itemoff 12203 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1197356351488
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 51 key (FIRST_CHUNK_TREE CHUNK_ITEM 1198430093312) itemoff 12123 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1198430093312
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 52 key (FIRST_CHUNK_TREE CHUNK_ITEM 1201651318784) itemoff 12043 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1201651318784
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 53 key (FIRST_CHUNK_TREE CHUNK_ITEM 1202725060608) itemoff 11963 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1202725060608
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 54 key (FIRST_CHUNK_TREE CHUNK_ITEM 1203798802432) itemoff 11883 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1203798802432
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 55 key (FIRST_CHUNK_TREE CHUNK_ITEM 1204872544256) itemoff 11803 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1204872544256
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 56 key (FIRST_CHUNK_TREE CHUNK_ITEM 1207020027904) itemoff 11723 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1207020027904
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 57 key (FIRST_CHUNK_TREE CHUNK_ITEM 1208093769728) itemoff 11643 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1208093769728
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 58 key (FIRST_CHUNK_TREE CHUNK_ITEM 1209167511552) itemoff 11563 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1209167511552
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 59 key (FIRST_CHUNK_TREE CHUNK_ITEM 1210241253376) itemoff 11483 itemsize 80
		length 973213696 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1210241253376
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 60 key (FIRST_CHUNK_TREE CHUNK_ITEM 1211314995200) itemoff 11403 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1211314995200
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 61 key (FIRST_CHUNK_TREE CHUNK_ITEM 1212388737024) itemoff 11323 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1212388737024
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 62 key (FIRST_CHUNK_TREE CHUNK_ITEM 1214536220672) itemoff 11243 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1214536220672
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 63 key (FIRST_CHUNK_TREE CHUNK_ITEM 1217757446144) itemoff 11163 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1217757446144
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 64 key (FIRST_CHUNK_TREE CHUNK_ITEM 1218831187968) itemoff 11083 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1218831187968
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 65 key (FIRST_CHUNK_TREE CHUNK_ITEM 1219904929792) itemoff 11003 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1219904929792
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 66 key (FIRST_CHUNK_TREE CHUNK_ITEM 1220978671616) itemoff 10923 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1220978671616
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 67 key (FIRST_CHUNK_TREE CHUNK_ITEM 1222052413440) itemoff 10843 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1222052413440
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 68 key (FIRST_CHUNK_TREE CHUNK_ITEM 1223126155264) itemoff 10763 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1223126155264
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 69 key (FIRST_CHUNK_TREE CHUNK_ITEM 1224199897088) itemoff 10683 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1224199897088
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 70 key (FIRST_CHUNK_TREE CHUNK_ITEM 1226347380736) itemoff 10603 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1226347380736
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 71 key (FIRST_CHUNK_TREE CHUNK_ITEM 1227421122560) itemoff 10523 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1227421122560
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 72 key (FIRST_CHUNK_TREE CHUNK_ITEM 1232068411392) itemoff 10443 itemsize 80
		length 720691200 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1232068411392
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 73 key (FIRST_CHUNK_TREE CHUNK_ITEM 1237084798976) itemoff 10363 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1237084798976
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 74 key (FIRST_CHUNK_TREE CHUNK_ITEM 1238158540800) itemoff 10283 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1238158540800
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 75 key (FIRST_CHUNK_TREE CHUNK_ITEM 1239232282624) itemoff 10203 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1239232282624
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 76 key (FIRST_CHUNK_TREE CHUNK_ITEM 1240306024448) itemoff 10123 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1240306024448
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 77 key (FIRST_CHUNK_TREE CHUNK_ITEM 1242453508096) itemoff 10043 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1242453508096
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 78 key (FIRST_CHUNK_TREE CHUNK_ITEM 1245674733568) itemoff 9963 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1245674733568
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 79 key (FIRST_CHUNK_TREE CHUNK_ITEM 1253190926336) itemoff 9883 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1253190926336
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 80 key (FIRST_CHUNK_TREE CHUNK_ITEM 1255338409984) itemoff 9803 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1255338409984
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 81 key (FIRST_CHUNK_TREE CHUNK_ITEM 1256412151808) itemoff 9723 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1256412151808
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 82 key (FIRST_CHUNK_TREE CHUNK_ITEM 1257485893632) itemoff 9643 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1257485893632
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
leaf 2514418188288 items 114 free space 4313 generation 4414 owner CHUNK_TREE
leaf 2514418188288 flags 0x1(WRITTEN) backref revision 1
fs uuid 1e4fb969-7384-48fb-9377-6fb8817279ee
chunk uuid 1fda341a-b7ba-4e6a-bab6-994325244ad2
	item 0 key (FIRST_CHUNK_TREE CHUNK_ITEM 1259633377280) itemoff 16203 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1259633377280
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 1 key (FIRST_CHUNK_TREE CHUNK_ITEM 1260707119104) itemoff 16123 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1260707119104
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 2 key (FIRST_CHUNK_TREE CHUNK_ITEM 1261780860928) itemoff 16043 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1261780860928
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 3 key (FIRST_CHUNK_TREE CHUNK_ITEM 1262854602752) itemoff 15963 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1262854602752
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 4 key (FIRST_CHUNK_TREE CHUNK_ITEM 1263928344576) itemoff 15883 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1263928344576
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 5 key (FIRST_CHUNK_TREE CHUNK_ITEM 1265002086400) itemoff 15803 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1265002086400
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 6 key (FIRST_CHUNK_TREE CHUNK_ITEM 1266075828224) itemoff 15723 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1266075828224
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 7 key (FIRST_CHUNK_TREE CHUNK_ITEM 1274665762816) itemoff 15643 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1274665762816
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 8 key (FIRST_CHUNK_TREE CHUNK_ITEM 1276813246464) itemoff 15563 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1276813246464
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 9 key (FIRST_CHUNK_TREE CHUNK_ITEM 1277886988288) itemoff 15483 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1277886988288
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 10 key (FIRST_CHUNK_TREE CHUNK_ITEM 1282181955584) itemoff 15403 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1282181955584
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 11 key (FIRST_CHUNK_TREE CHUNK_ITEM 1286476922880) itemoff 15323 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1286476922880
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 12 key (FIRST_CHUNK_TREE CHUNK_ITEM 1288758624256) itemoff 15243 itemsize 80
		length 231911424 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1288758624256
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 13 key (FIRST_CHUNK_TREE CHUNK_ITEM 1290771890176) itemoff 15163 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1290771890176
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 14 key (FIRST_CHUNK_TREE CHUNK_ITEM 1291845632000) itemoff 15083 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1291845632000
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 15 key (FIRST_CHUNK_TREE CHUNK_ITEM 1292919373824) itemoff 15003 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1292919373824
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 16 key (FIRST_CHUNK_TREE CHUNK_ITEM 1296140599296) itemoff 14923 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1296140599296
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 17 key (FIRST_CHUNK_TREE CHUNK_ITEM 1299361824768) itemoff 14843 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1299361824768
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 18 key (FIRST_CHUNK_TREE CHUNK_ITEM 1300435566592) itemoff 14763 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1300435566592
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 19 key (FIRST_CHUNK_TREE CHUNK_ITEM 1304730533888) itemoff 14683 itemsize 80
		length 973213696 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1304730533888
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 20 key (FIRST_CHUNK_TREE CHUNK_ITEM 1307683323904) itemoff 14603 itemsize 80
		length 167903232 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1307683323904
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 21 key (FIRST_CHUNK_TREE CHUNK_ITEM 1309025501184) itemoff 14523 itemsize 80
		length 216313856 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1309025501184
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 22 key (FIRST_CHUNK_TREE CHUNK_ITEM 1309293936640) itemoff 14443 itemsize 80
		length 56778752 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1309293936640
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 23 key (FIRST_CHUNK_TREE CHUNK_ITEM 1309428154368) itemoff 14363 itemsize 80
		length 81354752 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1309428154368
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 24 key (FIRST_CHUNK_TREE CHUNK_ITEM 1310099243008) itemoff 14283 itemsize 80
		length 571695104 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1310099243008
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 25 key (FIRST_CHUNK_TREE CHUNK_ITEM 1318689177600) itemoff 14203 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1318689177600
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 26 key (FIRST_CHUNK_TREE CHUNK_ITEM 1321910403072) itemoff 14123 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1321910403072
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 27 key (FIRST_CHUNK_TREE CHUNK_ITEM 1324057886720) itemoff 14043 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1324057886720
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 28 key (FIRST_CHUNK_TREE CHUNK_ITEM 1326205370368) itemoff 13963 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1326205370368
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 29 key (FIRST_CHUNK_TREE CHUNK_ITEM 1327279112192) itemoff 13883 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1327279112192
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 30 key (FIRST_CHUNK_TREE CHUNK_ITEM 1328352854016) itemoff 13803 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1328352854016
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 31 key (FIRST_CHUNK_TREE CHUNK_ITEM 1329426595840) itemoff 13723 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1329426595840
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 32 key (FIRST_CHUNK_TREE CHUNK_ITEM 1331574079488) itemoff 13643 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1331574079488
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 33 key (FIRST_CHUNK_TREE CHUNK_ITEM 1332647821312) itemoff 13563 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1332647821312
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 34 key (FIRST_CHUNK_TREE CHUNK_ITEM 1334795304960) itemoff 13483 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1334795304960
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 35 key (FIRST_CHUNK_TREE CHUNK_ITEM 1335869046784) itemoff 13403 itemsize 80
		length 72699904 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1335869046784
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 36 key (FIRST_CHUNK_TREE CHUNK_ITEM 1339895578624) itemoff 13323 itemsize 80
		length 167903232 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1339895578624
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 37 key (FIRST_CHUNK_TREE CHUNK_ITEM 1341237755904) itemoff 13243 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1341237755904
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 38 key (FIRST_CHUNK_TREE CHUNK_ITEM 1342311497728) itemoff 13163 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1342311497728
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 39 key (FIRST_CHUNK_TREE CHUNK_ITEM 1344459018240) itemoff 13083 itemsize 80
		length 33554432 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1344459018240
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 40 key (FIRST_CHUNK_TREE CHUNK_ITEM 1346606465024) itemoff 13003 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1346606465024
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 41 key (FIRST_CHUNK_TREE CHUNK_ITEM 1347680206848) itemoff 12923 itemsize 80
		length 973213696 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1347680206848
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 42 key (FIRST_CHUNK_TREE CHUNK_ITEM 1348753948672) itemoff 12843 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1348753948672
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 43 key (FIRST_CHUNK_TREE CHUNK_ITEM 1349827690496) itemoff 12763 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1349827690496
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 44 key (FIRST_CHUNK_TREE CHUNK_ITEM 1350901432320) itemoff 12683 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1350901432320
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 45 key (FIRST_CHUNK_TREE CHUNK_ITEM 1351975174144) itemoff 12603 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1351975174144
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 46 key (FIRST_CHUNK_TREE CHUNK_ITEM 1354122657792) itemoff 12523 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1354122657792
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 47 key (FIRST_CHUNK_TREE CHUNK_ITEM 1355196399616) itemoff 12443 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1355196399616
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 48 key (FIRST_CHUNK_TREE CHUNK_ITEM 1356270141440) itemoff 12363 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1356270141440
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 49 key (FIRST_CHUNK_TREE CHUNK_ITEM 1357343883264) itemoff 12283 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1357343883264
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 50 key (FIRST_CHUNK_TREE CHUNK_ITEM 1358417625088) itemoff 12203 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1358417625088
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 51 key (FIRST_CHUNK_TREE CHUNK_ITEM 1359491366912) itemoff 12123 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1359491366912
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 52 key (FIRST_CHUNK_TREE CHUNK_ITEM 1360565108736) itemoff 12043 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1360565108736
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 53 key (FIRST_CHUNK_TREE CHUNK_ITEM 1361638850560) itemoff 11963 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1361638850560
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 54 key (FIRST_CHUNK_TREE CHUNK_ITEM 1362712592384) itemoff 11883 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1362712592384
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 55 key (FIRST_CHUNK_TREE CHUNK_ITEM 1363786334208) itemoff 11803 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1363786334208
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 56 key (FIRST_CHUNK_TREE CHUNK_ITEM 1364860076032) itemoff 11723 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1364860076032
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 57 key (FIRST_CHUNK_TREE CHUNK_ITEM 1365933817856) itemoff 11643 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1365933817856
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 58 key (FIRST_CHUNK_TREE CHUNK_ITEM 1367007559680) itemoff 11563 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1367007559680
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 59 key (FIRST_CHUNK_TREE CHUNK_ITEM 1368081301504) itemoff 11483 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1368081301504
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 60 key (FIRST_CHUNK_TREE CHUNK_ITEM 1369155043328) itemoff 11403 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1369155043328
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 61 key (FIRST_CHUNK_TREE CHUNK_ITEM 1374255316992) itemoff 11323 itemsize 80
		length 175321088 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1374255316992
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 62 key (FIRST_CHUNK_TREE CHUNK_ITEM 1374523752448) itemoff 11243 itemsize 80
		length 627130368 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1374523752448
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 63 key (FIRST_CHUNK_TREE CHUNK_ITEM 1375194841088) itemoff 11163 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1375194841088
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 64 key (FIRST_CHUNK_TREE CHUNK_ITEM 1376268582912) itemoff 11083 itemsize 80
		length 302120960 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1376268582912
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 65 key (FIRST_CHUNK_TREE CHUNK_ITEM 1376671236096) itemoff 11003 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1376671236096
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 66 key (FIRST_CHUNK_TREE CHUNK_ITEM 1377744977920) itemoff 10923 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1377744977920
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 67 key (FIRST_CHUNK_TREE CHUNK_ITEM 1378818719744) itemoff 10843 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1378818719744
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 68 key (FIRST_CHUNK_TREE CHUNK_ITEM 1379892461568) itemoff 10763 itemsize 80
		length 167677952 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1379892461568
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 69 key (FIRST_CHUNK_TREE CHUNK_ITEM 1503372771328) itemoff 10683 itemsize 80
		length 33554432 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1503372771328
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 70 key (FIRST_CHUNK_TREE CHUNK_ITEM 1573165989888) itemoff 10603 itemsize 80
		length 505307136 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1573165989888
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 71 key (FIRST_CHUNK_TREE CHUNK_ITEM 1578400481280) itemoff 10523 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1578400481280
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 72 key (FIRST_CHUNK_TREE CHUNK_ITEM 1586185109504) itemoff 10443 itemsize 80
		length 839327744 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1586185109504
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 73 key (FIRST_CHUNK_TREE CHUNK_ITEM 1588198375424) itemoff 10363 itemsize 80
		length 975093760 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1588198375424
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 74 key (FIRST_CHUNK_TREE CHUNK_ITEM 1590345859072) itemoff 10283 itemsize 80
		length 125829120 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1590345859072
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 75 key (FIRST_CHUNK_TREE CHUNK_ITEM 1592459788288) itemoff 10203 itemsize 80
		length 434487296 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1592459788288
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 76 key (FIRST_CHUNK_TREE CHUNK_ITEM 1596654092288) itemoff 10123 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1596654092288
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 77 key (FIRST_CHUNK_TREE CHUNK_ITEM 1600009535488) itemoff 10043 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1600009535488
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 78 key (FIRST_CHUNK_TREE CHUNK_ITEM 1601083277312) itemoff 9963 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1601083277312
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 79 key (FIRST_CHUNK_TREE CHUNK_ITEM 1638530023424) itemoff 9883 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1638530023424
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 80 key (FIRST_CHUNK_TREE CHUNK_ITEM 1649401659392) itemoff 9803 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1649401659392
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 81 key (FIRST_CHUNK_TREE CHUNK_ITEM 1650475401216) itemoff 9723 itemsize 80
		length 1002700800 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1650475401216
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 82 key (FIRST_CHUNK_TREE CHUNK_ITEM 1654027030528) itemoff 9643 itemsize 80
		length 33554432 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1654027030528
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 83 key (FIRST_CHUNK_TREE CHUNK_ITEM 1654116061184) itemoff 9563 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1654116061184
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 84 key (FIRST_CHUNK_TREE CHUNK_ITEM 1655189803008) itemoff 9483 itemsize 80
		length 411987968 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1655189803008
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 85 key (FIRST_CHUNK_TREE CHUNK_ITEM 1660004859904) itemoff 9403 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1660004859904
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 86 key (FIRST_CHUNK_TREE CHUNK_ITEM 1661078601728) itemoff 9323 itemsize 80
		length 21131264 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1661078601728
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 87 key (FIRST_CHUNK_TREE CHUNK_ITEM 1665373569024) itemoff 9243 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1665373569024
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 88 key (FIRST_CHUNK_TREE CHUNK_ITEM 1667521052672) itemoff 9163 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1667521052672
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 89 key (FIRST_CHUNK_TREE CHUNK_ITEM 1668729012224) itemoff 9083 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1668729012224
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 90 key (FIRST_CHUNK_TREE CHUNK_ITEM 1669802754048) itemoff 9003 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1669802754048
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 91 key (FIRST_CHUNK_TREE CHUNK_ITEM 1671950237696) itemoff 8923 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1671950237696
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 92 key (FIRST_CHUNK_TREE CHUNK_ITEM 1673023979520) itemoff 8843 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1673023979520
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 93 key (FIRST_CHUNK_TREE CHUNK_ITEM 1674097721344) itemoff 8763 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1674097721344
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 94 key (FIRST_CHUNK_TREE CHUNK_ITEM 1676245204992) itemoff 8683 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1676245204992
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 95 key (FIRST_CHUNK_TREE CHUNK_ITEM 1677318946816) itemoff 8603 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1677318946816
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 96 key (FIRST_CHUNK_TREE CHUNK_ITEM 1678392688640) itemoff 8523 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1678392688640
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 97 key (FIRST_CHUNK_TREE CHUNK_ITEM 1680540172288) itemoff 8443 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1680540172288
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 98 key (FIRST_CHUNK_TREE CHUNK_ITEM 1688056365056) itemoff 8363 itemsize 80
		length 33554432 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1688056365056
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 99 key (FIRST_CHUNK_TREE CHUNK_ITEM 1695572557824) itemoff 8283 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1695572557824
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 100 key (FIRST_CHUNK_TREE CHUNK_ITEM 1709531201536) itemoff 8203 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1709531201536
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 101 key (FIRST_CHUNK_TREE CHUNK_ITEM 1717047394304) itemoff 8123 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1717047394304
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 102 key (FIRST_CHUNK_TREE CHUNK_ITEM 1719194877952) itemoff 8043 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1719194877952
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 103 key (FIRST_CHUNK_TREE CHUNK_ITEM 1726711070720) itemoff 7963 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1726711070720
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 104 key (FIRST_CHUNK_TREE CHUNK_ITEM 1738522230784) itemoff 7883 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1738522230784
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 105 key (FIRST_CHUNK_TREE CHUNK_ITEM 1740669714432) itemoff 7803 itemsize 80
		length 978206720 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1740669714432
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 106 key (FIRST_CHUNK_TREE CHUNK_ITEM 1749259649024) itemoff 7723 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1749259649024
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 107 key (FIRST_CHUNK_TREE CHUNK_ITEM 1751407132672) itemoff 7643 itemsize 80
		length 977698816 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1751407132672
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 108 key (FIRST_CHUNK_TREE CHUNK_ITEM 1755702099968) itemoff 7563 itemsize 80
		length 978841600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1755702099968
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 109 key (FIRST_CHUNK_TREE CHUNK_ITEM 1762144550912) itemoff 7483 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1762144550912
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 110 key (FIRST_CHUNK_TREE CHUNK_ITEM 1772881969152) itemoff 7403 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1772881969152
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 111 key (FIRST_CHUNK_TREE CHUNK_ITEM 1773955710976) itemoff 7323 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1773955710976
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 112 key (FIRST_CHUNK_TREE CHUNK_ITEM 1775029452800) itemoff 7243 itemsize 80
		length 973209600 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1775029452800
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 113 key (FIRST_CHUNK_TREE CHUNK_ITEM 1816905404416) itemoff 7163 itemsize 80
		length 33554432 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1816905404416
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
leaf 2514418171904 items 83 free space 7568 generation 4414 owner CHUNK_TREE
leaf 2514418171904 flags 0x1(WRITTEN) backref revision 1
fs uuid 1e4fb969-7384-48fb-9377-6fb8817279ee
chunk uuid 1fda341a-b7ba-4e6a-bab6-994325244ad2
	item 0 key (FIRST_CHUNK_TREE CHUNK_ITEM 2001530257408) itemoff 16203 itemsize 80
		length 8388608 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 55910203392
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 1 key (FIRST_CHUNK_TREE CHUNK_ITEM 2001538646016) itemoff 16123 itemsize 80
		length 8388608 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 55918592000
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 2 key (FIRST_CHUNK_TREE CHUNK_ITEM 2002176180224) itemoff 16043 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1380060139520
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 3 key (FIRST_CHUNK_TREE CHUNK_ITEM 2003249922048) itemoff 15963 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1381133881344
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 4 key (FIRST_CHUNK_TREE CHUNK_ITEM 2004323663872) itemoff 15883 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1382207623168
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 5 key (FIRST_CHUNK_TREE CHUNK_ITEM 2005397405696) itemoff 15803 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1383281364992
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 6 key (FIRST_CHUNK_TREE CHUNK_ITEM 2006471147520) itemoff 15723 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1384355106816
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 7 key (FIRST_CHUNK_TREE CHUNK_ITEM 2007544889344) itemoff 15643 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1385428848640
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 8 key (FIRST_CHUNK_TREE CHUNK_ITEM 2008618631168) itemoff 15563 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1386502590464
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 9 key (FIRST_CHUNK_TREE CHUNK_ITEM 2009692372992) itemoff 15483 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1387576332288
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 10 key (FIRST_CHUNK_TREE CHUNK_ITEM 2010766114816) itemoff 15403 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1388650074112
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 11 key (FIRST_CHUNK_TREE CHUNK_ITEM 2011839856640) itemoff 15323 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1389723815936
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 12 key (FIRST_CHUNK_TREE CHUNK_ITEM 2012913598464) itemoff 15243 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1390797557760
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 13 key (FIRST_CHUNK_TREE CHUNK_ITEM 2013987340288) itemoff 15163 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1391871299584
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 14 key (FIRST_CHUNK_TREE CHUNK_ITEM 2015061082112) itemoff 15083 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1392945041408
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 15 key (FIRST_CHUNK_TREE CHUNK_ITEM 2016134823936) itemoff 15003 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1394018783232
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 16 key (FIRST_CHUNK_TREE CHUNK_ITEM 2017208565760) itemoff 14923 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1395092525056
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 17 key (FIRST_CHUNK_TREE CHUNK_ITEM 2018282307584) itemoff 14843 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1396166266880
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 18 key (FIRST_CHUNK_TREE CHUNK_ITEM 2019356049408) itemoff 14763 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1397240008704
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 19 key (FIRST_CHUNK_TREE CHUNK_ITEM 2020429791232) itemoff 14683 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1398313750528
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 20 key (FIRST_CHUNK_TREE CHUNK_ITEM 2021503533056) itemoff 14603 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1399387492352
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 21 key (FIRST_CHUNK_TREE CHUNK_ITEM 2022577274880) itemoff 14523 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1400461234176
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 22 key (FIRST_CHUNK_TREE CHUNK_ITEM 2023651016704) itemoff 14443 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1401534976000
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 23 key (FIRST_CHUNK_TREE CHUNK_ITEM 2024724758528) itemoff 14363 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1402608717824
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 24 key (FIRST_CHUNK_TREE CHUNK_ITEM 2025798500352) itemoff 14283 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1403682459648
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 25 key (FIRST_CHUNK_TREE CHUNK_ITEM 2026872242176) itemoff 14203 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1404756201472
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 26 key (FIRST_CHUNK_TREE CHUNK_ITEM 2027945984000) itemoff 14123 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1405829943296
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 27 key (FIRST_CHUNK_TREE CHUNK_ITEM 2029019725824) itemoff 14043 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1406903685120
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 28 key (FIRST_CHUNK_TREE CHUNK_ITEM 2030093467648) itemoff 13963 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1407977426944
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 29 key (FIRST_CHUNK_TREE CHUNK_ITEM 2031167209472) itemoff 13883 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1409051168768
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 30 key (FIRST_CHUNK_TREE CHUNK_ITEM 2032240951296) itemoff 13803 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1410124910592
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 31 key (FIRST_CHUNK_TREE CHUNK_ITEM 2033314693120) itemoff 13723 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1411198652416
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 32 key (FIRST_CHUNK_TREE CHUNK_ITEM 2034388434944) itemoff 13643 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1412272394240
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 33 key (FIRST_CHUNK_TREE CHUNK_ITEM 2035462176768) itemoff 13563 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1413346136064
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 34 key (FIRST_CHUNK_TREE CHUNK_ITEM 2036535918592) itemoff 13483 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1414419877888
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 35 key (FIRST_CHUNK_TREE CHUNK_ITEM 2037609660416) itemoff 13403 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1415493619712
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 36 key (FIRST_CHUNK_TREE CHUNK_ITEM 2038683402240) itemoff 13323 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1416567361536
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 37 key (FIRST_CHUNK_TREE CHUNK_ITEM 2039757144064) itemoff 13243 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1417641103360
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 38 key (FIRST_CHUNK_TREE CHUNK_ITEM 2040830885888) itemoff 13163 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1418714845184
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 39 key (FIRST_CHUNK_TREE CHUNK_ITEM 2041904627712) itemoff 13083 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1419788587008
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 40 key (FIRST_CHUNK_TREE CHUNK_ITEM 2042978369536) itemoff 13003 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1420862328832
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 41 key (FIRST_CHUNK_TREE CHUNK_ITEM 2044052111360) itemoff 12923 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1421936070656
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 42 key (FIRST_CHUNK_TREE CHUNK_ITEM 2045125853184) itemoff 12843 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1423009812480
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 43 key (FIRST_CHUNK_TREE CHUNK_ITEM 2046199595008) itemoff 12763 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1424083554304
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 44 key (FIRST_CHUNK_TREE CHUNK_ITEM 2047273336832) itemoff 12683 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1425157296128
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 45 key (FIRST_CHUNK_TREE CHUNK_ITEM 2048347078656) itemoff 12603 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1426231037952
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 46 key (FIRST_CHUNK_TREE CHUNK_ITEM 2049420820480) itemoff 12523 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1427304779776
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 47 key (FIRST_CHUNK_TREE CHUNK_ITEM 2050494562304) itemoff 12443 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1428378521600
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 48 key (FIRST_CHUNK_TREE CHUNK_ITEM 2051568304128) itemoff 12363 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1429452263424
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 49 key (FIRST_CHUNK_TREE CHUNK_ITEM 2052642045952) itemoff 12283 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1430526005248
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 50 key (FIRST_CHUNK_TREE CHUNK_ITEM 2053715787776) itemoff 12203 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1431599747072
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 51 key (FIRST_CHUNK_TREE CHUNK_ITEM 2054789529600) itemoff 12123 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1432673488896
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 52 key (FIRST_CHUNK_TREE CHUNK_ITEM 2055863271424) itemoff 12043 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1433747230720
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 53 key (FIRST_CHUNK_TREE CHUNK_ITEM 2056937013248) itemoff 11963 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1434820972544
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 54 key (FIRST_CHUNK_TREE CHUNK_ITEM 2058010755072) itemoff 11883 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1435894714368
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 55 key (FIRST_CHUNK_TREE CHUNK_ITEM 2059084496896) itemoff 11803 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1436968456192
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 56 key (FIRST_CHUNK_TREE CHUNK_ITEM 2060158238720) itemoff 11723 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1438042198016
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 57 key (FIRST_CHUNK_TREE CHUNK_ITEM 2061231980544) itemoff 11643 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1439115939840
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 58 key (FIRST_CHUNK_TREE CHUNK_ITEM 2062305722368) itemoff 11563 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1440189681664
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 59 key (FIRST_CHUNK_TREE CHUNK_ITEM 2063379464192) itemoff 11483 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1441263423488
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 60 key (FIRST_CHUNK_TREE CHUNK_ITEM 2064453206016) itemoff 11403 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1442337165312
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 61 key (FIRST_CHUNK_TREE CHUNK_ITEM 2065526947840) itemoff 11323 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1443410907136
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 62 key (FIRST_CHUNK_TREE CHUNK_ITEM 2066600689664) itemoff 11243 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1444484648960
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 63 key (FIRST_CHUNK_TREE CHUNK_ITEM 2067674431488) itemoff 11163 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1445558390784
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 64 key (FIRST_CHUNK_TREE CHUNK_ITEM 2068748173312) itemoff 11083 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1446632132608
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 65 key (FIRST_CHUNK_TREE CHUNK_ITEM 2069821915136) itemoff 11003 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1447705874432
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 66 key (FIRST_CHUNK_TREE CHUNK_ITEM 2070895656960) itemoff 10923 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1448779616256
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 67 key (FIRST_CHUNK_TREE CHUNK_ITEM 2071969398784) itemoff 10843 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1449853358080
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 68 key (FIRST_CHUNK_TREE CHUNK_ITEM 2073043140608) itemoff 10763 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1450927099904
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 69 key (FIRST_CHUNK_TREE CHUNK_ITEM 2074116882432) itemoff 10683 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1452000841728
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 70 key (FIRST_CHUNK_TREE CHUNK_ITEM 2075190624256) itemoff 10603 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1453074583552
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 71 key (FIRST_CHUNK_TREE CHUNK_ITEM 2076264366080) itemoff 10523 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1454148325376
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 72 key (FIRST_CHUNK_TREE CHUNK_ITEM 2077338107904) itemoff 10443 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1455222067200
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 73 key (FIRST_CHUNK_TREE CHUNK_ITEM 2078411849728) itemoff 10363 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1456295809024
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 74 key (FIRST_CHUNK_TREE CHUNK_ITEM 2079485591552) itemoff 10283 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1457369550848
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 75 key (FIRST_CHUNK_TREE CHUNK_ITEM 2080559333376) itemoff 10203 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1458443292672
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 76 key (FIRST_CHUNK_TREE CHUNK_ITEM 2081633075200) itemoff 10123 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1459517034496
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 77 key (FIRST_CHUNK_TREE CHUNK_ITEM 2082706817024) itemoff 10043 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1460590776320
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 78 key (FIRST_CHUNK_TREE CHUNK_ITEM 2083780558848) itemoff 9963 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1461664518144
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 79 key (FIRST_CHUNK_TREE CHUNK_ITEM 2084854300672) itemoff 9883 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1462738259968
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 80 key (FIRST_CHUNK_TREE CHUNK_ITEM 2085928042496) itemoff 9803 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1463812001792
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 81 key (FIRST_CHUNK_TREE CHUNK_ITEM 2087001784320) itemoff 9723 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1464885743616
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 82 key (FIRST_CHUNK_TREE CHUNK_ITEM 2088075526144) itemoff 9643 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1465959485440
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
leaf 2514418155520 items 155 free space 8 generation 4414 owner CHUNK_TREE
leaf 2514418155520 flags 0x1(WRITTEN) backref revision 1
fs uuid 1e4fb969-7384-48fb-9377-6fb8817279ee
chunk uuid 1fda341a-b7ba-4e6a-bab6-994325244ad2
	item 0 key (FIRST_CHUNK_TREE CHUNK_ITEM 2089149267968) itemoff 16203 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1467033227264
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 1 key (FIRST_CHUNK_TREE CHUNK_ITEM 2090223009792) itemoff 16123 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1468106969088
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 2 key (FIRST_CHUNK_TREE CHUNK_ITEM 2091296751616) itemoff 16043 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1469180710912
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 3 key (FIRST_CHUNK_TREE CHUNK_ITEM 2092370493440) itemoff 15963 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1470254452736
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 4 key (FIRST_CHUNK_TREE CHUNK_ITEM 2093444235264) itemoff 15883 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1471328194560
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 5 key (FIRST_CHUNK_TREE CHUNK_ITEM 2094517977088) itemoff 15803 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1472401936384
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 6 key (FIRST_CHUNK_TREE CHUNK_ITEM 2095591718912) itemoff 15723 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1473475678208
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 7 key (FIRST_CHUNK_TREE CHUNK_ITEM 2096665460736) itemoff 15643 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1474549420032
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 8 key (FIRST_CHUNK_TREE CHUNK_ITEM 2097739202560) itemoff 15563 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1475623161856
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 9 key (FIRST_CHUNK_TREE CHUNK_ITEM 2098812944384) itemoff 15483 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1476696903680
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 10 key (FIRST_CHUNK_TREE CHUNK_ITEM 2099886686208) itemoff 15403 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1477770645504
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 11 key (FIRST_CHUNK_TREE CHUNK_ITEM 2100960428032) itemoff 15323 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1478844387328
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 12 key (FIRST_CHUNK_TREE CHUNK_ITEM 2102034169856) itemoff 15243 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1479918129152
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 13 key (FIRST_CHUNK_TREE CHUNK_ITEM 2103107911680) itemoff 15163 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1480991870976
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 14 key (FIRST_CHUNK_TREE CHUNK_ITEM 2104181653504) itemoff 15083 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1482065612800
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 15 key (FIRST_CHUNK_TREE CHUNK_ITEM 2105255395328) itemoff 15003 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1483139354624
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 16 key (FIRST_CHUNK_TREE CHUNK_ITEM 2106329137152) itemoff 14923 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1484213096448
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 17 key (FIRST_CHUNK_TREE CHUNK_ITEM 2107402878976) itemoff 14843 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1485286838272
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 18 key (FIRST_CHUNK_TREE CHUNK_ITEM 2108476620800) itemoff 14763 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1486360580096
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 19 key (FIRST_CHUNK_TREE CHUNK_ITEM 2109550362624) itemoff 14683 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1487434321920
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 20 key (FIRST_CHUNK_TREE CHUNK_ITEM 2110624104448) itemoff 14603 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1488508063744
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 21 key (FIRST_CHUNK_TREE CHUNK_ITEM 2111697846272) itemoff 14523 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1489581805568
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 22 key (FIRST_CHUNK_TREE CHUNK_ITEM 2112771588096) itemoff 14443 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1490655547392
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 23 key (FIRST_CHUNK_TREE CHUNK_ITEM 2113845329920) itemoff 14363 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1491729289216
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 24 key (FIRST_CHUNK_TREE CHUNK_ITEM 2114919071744) itemoff 14283 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1503406325760
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 25 key (FIRST_CHUNK_TREE CHUNK_ITEM 2115992813568) itemoff 14203 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1504480067584
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 26 key (FIRST_CHUNK_TREE CHUNK_ITEM 2117066555392) itemoff 14123 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1505553809408
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 27 key (FIRST_CHUNK_TREE CHUNK_ITEM 2118140297216) itemoff 14043 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1506627551232
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 28 key (FIRST_CHUNK_TREE CHUNK_ITEM 2119214039040) itemoff 13963 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1507701293056
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 29 key (FIRST_CHUNK_TREE CHUNK_ITEM 2120287780864) itemoff 13883 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1508775034880
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 30 key (FIRST_CHUNK_TREE CHUNK_ITEM 2121361522688) itemoff 13803 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1509848776704
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 31 key (FIRST_CHUNK_TREE CHUNK_ITEM 2122435264512) itemoff 13723 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1510922518528
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 32 key (FIRST_CHUNK_TREE CHUNK_ITEM 2123509006336) itemoff 13643 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1511996260352
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 33 key (FIRST_CHUNK_TREE CHUNK_ITEM 2124582748160) itemoff 13563 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1513070002176
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 34 key (FIRST_CHUNK_TREE CHUNK_ITEM 2125656489984) itemoff 13483 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1514143744000
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 35 key (FIRST_CHUNK_TREE CHUNK_ITEM 2126730231808) itemoff 13403 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1515217485824
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 36 key (FIRST_CHUNK_TREE CHUNK_ITEM 2127803973632) itemoff 13323 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1516291227648
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 37 key (FIRST_CHUNK_TREE CHUNK_ITEM 2128877715456) itemoff 13243 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1517364969472
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 38 key (FIRST_CHUNK_TREE CHUNK_ITEM 2129951457280) itemoff 13163 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1518438711296
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 39 key (FIRST_CHUNK_TREE CHUNK_ITEM 2131025199104) itemoff 13083 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1519512453120
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 40 key (FIRST_CHUNK_TREE CHUNK_ITEM 2132098940928) itemoff 13003 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1520586194944
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 41 key (FIRST_CHUNK_TREE CHUNK_ITEM 2133172682752) itemoff 12923 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1521659936768
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 42 key (FIRST_CHUNK_TREE CHUNK_ITEM 2134246424576) itemoff 12843 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1522733678592
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 43 key (FIRST_CHUNK_TREE CHUNK_ITEM 2135320166400) itemoff 12763 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1523807420416
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 44 key (FIRST_CHUNK_TREE CHUNK_ITEM 2136393908224) itemoff 12683 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1524881162240
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 45 key (FIRST_CHUNK_TREE CHUNK_ITEM 2137467650048) itemoff 12603 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1525954904064
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 46 key (FIRST_CHUNK_TREE CHUNK_ITEM 2138541391872) itemoff 12523 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1527028645888
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 47 key (FIRST_CHUNK_TREE CHUNK_ITEM 2139615133696) itemoff 12443 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1528102387712
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 48 key (FIRST_CHUNK_TREE CHUNK_ITEM 2140688875520) itemoff 12363 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1529176129536
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 49 key (FIRST_CHUNK_TREE CHUNK_ITEM 2141762617344) itemoff 12283 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1530249871360
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 50 key (FIRST_CHUNK_TREE CHUNK_ITEM 2142836359168) itemoff 12203 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1531323613184
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 51 key (FIRST_CHUNK_TREE CHUNK_ITEM 2143910100992) itemoff 12123 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1532397355008
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 52 key (FIRST_CHUNK_TREE CHUNK_ITEM 2144983842816) itemoff 12043 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1533471096832
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 53 key (FIRST_CHUNK_TREE CHUNK_ITEM 2146057584640) itemoff 11963 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1534544838656
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 54 key (FIRST_CHUNK_TREE CHUNK_ITEM 2147131326464) itemoff 11883 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1535618580480
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 55 key (FIRST_CHUNK_TREE CHUNK_ITEM 2148205068288) itemoff 11803 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1536692322304
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 56 key (FIRST_CHUNK_TREE CHUNK_ITEM 2149278810112) itemoff 11723 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1537766064128
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 57 key (FIRST_CHUNK_TREE CHUNK_ITEM 2150352551936) itemoff 11643 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1538839805952
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 58 key (FIRST_CHUNK_TREE CHUNK_ITEM 2151426293760) itemoff 11563 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1539913547776
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 59 key (FIRST_CHUNK_TREE CHUNK_ITEM 2152500035584) itemoff 11483 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1540987289600
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 60 key (FIRST_CHUNK_TREE CHUNK_ITEM 2153573777408) itemoff 11403 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1542061031424
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 61 key (FIRST_CHUNK_TREE CHUNK_ITEM 2154647519232) itemoff 11323 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1543134773248
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 62 key (FIRST_CHUNK_TREE CHUNK_ITEM 2155721261056) itemoff 11243 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1544208515072
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 63 key (FIRST_CHUNK_TREE CHUNK_ITEM 2156795002880) itemoff 11163 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1545282256896
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 64 key (FIRST_CHUNK_TREE CHUNK_ITEM 2157868744704) itemoff 11083 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1546355998720
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 65 key (FIRST_CHUNK_TREE CHUNK_ITEM 2158942486528) itemoff 11003 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1547429740544
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 66 key (FIRST_CHUNK_TREE CHUNK_ITEM 2160016228352) itemoff 10923 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1548503482368
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 67 key (FIRST_CHUNK_TREE CHUNK_ITEM 2161089970176) itemoff 10843 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1549577224192
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 68 key (FIRST_CHUNK_TREE CHUNK_ITEM 2162163712000) itemoff 10763 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1550650966016
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 69 key (FIRST_CHUNK_TREE CHUNK_ITEM 2163237453824) itemoff 10683 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1551724707840
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 70 key (FIRST_CHUNK_TREE CHUNK_ITEM 2164311195648) itemoff 10603 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1552798449664
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 71 key (FIRST_CHUNK_TREE CHUNK_ITEM 2165384937472) itemoff 10523 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1553872191488
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 72 key (FIRST_CHUNK_TREE CHUNK_ITEM 2166458679296) itemoff 10443 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1554945933312
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 73 key (FIRST_CHUNK_TREE CHUNK_ITEM 2167532421120) itemoff 10363 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1556019675136
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 74 key (FIRST_CHUNK_TREE CHUNK_ITEM 2168606162944) itemoff 10283 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1557093416960
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 75 key (FIRST_CHUNK_TREE CHUNK_ITEM 2169679904768) itemoff 10203 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1558167158784
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 76 key (FIRST_CHUNK_TREE CHUNK_ITEM 2170753646592) itemoff 10123 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1559240900608
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 77 key (FIRST_CHUNK_TREE CHUNK_ITEM 2171827388416) itemoff 10043 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1560314642432
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 78 key (FIRST_CHUNK_TREE CHUNK_ITEM 2172901130240) itemoff 9963 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1561388384256
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 79 key (FIRST_CHUNK_TREE CHUNK_ITEM 2173974872064) itemoff 9883 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1603862138880
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 80 key (FIRST_CHUNK_TREE CHUNK_ITEM 2175048613888) itemoff 9803 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1604935880704
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 81 key (FIRST_CHUNK_TREE CHUNK_ITEM 2176122355712) itemoff 9723 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1606009622528
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 82 key (FIRST_CHUNK_TREE CHUNK_ITEM 2177196097536) itemoff 9643 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1607083364352
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 83 key (FIRST_CHUNK_TREE CHUNK_ITEM 2178269839360) itemoff 9563 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1608157106176
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 84 key (FIRST_CHUNK_TREE CHUNK_ITEM 2179343581184) itemoff 9483 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1609230848000
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 85 key (FIRST_CHUNK_TREE CHUNK_ITEM 2180417323008) itemoff 9403 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1610304589824
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 86 key (FIRST_CHUNK_TREE CHUNK_ITEM 2181491064832) itemoff 9323 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1611378331648
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 87 key (FIRST_CHUNK_TREE CHUNK_ITEM 2182564806656) itemoff 9243 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1612452073472
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 88 key (FIRST_CHUNK_TREE CHUNK_ITEM 2183638548480) itemoff 9163 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1613525815296
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 89 key (FIRST_CHUNK_TREE CHUNK_ITEM 2184712290304) itemoff 9083 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1614599557120
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 90 key (FIRST_CHUNK_TREE CHUNK_ITEM 2185786032128) itemoff 9003 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1615673298944
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 91 key (FIRST_CHUNK_TREE CHUNK_ITEM 2186859773952) itemoff 8923 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1616747040768
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 92 key (FIRST_CHUNK_TREE CHUNK_ITEM 2187933515776) itemoff 8843 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1617820782592
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 93 key (FIRST_CHUNK_TREE CHUNK_ITEM 2189007257600) itemoff 8763 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1618894524416
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 94 key (FIRST_CHUNK_TREE CHUNK_ITEM 2190080999424) itemoff 8683 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1781640069120
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 95 key (FIRST_CHUNK_TREE CHUNK_ITEM 2191154741248) itemoff 8603 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1782713810944
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 96 key (FIRST_CHUNK_TREE CHUNK_ITEM 2192228483072) itemoff 8523 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1783787552768
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 97 key (FIRST_CHUNK_TREE CHUNK_ITEM 2193302224896) itemoff 8443 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1696545767424
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 98 key (FIRST_CHUNK_TREE CHUNK_ITEM 2194375966720) itemoff 8363 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1697619509248
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 99 key (FIRST_CHUNK_TREE CHUNK_ITEM 2195449708544) itemoff 8283 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1698693251072
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 100 key (FIRST_CHUNK_TREE CHUNK_ITEM 2196523450368) itemoff 8203 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1727784812544
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 101 key (FIRST_CHUNK_TREE CHUNK_ITEM 2197597192192) itemoff 8123 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1784861294592
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 102 key (FIRST_CHUNK_TREE CHUNK_ITEM 2198670934016) itemoff 8043 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1785935036416
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 103 key (FIRST_CHUNK_TREE CHUNK_ITEM 2199744675840) itemoff 7963 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1787008778240
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 104 key (FIRST_CHUNK_TREE CHUNK_ITEM 2200818417664) itemoff 7883 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1788082520064
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 105 key (FIRST_CHUNK_TREE CHUNK_ITEM 2201892159488) itemoff 7803 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1789156261888
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 106 key (FIRST_CHUNK_TREE CHUNK_ITEM 2202965901312) itemoff 7723 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1790230003712
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 107 key (FIRST_CHUNK_TREE CHUNK_ITEM 2204039643136) itemoff 7643 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1791303745536
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 108 key (FIRST_CHUNK_TREE CHUNK_ITEM 2205113384960) itemoff 7563 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1792377487360
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 109 key (FIRST_CHUNK_TREE CHUNK_ITEM 2206187126784) itemoff 7483 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1793451229184
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 110 key (FIRST_CHUNK_TREE CHUNK_ITEM 2207260868608) itemoff 7403 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1794524971008
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 111 key (FIRST_CHUNK_TREE CHUNK_ITEM 2208334610432) itemoff 7323 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1795598712832
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 112 key (FIRST_CHUNK_TREE CHUNK_ITEM 2209408352256) itemoff 7243 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1796672454656
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 113 key (FIRST_CHUNK_TREE CHUNK_ITEM 2210482094080) itemoff 7163 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1797746196480
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 114 key (FIRST_CHUNK_TREE CHUNK_ITEM 2211555835904) itemoff 7083 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1798819938304
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 115 key (FIRST_CHUNK_TREE CHUNK_ITEM 2212629577728) itemoff 7003 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1799893680128
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 116 key (FIRST_CHUNK_TREE CHUNK_ITEM 2213703319552) itemoff 6923 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1800967421952
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 117 key (FIRST_CHUNK_TREE CHUNK_ITEM 2214777061376) itemoff 6843 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1802041163776
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 118 key (FIRST_CHUNK_TREE CHUNK_ITEM 2215850803200) itemoff 6763 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1803114905600
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 119 key (FIRST_CHUNK_TREE CHUNK_ITEM 2216924545024) itemoff 6683 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1804188647424
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 120 key (FIRST_CHUNK_TREE CHUNK_ITEM 2217998286848) itemoff 6603 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1805262389248
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 121 key (FIRST_CHUNK_TREE CHUNK_ITEM 2219072028672) itemoff 6523 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1816938958848
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 122 key (FIRST_CHUNK_TREE CHUNK_ITEM 2220145770496) itemoff 6443 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1818012700672
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 123 key (FIRST_CHUNK_TREE CHUNK_ITEM 2221219512320) itemoff 6363 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1819086442496
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 124 key (FIRST_CHUNK_TREE CHUNK_ITEM 2222293254144) itemoff 6283 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1820160184320
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 125 key (FIRST_CHUNK_TREE CHUNK_ITEM 2223366995968) itemoff 6203 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1821233926144
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 126 key (FIRST_CHUNK_TREE CHUNK_ITEM 2224440737792) itemoff 6123 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1822307667968
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 127 key (FIRST_CHUNK_TREE CHUNK_ITEM 2225514479616) itemoff 6043 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1823381409792
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 128 key (FIRST_CHUNK_TREE CHUNK_ITEM 2226588221440) itemoff 5963 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1824455151616
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 129 key (FIRST_CHUNK_TREE CHUNK_ITEM 2227661963264) itemoff 5883 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1825528893440
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 130 key (FIRST_CHUNK_TREE CHUNK_ITEM 2228735705088) itemoff 5803 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1826602635264
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 131 key (FIRST_CHUNK_TREE CHUNK_ITEM 2229809446912) itemoff 5723 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1827676377088
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 132 key (FIRST_CHUNK_TREE CHUNK_ITEM 2230883188736) itemoff 5643 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1828750118912
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 133 key (FIRST_CHUNK_TREE CHUNK_ITEM 2231956930560) itemoff 5563 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1829823860736
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 134 key (FIRST_CHUNK_TREE CHUNK_ITEM 2233030672384) itemoff 5483 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1830897602560
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 135 key (FIRST_CHUNK_TREE CHUNK_ITEM 2234104414208) itemoff 5403 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1831971344384
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 136 key (FIRST_CHUNK_TREE CHUNK_ITEM 2235178156032) itemoff 5323 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1833045086208
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 137 key (FIRST_CHUNK_TREE CHUNK_ITEM 2236251897856) itemoff 5243 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1834118828032
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 138 key (FIRST_CHUNK_TREE CHUNK_ITEM 2237325639680) itemoff 5163 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1835192569856
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 139 key (FIRST_CHUNK_TREE CHUNK_ITEM 2238399381504) itemoff 5083 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1836266311680
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 140 key (FIRST_CHUNK_TREE CHUNK_ITEM 2239473123328) itemoff 5003 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1837340053504
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 141 key (FIRST_CHUNK_TREE CHUNK_ITEM 2240546865152) itemoff 4923 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1838413795328
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 142 key (FIRST_CHUNK_TREE CHUNK_ITEM 2241620606976) itemoff 4843 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1839487537152
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 143 key (FIRST_CHUNK_TREE CHUNK_ITEM 2242694348800) itemoff 4763 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1840561278976
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 144 key (FIRST_CHUNK_TREE CHUNK_ITEM 2243768090624) itemoff 4683 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1841635020800
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 145 key (FIRST_CHUNK_TREE CHUNK_ITEM 2244841832448) itemoff 4603 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1842708762624
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 146 key (FIRST_CHUNK_TREE CHUNK_ITEM 2245915574272) itemoff 4523 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1843782504448
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 147 key (FIRST_CHUNK_TREE CHUNK_ITEM 2246989316096) itemoff 4443 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1844856246272
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 148 key (FIRST_CHUNK_TREE CHUNK_ITEM 2248063057920) itemoff 4363 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1845929988096
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 149 key (FIRST_CHUNK_TREE CHUNK_ITEM 2249136799744) itemoff 4283 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1847003729920
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 150 key (FIRST_CHUNK_TREE CHUNK_ITEM 2250210541568) itemoff 4203 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1848077471744
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 151 key (FIRST_CHUNK_TREE CHUNK_ITEM 2251284283392) itemoff 4123 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1849151213568
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 152 key (FIRST_CHUNK_TREE CHUNK_ITEM 2252358025216) itemoff 4043 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1850224955392
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 153 key (FIRST_CHUNK_TREE CHUNK_ITEM 2253431767040) itemoff 3963 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1851298697216
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 154 key (FIRST_CHUNK_TREE CHUNK_ITEM 2254505508864) itemoff 3883 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1852372439040
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
leaf 2514418728960 items 152 free space 323 generation 4598 owner CHUNK_TREE
leaf 2514418728960 flags 0x1(WRITTEN) backref revision 1
fs uuid 1e4fb969-7384-48fb-9377-6fb8817279ee
chunk uuid 1fda341a-b7ba-4e6a-bab6-994325244ad2
	item 0 key (FIRST_CHUNK_TREE CHUNK_ITEM 2255579250688) itemoff 16203 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1853446180864
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 1 key (FIRST_CHUNK_TREE CHUNK_ITEM 2256652992512) itemoff 16123 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1854519922688
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 2 key (FIRST_CHUNK_TREE CHUNK_ITEM 2257726734336) itemoff 16043 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1855593664512
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 3 key (FIRST_CHUNK_TREE CHUNK_ITEM 2258800476160) itemoff 15963 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1856667406336
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 4 key (FIRST_CHUNK_TREE CHUNK_ITEM 2259874217984) itemoff 15883 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1857741148160
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 5 key (FIRST_CHUNK_TREE CHUNK_ITEM 2260947959808) itemoff 15803 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1858814889984
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 6 key (FIRST_CHUNK_TREE CHUNK_ITEM 2262021701632) itemoff 15723 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1859888631808
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 7 key (FIRST_CHUNK_TREE CHUNK_ITEM 2263095443456) itemoff 15643 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1860962373632
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 8 key (FIRST_CHUNK_TREE CHUNK_ITEM 2264169185280) itemoff 15563 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1862036115456
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 9 key (FIRST_CHUNK_TREE CHUNK_ITEM 2265242927104) itemoff 15483 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1863109857280
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 10 key (FIRST_CHUNK_TREE CHUNK_ITEM 2266316668928) itemoff 15403 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1864183599104
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 11 key (FIRST_CHUNK_TREE CHUNK_ITEM 2267390410752) itemoff 15323 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1865257340928
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 12 key (FIRST_CHUNK_TREE CHUNK_ITEM 2268464152576) itemoff 15243 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1866331082752
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 13 key (FIRST_CHUNK_TREE CHUNK_ITEM 2269537894400) itemoff 15163 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1867404824576
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 14 key (FIRST_CHUNK_TREE CHUNK_ITEM 2270611636224) itemoff 15083 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1868478566400
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 15 key (FIRST_CHUNK_TREE CHUNK_ITEM 2271685378048) itemoff 15003 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1869552308224
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 16 key (FIRST_CHUNK_TREE CHUNK_ITEM 2272759119872) itemoff 14923 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1870626050048
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 17 key (FIRST_CHUNK_TREE CHUNK_ITEM 2273832861696) itemoff 14843 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1871699791872
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 18 key (FIRST_CHUNK_TREE CHUNK_ITEM 2274906603520) itemoff 14763 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1872773533696
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 19 key (FIRST_CHUNK_TREE CHUNK_ITEM 2275980345344) itemoff 14683 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1873847275520
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 20 key (FIRST_CHUNK_TREE CHUNK_ITEM 2277054087168) itemoff 14603 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1874921017344
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 21 key (FIRST_CHUNK_TREE CHUNK_ITEM 2278127828992) itemoff 14523 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1875994759168
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 22 key (FIRST_CHUNK_TREE CHUNK_ITEM 2279201570816) itemoff 14443 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1877068500992
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 23 key (FIRST_CHUNK_TREE CHUNK_ITEM 2280275312640) itemoff 14363 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1878142242816
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 24 key (FIRST_CHUNK_TREE CHUNK_ITEM 2281349054464) itemoff 14283 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1879215984640
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 25 key (FIRST_CHUNK_TREE CHUNK_ITEM 2282422796288) itemoff 14203 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1880289726464
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 26 key (FIRST_CHUNK_TREE CHUNK_ITEM 2283496538112) itemoff 14123 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1881363468288
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 27 key (FIRST_CHUNK_TREE CHUNK_ITEM 2284570279936) itemoff 14043 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1882437210112
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 28 key (FIRST_CHUNK_TREE CHUNK_ITEM 2285644021760) itemoff 13963 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1883510951936
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 29 key (FIRST_CHUNK_TREE CHUNK_ITEM 2286717763584) itemoff 13883 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1884584693760
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 30 key (FIRST_CHUNK_TREE CHUNK_ITEM 2287791505408) itemoff 13803 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1885658435584
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 31 key (FIRST_CHUNK_TREE CHUNK_ITEM 2288865247232) itemoff 13723 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1886732177408
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 32 key (FIRST_CHUNK_TREE CHUNK_ITEM 2289938989056) itemoff 13643 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1887805919232
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 33 key (FIRST_CHUNK_TREE CHUNK_ITEM 2291012730880) itemoff 13563 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1888879661056
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 34 key (FIRST_CHUNK_TREE CHUNK_ITEM 2292086472704) itemoff 13483 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1889953402880
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 35 key (FIRST_CHUNK_TREE CHUNK_ITEM 2293160214528) itemoff 13403 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1891027144704
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 36 key (FIRST_CHUNK_TREE CHUNK_ITEM 2294233956352) itemoff 13323 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1892100886528
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 37 key (FIRST_CHUNK_TREE CHUNK_ITEM 2295307698176) itemoff 13243 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1893174628352
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 38 key (FIRST_CHUNK_TREE CHUNK_ITEM 2296381440000) itemoff 13163 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1894248370176
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 39 key (FIRST_CHUNK_TREE CHUNK_ITEM 2297455181824) itemoff 13083 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1895322112000
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 40 key (FIRST_CHUNK_TREE CHUNK_ITEM 2298528923648) itemoff 13003 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1896395853824
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 41 key (FIRST_CHUNK_TREE CHUNK_ITEM 2299602665472) itemoff 12923 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1897469595648
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 42 key (FIRST_CHUNK_TREE CHUNK_ITEM 2300676407296) itemoff 12843 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1898543337472
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 43 key (FIRST_CHUNK_TREE CHUNK_ITEM 2301750149120) itemoff 12763 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1899617079296
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 44 key (FIRST_CHUNK_TREE CHUNK_ITEM 2302823890944) itemoff 12683 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1900690821120
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 45 key (FIRST_CHUNK_TREE CHUNK_ITEM 2303897632768) itemoff 12603 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1901764562944
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 46 key (FIRST_CHUNK_TREE CHUNK_ITEM 2304971374592) itemoff 12523 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1902838304768
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 47 key (FIRST_CHUNK_TREE CHUNK_ITEM 2306045116416) itemoff 12443 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1903912046592
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 48 key (FIRST_CHUNK_TREE CHUNK_ITEM 2307118858240) itemoff 12363 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1904985788416
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 49 key (FIRST_CHUNK_TREE CHUNK_ITEM 2308192600064) itemoff 12283 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1906059530240
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 50 key (FIRST_CHUNK_TREE CHUNK_ITEM 2309266341888) itemoff 12203 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1907133272064
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 51 key (FIRST_CHUNK_TREE CHUNK_ITEM 2310340083712) itemoff 12123 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1908207013888
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 52 key (FIRST_CHUNK_TREE CHUNK_ITEM 2311413825536) itemoff 12043 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1909280755712
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 53 key (FIRST_CHUNK_TREE CHUNK_ITEM 2312487567360) itemoff 11963 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1910354497536
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 54 key (FIRST_CHUNK_TREE CHUNK_ITEM 2313561309184) itemoff 11883 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1911428239360
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 55 key (FIRST_CHUNK_TREE CHUNK_ITEM 2314635051008) itemoff 11803 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1912501981184
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 56 key (FIRST_CHUNK_TREE CHUNK_ITEM 2315708792832) itemoff 11723 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1913575723008
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 57 key (FIRST_CHUNK_TREE CHUNK_ITEM 2316782534656) itemoff 11643 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1914649464832
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 58 key (FIRST_CHUNK_TREE CHUNK_ITEM 2317856276480) itemoff 11563 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1915723206656
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 59 key (FIRST_CHUNK_TREE CHUNK_ITEM 2318930018304) itemoff 11483 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1916796948480
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 60 key (FIRST_CHUNK_TREE CHUNK_ITEM 2320003760128) itemoff 11403 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1917870690304
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 61 key (FIRST_CHUNK_TREE CHUNK_ITEM 2321077501952) itemoff 11323 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1918944432128
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 62 key (FIRST_CHUNK_TREE CHUNK_ITEM 2322151243776) itemoff 11243 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1920018173952
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 63 key (FIRST_CHUNK_TREE CHUNK_ITEM 2323224985600) itemoff 11163 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1921091915776
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 64 key (FIRST_CHUNK_TREE CHUNK_ITEM 2324298727424) itemoff 11083 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1922165657600
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 65 key (FIRST_CHUNK_TREE CHUNK_ITEM 2325372469248) itemoff 11003 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1923239399424
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 66 key (FIRST_CHUNK_TREE CHUNK_ITEM 2326446211072) itemoff 10923 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1924313141248
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 67 key (FIRST_CHUNK_TREE CHUNK_ITEM 2327519952896) itemoff 10843 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1925386883072
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 68 key (FIRST_CHUNK_TREE CHUNK_ITEM 2328593694720) itemoff 10763 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1926460624896
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 69 key (FIRST_CHUNK_TREE CHUNK_ITEM 2329667436544) itemoff 10683 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1927534366720
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 70 key (FIRST_CHUNK_TREE CHUNK_ITEM 2330741178368) itemoff 10603 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1928608108544
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 71 key (FIRST_CHUNK_TREE CHUNK_ITEM 2331814920192) itemoff 10523 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1929681850368
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 72 key (FIRST_CHUNK_TREE CHUNK_ITEM 2336109887488) itemoff 10443 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1933976817664
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 73 key (FIRST_CHUNK_TREE CHUNK_ITEM 2337183629312) itemoff 10363 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1935050559488
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 74 key (FIRST_CHUNK_TREE CHUNK_ITEM 2338257371136) itemoff 10283 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1936124301312
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 75 key (FIRST_CHUNK_TREE CHUNK_ITEM 2339331112960) itemoff 10203 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1937198043136
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 76 key (FIRST_CHUNK_TREE CHUNK_ITEM 2340404854784) itemoff 10123 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1938271784960
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 77 key (FIRST_CHUNK_TREE CHUNK_ITEM 2341478596608) itemoff 10043 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1939345526784
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 78 key (FIRST_CHUNK_TREE CHUNK_ITEM 2342552338432) itemoff 9963 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1940419268608
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 79 key (FIRST_CHUNK_TREE CHUNK_ITEM 2343626080256) itemoff 9883 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1941493010432
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 80 key (FIRST_CHUNK_TREE CHUNK_ITEM 2344699822080) itemoff 9803 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 573512351744
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 81 key (FIRST_CHUNK_TREE CHUNK_ITEM 2345773563904) itemoff 9723 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 574586093568
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 82 key (FIRST_CHUNK_TREE CHUNK_ITEM 2346847305728) itemoff 9643 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 575659835392
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 83 key (FIRST_CHUNK_TREE CHUNK_ITEM 2347921047552) itemoff 9563 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1942566752256
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 84 key (FIRST_CHUNK_TREE CHUNK_ITEM 2348994789376) itemoff 9483 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1943640494080
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 85 key (FIRST_CHUNK_TREE CHUNK_ITEM 2350068531200) itemoff 9403 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1944714235904
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 86 key (FIRST_CHUNK_TREE CHUNK_ITEM 2351142273024) itemoff 9323 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1945787977728
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 87 key (FIRST_CHUNK_TREE CHUNK_ITEM 2352216014848) itemoff 9243 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1946861719552
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 88 key (FIRST_CHUNK_TREE CHUNK_ITEM 2353289756672) itemoff 9163 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1947935461376
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 89 key (FIRST_CHUNK_TREE CHUNK_ITEM 2354363498496) itemoff 9083 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1949009203200
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 90 key (FIRST_CHUNK_TREE CHUNK_ITEM 2355437240320) itemoff 9003 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1950082945024
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 91 key (FIRST_CHUNK_TREE CHUNK_ITEM 2356510982144) itemoff 8923 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1951156686848
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 92 key (FIRST_CHUNK_TREE CHUNK_ITEM 2357584723968) itemoff 8843 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1952230428672
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 93 key (FIRST_CHUNK_TREE CHUNK_ITEM 2358658465792) itemoff 8763 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1953304170496
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 94 key (FIRST_CHUNK_TREE CHUNK_ITEM 2359732207616) itemoff 8683 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1954377912320
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 95 key (FIRST_CHUNK_TREE CHUNK_ITEM 2360805949440) itemoff 8603 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1955451654144
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 96 key (FIRST_CHUNK_TREE CHUNK_ITEM 2361879691264) itemoff 8523 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1956525395968
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 97 key (FIRST_CHUNK_TREE CHUNK_ITEM 2362953433088) itemoff 8443 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1957599137792
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 98 key (FIRST_CHUNK_TREE CHUNK_ITEM 2364027174912) itemoff 8363 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1958672879616
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 99 key (FIRST_CHUNK_TREE CHUNK_ITEM 2365100916736) itemoff 8283 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1959746621440
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 100 key (FIRST_CHUNK_TREE CHUNK_ITEM 2366174658560) itemoff 8203 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1960820363264
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 101 key (FIRST_CHUNK_TREE CHUNK_ITEM 2367248400384) itemoff 8123 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1961894105088
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 102 key (FIRST_CHUNK_TREE CHUNK_ITEM 2368322142208) itemoff 8043 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1962967846912
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 103 key (FIRST_CHUNK_TREE CHUNK_ITEM 2369395884032) itemoff 7963 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1964041588736
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 104 key (FIRST_CHUNK_TREE CHUNK_ITEM 2370469625856) itemoff 7883 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1965115330560
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 105 key (FIRST_CHUNK_TREE CHUNK_ITEM 2371543367680) itemoff 7803 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1966189072384
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 106 key (FIRST_CHUNK_TREE CHUNK_ITEM 2372617109504) itemoff 7723 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1967262814208
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 107 key (FIRST_CHUNK_TREE CHUNK_ITEM 2373690851328) itemoff 7643 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1968336556032
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 108 key (FIRST_CHUNK_TREE CHUNK_ITEM 2374764593152) itemoff 7563 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1969410297856
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 109 key (FIRST_CHUNK_TREE CHUNK_ITEM 2375838334976) itemoff 7483 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1970484039680
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 110 key (FIRST_CHUNK_TREE CHUNK_ITEM 2376912076800) itemoff 7403 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1971557781504
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 111 key (FIRST_CHUNK_TREE CHUNK_ITEM 2377985818624) itemoff 7323 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1972631523328
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 112 key (FIRST_CHUNK_TREE CHUNK_ITEM 2379059560448) itemoff 7243 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1973705265152
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 113 key (FIRST_CHUNK_TREE CHUNK_ITEM 2380133302272) itemoff 7163 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1974779006976
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 114 key (FIRST_CHUNK_TREE CHUNK_ITEM 2381207044096) itemoff 7083 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1975852748800
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 115 key (FIRST_CHUNK_TREE CHUNK_ITEM 2382280785920) itemoff 7003 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1976926490624
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 116 key (FIRST_CHUNK_TREE CHUNK_ITEM 2383354527744) itemoff 6923 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1978000232448
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 117 key (FIRST_CHUNK_TREE CHUNK_ITEM 2384428269568) itemoff 6843 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1979073974272
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 118 key (FIRST_CHUNK_TREE CHUNK_ITEM 2385502011392) itemoff 6763 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1980147716096
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 119 key (FIRST_CHUNK_TREE CHUNK_ITEM 2386575753216) itemoff 6683 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1981221457920
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 120 key (FIRST_CHUNK_TREE CHUNK_ITEM 2387649495040) itemoff 6603 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1982295199744
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 121 key (FIRST_CHUNK_TREE CHUNK_ITEM 2388723236864) itemoff 6523 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1983368941568
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 122 key (FIRST_CHUNK_TREE CHUNK_ITEM 2389796978688) itemoff 6443 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1984442683392
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 123 key (FIRST_CHUNK_TREE CHUNK_ITEM 2390870720512) itemoff 6363 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1985516425216
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 124 key (FIRST_CHUNK_TREE CHUNK_ITEM 2391944462336) itemoff 6283 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1986590167040
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 125 key (FIRST_CHUNK_TREE CHUNK_ITEM 2393018204160) itemoff 6203 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1987663908864
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 126 key (FIRST_CHUNK_TREE CHUNK_ITEM 2394091945984) itemoff 6123 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1988737650688
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 127 key (FIRST_CHUNK_TREE CHUNK_ITEM 2395165687808) itemoff 6043 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1562462126080
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 128 key (FIRST_CHUNK_TREE CHUNK_ITEM 2396239429632) itemoff 5963 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1989811392512
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 129 key (FIRST_CHUNK_TREE CHUNK_ITEM 2397313171456) itemoff 5883 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1492803031040
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 130 key (FIRST_CHUNK_TREE CHUNK_ITEM 2398386913280) itemoff 5803 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1806336131072
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 131 key (FIRST_CHUNK_TREE CHUNK_ITEM 2399460655104) itemoff 5723 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1619968266240
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 132 key (FIRST_CHUNK_TREE CHUNK_ITEM 2400534396928) itemoff 5643 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1699766992896
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 133 key (FIRST_CHUNK_TREE CHUNK_ITEM 2401608138752) itemoff 5563 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1763117760512
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 134 key (FIRST_CHUNK_TREE CHUNK_ITEM 2402681880576) itemoff 5483 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 166564200448
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 135 key (FIRST_CHUNK_TREE CHUNK_ITEM 2403755622400) itemoff 5403 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 576733577216
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 136 key (FIRST_CHUNK_TREE CHUNK_ITEM 2404829364224) itemoff 5323 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1728858554368
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 137 key (FIRST_CHUNK_TREE CHUNK_ITEM 2405903106048) itemoff 5243 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1563535867904
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 138 key (FIRST_CHUNK_TREE CHUNK_ITEM 2406976847872) itemoff 5163 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1990885134336
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 139 key (FIRST_CHUNK_TREE CHUNK_ITEM 2408050589696) itemoff 5083 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1493876772864
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 140 key (FIRST_CHUNK_TREE CHUNK_ITEM 2409124331520) itemoff 5003 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1807409872896
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 141 key (FIRST_CHUNK_TREE CHUNK_ITEM 2410198073344) itemoff 4923 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1621042008064
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 142 key (FIRST_CHUNK_TREE CHUNK_ITEM 2411271815168) itemoff 4843 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1700840734720
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 143 key (FIRST_CHUNK_TREE CHUNK_ITEM 2412345556992) itemoff 4763 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1764191502336
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 144 key (FIRST_CHUNK_TREE CHUNK_ITEM 2413419298816) itemoff 4683 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 167637942272
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 145 key (FIRST_CHUNK_TREE CHUNK_ITEM 2414493040640) itemoff 4603 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 577807319040
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 146 key (FIRST_CHUNK_TREE CHUNK_ITEM 2415566782464) itemoff 4523 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1639603765248
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 147 key (FIRST_CHUNK_TREE CHUNK_ITEM 2416640524288) itemoff 4443 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1729932296192
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 148 key (FIRST_CHUNK_TREE CHUNK_ITEM 2417714266112) itemoff 4363 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1564609609728
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 149 key (FIRST_CHUNK_TREE CHUNK_ITEM 2418788007936) itemoff 4283 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1991958876160
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 150 key (FIRST_CHUNK_TREE CHUNK_ITEM 2419861749760) itemoff 4203 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1494950514688
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 151 key (FIRST_CHUNK_TREE CHUNK_ITEM 2420935491584) itemoff 4123 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1808483614720
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
leaf 2533779079168 items 100 free space 5623 generation 34532 owner CHUNK_TREE
leaf 2533779079168 flags 0x1(WRITTEN) backref revision 1
fs uuid 1e4fb969-7384-48fb-9377-6fb8817279ee
chunk uuid 1fda341a-b7ba-4e6a-bab6-994325244ad2
	item 0 key (FIRST_CHUNK_TREE CHUNK_ITEM 2422009233408) itemoff 16203 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1310670938112
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 1 key (FIRST_CHUNK_TREE CHUNK_ITEM 2423082975232) itemoff 16123 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1622115749888
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 2 key (FIRST_CHUNK_TREE CHUNK_ITEM 2424156717056) itemoff 16043 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1701914476544
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 3 key (FIRST_CHUNK_TREE CHUNK_ITEM 2425230458880) itemoff 15963 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1765265244160
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 4 key (FIRST_CHUNK_TREE CHUNK_ITEM 2426304200704) itemoff 15883 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1741647921152
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 5 key (FIRST_CHUNK_TREE CHUNK_ITEM 2427377942528) itemoff 15803 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 168711684096
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 6 key (FIRST_CHUNK_TREE CHUNK_ITEM 2428451684352) itemoff 15723 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 344805343232
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 7 key (FIRST_CHUNK_TREE CHUNK_ITEM 2429525426176) itemoff 15643 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 503719133184
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 8 key (FIRST_CHUNK_TREE CHUNK_ITEM 2430599168000) itemoff 15563 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 578881060864
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 9 key (FIRST_CHUNK_TREE CHUNK_ITEM 2431672909824) itemoff 15483 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 463895601152
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 10 key (FIRST_CHUNK_TREE CHUNK_ITEM 2432746651648) itemoff 15403 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 464969342976
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 11 key (FIRST_CHUNK_TREE CHUNK_ITEM 2433820393472) itemoff 15323 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 466043084800
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 12 key (FIRST_CHUNK_TREE CHUNK_ITEM 2434894135296) itemoff 15243 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 467116826624
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 13 key (FIRST_CHUNK_TREE CHUNK_ITEM 2435967877120) itemoff 15163 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 468190568448
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 14 key (FIRST_CHUNK_TREE CHUNK_ITEM 2437041618944) itemoff 15083 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 469264310272
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 15 key (FIRST_CHUNK_TREE CHUNK_ITEM 2438115360768) itemoff 15003 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 470338052096
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 16 key (FIRST_CHUNK_TREE CHUNK_ITEM 2439189102592) itemoff 14923 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 471411793920
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 17 key (FIRST_CHUNK_TREE CHUNK_ITEM 2440262844416) itemoff 14843 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 987976695808
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 18 key (FIRST_CHUNK_TREE CHUNK_ITEM 2441336586240) itemoff 14763 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 472485535744
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 19 key (FIRST_CHUNK_TREE CHUNK_ITEM 2442410328064) itemoff 14683 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 989050437632
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 20 key (FIRST_CHUNK_TREE CHUNK_ITEM 2443484069888) itemoff 14603 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 489223618560
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 21 key (FIRST_CHUNK_TREE CHUNK_ITEM 2444557811712) itemoff 14523 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 473559277568
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 22 key (FIRST_CHUNK_TREE CHUNK_ITEM 2445631553536) itemoff 14443 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 990124179456
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 23 key (FIRST_CHUNK_TREE CHUNK_ITEM 2446705295360) itemoff 14363 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1267149570048
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 24 key (FIRST_CHUNK_TREE CHUNK_ITEM 2447779037184) itemoff 14283 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1631013830656
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 25 key (FIRST_CHUNK_TREE CHUNK_ITEM 2448852779008) itemoff 14203 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1640677507072
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 26 key (FIRST_CHUNK_TREE CHUNK_ITEM 2449926520832) itemoff 14123 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1731006038016
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 27 key (FIRST_CHUNK_TREE CHUNK_ITEM 2451000262656) itemoff 14043 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1565683351552
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 28 key (FIRST_CHUNK_TREE CHUNK_ITEM 2452074004480) itemoff 13963 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1688089919488
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 29 key (FIRST_CHUNK_TREE CHUNK_ITEM 2453147746304) itemoff 13883 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1993032617984
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 30 key (FIRST_CHUNK_TREE CHUNK_ITEM 2454221488128) itemoff 13803 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1496024256512
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 31 key (FIRST_CHUNK_TREE CHUNK_ITEM 2455295229952) itemoff 13723 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1809557356544
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 32 key (FIRST_CHUNK_TREE CHUNK_ITEM 2456368971776) itemoff 13643 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 967770796032
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 33 key (FIRST_CHUNK_TREE CHUNK_ITEM 2457442713600) itemoff 13563 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 490297360384
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 34 key (FIRST_CHUNK_TREE CHUNK_ITEM 2458516455424) itemoff 13483 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1311744679936
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 35 key (FIRST_CHUNK_TREE CHUNK_ITEM 2459590197248) itemoff 13403 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 481206239232
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 36 key (FIRST_CHUNK_TREE CHUNK_ITEM 2460663939072) itemoff 13323 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1623189491712
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 37 key (FIRST_CHUNK_TREE CHUNK_ITEM 2461737680896) itemoff 13243 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1579474223104
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 38 key (FIRST_CHUNK_TREE CHUNK_ITEM 2462811422720) itemoff 13163 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 85933031424
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 39 key (FIRST_CHUNK_TREE CHUNK_ITEM 2463885164544) itemoff 13083 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 453152735232
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 40 key (FIRST_CHUNK_TREE CHUNK_ITEM 2464958906368) itemoff 13003 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 588444205056
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 41 key (FIRST_CHUNK_TREE CHUNK_ITEM 2466032648192) itemoff 12923 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1681513381888
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 42 key (FIRST_CHUNK_TREE CHUNK_ITEM 2467106390016) itemoff 12843 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1702988218368
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 43 key (FIRST_CHUNK_TREE CHUNK_ITEM 2468180131840) itemoff 12763 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 652868714496
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 44 key (FIRST_CHUNK_TREE CHUNK_ITEM 2469253873664) itemoff 12683 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 482279981056
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 45 key (FIRST_CHUNK_TREE CHUNK_ITEM 2470327615488) itemoff 12603 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 653942456320
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 46 key (FIRST_CHUNK_TREE CHUNK_ITEM 2471401357312) itemoff 12523 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1720168087552
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 47 key (FIRST_CHUNK_TREE CHUNK_ITEM 2472475099136) itemoff 12443 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 991197921280
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 48 key (FIRST_CHUNK_TREE CHUNK_ITEM 2473548840960) itemoff 12363 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 992271663104
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 49 key (FIRST_CHUNK_TREE CHUNK_ITEM 2474622582784) itemoff 12283 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 993345404928
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 50 key (FIRST_CHUNK_TREE CHUNK_ITEM 2475696324608) itemoff 12203 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 169785425920
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 51 key (FIRST_CHUNK_TREE CHUNK_ITEM 2476770066432) itemoff 12123 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 755947929600
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 52 key (FIRST_CHUNK_TREE CHUNK_ITEM 2477843808256) itemoff 12043 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1766338985984
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 53 key (FIRST_CHUNK_TREE CHUNK_ITEM 2478917550080) itemoff 11963 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 474633019392
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 54 key (FIRST_CHUNK_TREE CHUNK_ITEM 2479991291904) itemoff 11883 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1742721662976
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 55 key (FIRST_CHUNK_TREE CHUNK_ITEM 2481065033728) itemoff 11803 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 170859167744
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 56 key (FIRST_CHUNK_TREE CHUNK_ITEM 2482138775552) itemoff 11723 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 345879085056
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 57 key (FIRST_CHUNK_TREE CHUNK_ITEM 2483212517376) itemoff 11643 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 361985212416
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 58 key (FIRST_CHUNK_TREE CHUNK_ITEM 2484286259200) itemoff 11563 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 504792875008
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 59 key (FIRST_CHUNK_TREE CHUNK_ITEM 2485360001024) itemoff 11483 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 579954802688
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 60 key (FIRST_CHUNK_TREE CHUNK_ITEM 2486433742848) itemoff 11403 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 980460503040
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 61 key (FIRST_CHUNK_TREE CHUNK_ITEM 2487507484672) itemoff 11323 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1246748475392
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 62 key (FIRST_CHUNK_TREE CHUNK_ITEM 2488581226496) itemoff 11243 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1268223311872
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 63 key (FIRST_CHUNK_TREE CHUNK_ITEM 2489654968320) itemoff 11163 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1632087572480
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 64 key (FIRST_CHUNK_TREE CHUNK_ITEM 2490728710144) itemoff 11083 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1641751248896
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 65 key (FIRST_CHUNK_TREE CHUNK_ITEM 2491802451968) itemoff 11003 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 778597040128
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 66 key (FIRST_CHUNK_TREE CHUNK_ITEM 2492876193792) itemoff 10923 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 779670781952
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 67 key (FIRST_CHUNK_TREE CHUNK_ITEM 2493949935616) itemoff 10843 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 643305570304
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 68 key (FIRST_CHUNK_TREE CHUNK_ITEM 2495023677440) itemoff 10763 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 780744523776
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 69 key (FIRST_CHUNK_TREE CHUNK_ITEM 2496097419264) itemoff 10683 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 393123725312
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 70 key (FIRST_CHUNK_TREE CHUNK_ITEM 2497171161088) itemoff 10603 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 644379312128
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 71 key (FIRST_CHUNK_TREE CHUNK_ITEM 2498244902912) itemoff 10523 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 781818265600
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 72 key (FIRST_CHUNK_TREE CHUNK_ITEM 2499318644736) itemoff 10443 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 189012246528
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 73 key (FIRST_CHUNK_TREE CHUNK_ITEM 2500392386560) itemoff 10363 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 782892007424
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 74 key (FIRST_CHUNK_TREE CHUNK_ITEM 2501466128384) itemoff 10283 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 1624263233536
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 75 key (FIRST_CHUNK_TREE CHUNK_ITEM 2502539870208) itemoff 10203 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 190085988352
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 76 key (FIRST_CHUNK_TREE CHUNK_ITEM 2503613612032) itemoff 10123 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 454226477056
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 77 key (FIRST_CHUNK_TREE CHUNK_ITEM 2504687353856) itemoff 10043 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 520899002368
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 78 key (FIRST_CHUNK_TREE CHUNK_ITEM 2505761095680) itemoff 9963 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 631494410240
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 79 key (FIRST_CHUNK_TREE CHUNK_ITEM 2513344397312) itemoff 9851 itemsize 112
		length 1073741824 owner 2 stripe_len 65536 type METADATA|DUP
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 2 sub_stripes 1
			stripe 0 devid 1 offset 67108864
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
			stripe 1 devid 1 offset 1140850688
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 80 key (FIRST_CHUNK_TREE CHUNK_ITEM 2514418139136) itemoff 9739 itemsize 112
		length 33554432 owner 2 stripe_len 65536 type SYSTEM|DUP
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 2 sub_stripes 1
			stripe 0 devid 1 offset 2214744064
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
			stripe 1 devid 1 offset 2248298496
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 81 key (FIRST_CHUNK_TREE CHUNK_ITEM 2514451693568) itemoff 9627 itemsize 112
		length 1073741824 owner 2 stripe_len 65536 type METADATA|DUP
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 2 sub_stripes 1
			stripe 0 devid 1 offset 12918587392
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
			stripe 1 devid 1 offset 13992329216
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 82 key (FIRST_CHUNK_TREE CHUNK_ITEM 2515525435392) itemoff 9515 itemsize 112
		length 1073741824 owner 2 stripe_len 65536 type METADATA|DUP
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 2 sub_stripes 1
			stripe 0 devid 1 offset 45130842112
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
			stripe 1 devid 1 offset 46204583936
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 83 key (FIRST_CHUNK_TREE CHUNK_ITEM 2516599177216) itemoff 9435 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 55926980608
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 84 key (FIRST_CHUNK_TREE CHUNK_ITEM 2517672919040) itemoff 9355 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 57000722432
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 85 key (FIRST_CHUNK_TREE CHUNK_ITEM 2518746660864) itemoff 9275 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 58074464256
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 86 key (FIRST_CHUNK_TREE CHUNK_ITEM 2519820402688) itemoff 9195 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 412350545920
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 87 key (FIRST_CHUNK_TREE CHUNK_ITEM 2520894144512) itemoff 9115 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 413424287744
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 88 key (FIRST_CHUNK_TREE CHUNK_ITEM 2521967886336) itemoff 9035 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 59148206080
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 89 key (FIRST_CHUNK_TREE CHUNK_ITEM 2523041628160) itemoff 8955 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 414498029568
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 90 key (FIRST_CHUNK_TREE CHUNK_ITEM 2524115369984) itemoff 8875 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 4328652800
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 91 key (FIRST_CHUNK_TREE CHUNK_ITEM 2525189111808) itemoff 8795 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 8623620096
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 92 key (FIRST_CHUNK_TREE CHUNK_ITEM 2526262853632) itemoff 8715 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 15066071040
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 93 key (FIRST_CHUNK_TREE CHUNK_ITEM 2527336595456) itemoff 8635 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 16139812864
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 94 key (FIRST_CHUNK_TREE CHUNK_ITEM 2528410337280) itemoff 8555 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 17213554688
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 95 key (FIRST_CHUNK_TREE CHUNK_ITEM 2529484079104) itemoff 8475 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 19361038336
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 96 key (FIRST_CHUNK_TREE CHUNK_ITEM 2530557820928) itemoff 8395 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 21508521984
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 97 key (FIRST_CHUNK_TREE CHUNK_ITEM 2531631562752) itemoff 8315 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 23656005632
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 98 key (FIRST_CHUNK_TREE CHUNK_ITEM 2532705304576) itemoff 8235 itemsize 80
		length 1073741824 owner 2 stripe_len 65536 type DATA|single
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 1 sub_stripes 1
			stripe 0 devid 1 offset 25803489280
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
	item 99 key (FIRST_CHUNK_TREE CHUNK_ITEM 2533779046400) itemoff 8123 itemsize 112
		length 33554432 owner 2 stripe_len 65536 type SYSTEM|DUP
		io_align 65536 io_width 65536 sector_size 4096
		num_stripes 2 sub_stripes 1
			stripe 0 devid 1 offset 2281852928
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e
			stripe 1 devid 1 offset 2315407360
			dev_uuid 005c787c-0e20-4dba-b3df-60730911315e

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: Scrub reports uncorrectable errors with correctable errors unrepaired, but all files are fine
  2024-01-13 19:22               ` Rongrong
@ 2024-01-13 21:08                 ` Qu Wenruo
  2024-01-13 21:40                   ` Qu Wenruo
  0 siblings, 1 reply; 14+ messages in thread
From: Qu Wenruo @ 2024-01-13 21:08 UTC (permalink / raw)
  To: Rongrong, Qu Wenruo, linux-btrfs


[-- Attachment #1.1.1: Type: text/plain, Size: 6058 bytes --]



On 2024/1/14 05:52, Rongrong wrote:
> On Fri, 2024-01-12 at 20:23 +1030, Qu Wenruo wrote:
>>
>> On 2024/1/12 18:08, Rongrong wrote:
>>> Hmm, let me recall...
>>> Seeing the mtime of files above, I just remembered that:
>>> The fs was converted from ext4 using btrfs-convert.
>>
>> This explains why the chunk bytenr are not aligned to 64K.
>>
>> If you dump the chunk tree (`btrfs ins dump-tree -t chunk`), you can see
>> all the chunks and their bytenr.
>>
>> I believe there are quite some chunks not aligned to 64K boundary.
>> Mind to provide the chunk tree dump of the fs (before the full balance).
> 
> Sure, in attachment.

Thanks a lot, the chunk dump explains why the problem happens.

With the initial KASAN backtrace:

[  171.700526] BTRFS critical (device vdb): unable to find chunk map for 
logical 2214744064 length 4096
[  171.700738] BTRFS critical (device vdb): unable to find chunk map for 
logical 2214744064 length 45056
[  171.700951] 
==================================================================
[  171.700962] BUG: KASAN: slab-use-after-free in 
__blk_rq_map_sg+0x18f/0x7c0

The first bytenr which hit not chunk map is 2214744064.

And checking the chunk map, it is out of the boundary of the data chunk:

	item 2 key (FIRST_CHUNK_TREE CHUNK_ITEM 2214658048) itemoff 16025 
itemsize 80
		length 86016 owner 2 stripe_len 65536 type DATA|single

This data chunk ends at bytenr 2214744064 (exclusive).

My believe is, the use-after-free is caused by the fact that 
btrfs_map_bio() code is doing extra split, and by somehow the error 
cleanup is not properly done.

Thus the direct cause is some bad error handling in btrfs bio layer, but 
the root cause is the new scrub code is not handling the unaligned part 
of the chunk.

The fix would come in 3 parts:

- Fix the btrfs bio layer error handling if part of the bio crossed
   chunk boundary

- Fix the scrub code to make sure the tailing part won't go beyond chunk
   boundary

- Fix btrfs-convert to create 64K aligned chunks
   It looks like the existing btrfs-convert is only creating chunks that
   starts at 64K aligned address, but the end can still be unaligned.

Meanwhile please keep a disk image, as we may need your help again in 
verify the fixes.

Thanks for all the detailed report!
Qu
> 
> [...]
> 
>>>
>>> Full balance eliminated all scrub errors.
>>>
>>> Usage before:
>>>
>>> Overall:
>>>       Device size:                   1.82TiB
>>>       Device allocated:              1.07TiB
>>>       Device unallocated:          766.84GiB
>>>       Device missing:                  0.00B
>>>       Device slack:                  3.50KiB
>>>       Used:                          1.03TiB
>>>       Free (estimated):            805.79GiB      (min: 422.37GiB)
>>>       Free (statfs, df):           766.83GiB
>>>       Data ratio:                       1.00
>>>       Metadata ratio:                   2.00
>>>       Global reserve:              512.00MiB      (used: 0.00B)
>>>       Multiple profiles:                  no
>>>
>>>               Data    Metadata System
>>> Id Path     single  DUP      DUP       Unallocated Total   Slack
>>> -- -------- ------- -------- --------- ----------- ------- -------
>>>    1 /dev/vdc 1.06TiB  6.00GiB 128.00MiB   766.84GiB 1.82TiB 3.50KiB
>>> -- -------- ------- -------- --------- ----------- ------- -------
>>>      Total    1.06TiB  3.00GiB  64.00MiB   766.84GiB 1.82TiB 3.50KiB
>>>      Used     1.03TiB  2.39GiB 208.00KiB
>>>
>>> Usage after:
>>>
>>> Overall:
>>>       Device size:                   1.82TiB
>>>       Device allocated:              1.04TiB
>>>       Device unallocated:          793.95GiB
>>>       Device missing:                  0.00B
>>>       Device slack:                  3.92MiB
>>>       Used:                          1.03TiB
>>>       Free (estimated):            795.85GiB      (min: 398.87GiB)
>>>       Free (statfs, df):           795.85GiB
>>>       Data ratio:                       1.00
>>>       Metadata ratio:                   2.00
>>>       Global reserve:              512.00MiB      (used: 0.00B)
>>>       Multiple profiles:                  no
>>>
>>>               Data    Metadata System
>>> Id Path     single  DUP      DUP       Unallocated Total   Slack
>>> -- -------- ------- -------- --------- ----------- ------- -------
>>>    1 /dev/vdb 1.03TiB 16.00GiB  64.00MiB   793.95GiB 1.82TiB 3.92MiB
>>> -- -------- ------- -------- --------- ----------- ------- -------
>>>      Total    1.03TiB  8.00GiB  32.00MiB   793.95GiB 1.82TiB 3.92MiB
>>>      Used     1.03TiB  2.61GiB 144.00KiB
>>>
>>> Metadata got even more puffiness, weird.
> 
> Still I am not sure why the full balance made the metadata block groups
> grow from 3GiB to 8GiB. AFAIK the only disadvantage of full balance is
> slowness.
> 
>>> See also the attached dmesg.
>>> Explanation of the kernel version (6.7.0-x64v3-dbg-dirty):
>>> KASAN enabled
>>> My previous scrub patch applied, which should have no side effect for
>>> what we are discussing about mainly in this thread.
>>> (And yes, while scrubbing the fs before balancing without the patch,
>>> KASAN discovered UAF — I am not sure if it is a vulnerability that
>>> shouldn't report in public. I will make another bug report this weekend
>>> if it is OK to do that)
>>
>> If you can provide any dying dmesg (thus better using the VM) of the
>> crash (no matter if it's KASAN enabled or not), as long as it has a
>> backtrace, it would help a lot.
> 
> https://lore.kernel.org/linux-btrfs/0a3faca1c52f7fff0ac35566c6453f81f57a3d16.camel@rong.moe
> 
> [...]
> 
> 
>> Meanwhile it's my turn to dig into the reason why unaligned data chunks
>> are causing problem.
>>
>> Thanks for all the detailed info and experiments, this would really help
>> us to improve btrfs.
> 
> Thanks for your advice on experimenting and helpful answers too :)
> 
> Thanks,
> Rongrong
> 
>> Thanks,
>> Qu

[-- Attachment #1.1.2: OpenPGP public key --]
[-- Type: application/pgp-keys, Size: 7027 bytes --]

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 495 bytes --]

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: Scrub reports uncorrectable errors with correctable errors unrepaired, but all files are fine
  2024-01-13 21:08                 ` Qu Wenruo
@ 2024-01-13 21:40                   ` Qu Wenruo
  2024-01-14  2:04                     ` Qu Wenruo
  0 siblings, 1 reply; 14+ messages in thread
From: Qu Wenruo @ 2024-01-13 21:40 UTC (permalink / raw)
  To: Qu Wenruo, Rongrong, linux-btrfs



On 2024/1/14 07:38, Qu Wenruo wrote:
>
>
> On 2024/1/14 05:52, Rongrong wrote:
>> On Fri, 2024-01-12 at 20:23 +1030, Qu Wenruo wrote:
>>>
>>> On 2024/1/12 18:08, Rongrong wrote:
>>>> Hmm, let me recall...
>>>> Seeing the mtime of files above, I just remembered that:
>>>> The fs was converted from ext4 using btrfs-convert.
>>>
>>> This explains why the chunk bytenr are not aligned to 64K.
>>>
>>> If you dump the chunk tree (`btrfs ins dump-tree -t chunk`), you can see
>>> all the chunks and their bytenr.
>>>
>>> I believe there are quite some chunks not aligned to 64K boundary.
>>> Mind to provide the chunk tree dump of the fs (before the full balance).
>>
>> Sure, in attachment.
>
> Thanks a lot, the chunk dump explains why the problem happens.
>
> With the initial KASAN backtrace:
>
> [  171.700526] BTRFS critical (device vdb): unable to find chunk map for
> logical 2214744064 length 4096
> [  171.700738] BTRFS critical (device vdb): unable to find chunk map for
> logical 2214744064 length 45056
> [  171.700951]
> ==================================================================
> [  171.700962] BUG: KASAN: slab-use-after-free in
> __blk_rq_map_sg+0x18f/0x7c0
>
> The first bytenr which hit not chunk map is 2214744064.
>
> And checking the chunk map, it is out of the boundary of the data chunk:
>
>      item 2 key (FIRST_CHUNK_TREE CHUNK_ITEM 2214658048) itemoff 16025
> itemsize 80
>          length 86016 owner 2 stripe_len 65536 type DATA|single
>
> This data chunk ends at bytenr 2214744064 (exclusive).
>
> My believe is, the use-after-free is caused by the fact that
> btrfs_map_bio() code is doing extra split, and by somehow the error
> cleanup is not properly done.
>
> Thus the direct cause is some bad error handling in btrfs bio layer, but
> the root cause is the new scrub code is not handling the unaligned part
> of the chunk.
>
> The fix would come in 3 parts:
>
> - Fix the btrfs bio layer error handling if part of the bio crossed
>    chunk boundary
>
> - Fix the scrub code to make sure the tailing part won't go beyond chunk
>    boundary

This would be merged into one patch.

It turns out that btrfs bio layer is doing its work correctly, it's our
endio function causing the problem.

Thus only one thing to fix, and the fix can be crafted pretty simply.

Thanks,
Qu

>
> - Fix btrfs-convert to create 64K aligned chunks
>    It looks like the existing btrfs-convert is only creating chunks that
>    starts at 64K aligned address, but the end can still be unaligned.
>
> Meanwhile please keep a disk image, as we may need your help again in
> verify the fixes.
>
> Thanks for all the detailed report!
> Qu

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: Scrub reports uncorrectable errors with correctable errors unrepaired, but all files are fine
  2024-01-13 21:40                   ` Qu Wenruo
@ 2024-01-14  2:04                     ` Qu Wenruo
  2024-01-15 10:03                       ` Rongrong
  0 siblings, 1 reply; 14+ messages in thread
From: Qu Wenruo @ 2024-01-14  2:04 UTC (permalink / raw)
  To: Qu Wenruo, Rongrong, linux-btrfs

Hi Rongrong,

Mind to test this branch against your image dump?
https://github.com/adam900710/linux/tree/scrub_beyond_chunk_fixes

For this branch, you do not need to apply to patch to disable blk plug.
As the crash is caused by bad scrub read endio (which can not handle any
unexpected bio split, thus leads to use-after-free).

Thanks,
Qu

On 2024/1/14 08:10, Qu Wenruo wrote:
>
>
> On 2024/1/14 07:38, Qu Wenruo wrote:
>>
>>
>> On 2024/1/14 05:52, Rongrong wrote:
>>> On Fri, 2024-01-12 at 20:23 +1030, Qu Wenruo wrote:
>>>>
>>>> On 2024/1/12 18:08, Rongrong wrote:
>>>>> Hmm, let me recall...
>>>>> Seeing the mtime of files above, I just remembered that:
>>>>> The fs was converted from ext4 using btrfs-convert.
>>>>
>>>> This explains why the chunk bytenr are not aligned to 64K.
>>>>
>>>> If you dump the chunk tree (`btrfs ins dump-tree -t chunk`), you can
>>>> see
>>>> all the chunks and their bytenr.
>>>>
>>>> I believe there are quite some chunks not aligned to 64K boundary.
>>>> Mind to provide the chunk tree dump of the fs (before the full
>>>> balance).
>>>
>>> Sure, in attachment.
>>
>> Thanks a lot, the chunk dump explains why the problem happens.
>>
>> With the initial KASAN backtrace:
>>
>> [  171.700526] BTRFS critical (device vdb): unable to find chunk map for
>> logical 2214744064 length 4096
>> [  171.700738] BTRFS critical (device vdb): unable to find chunk map for
>> logical 2214744064 length 45056
>> [  171.700951]
>> ==================================================================
>> [  171.700962] BUG: KASAN: slab-use-after-free in
>> __blk_rq_map_sg+0x18f/0x7c0
>>
>> The first bytenr which hit not chunk map is 2214744064.
>>
>> And checking the chunk map, it is out of the boundary of the data chunk:
>>
>>      item 2 key (FIRST_CHUNK_TREE CHUNK_ITEM 2214658048) itemoff 16025
>> itemsize 80
>>          length 86016 owner 2 stripe_len 65536 type DATA|single
>>
>> This data chunk ends at bytenr 2214744064 (exclusive).
>>
>> My believe is, the use-after-free is caused by the fact that
>> btrfs_map_bio() code is doing extra split, and by somehow the error
>> cleanup is not properly done.
>>
>> Thus the direct cause is some bad error handling in btrfs bio layer, but
>> the root cause is the new scrub code is not handling the unaligned part
>> of the chunk.
>>
>> The fix would come in 3 parts:
>>
>> - Fix the btrfs bio layer error handling if part of the bio crossed
>>    chunk boundary
>>
>> - Fix the scrub code to make sure the tailing part won't go beyond chunk
>>    boundary
>
> This would be merged into one patch.
>
> It turns out that btrfs bio layer is doing its work correctly, it's our
> endio function causing the problem.
>
> Thus only one thing to fix, and the fix can be crafted pretty simply.
>
> Thanks,
> Qu
>
>>
>> - Fix btrfs-convert to create 64K aligned chunks
>>    It looks like the existing btrfs-convert is only creating chunks that
>>    starts at 64K aligned address, but the end can still be unaligned.
>>
>> Meanwhile please keep a disk image, as we may need your help again in
>> verify the fixes.
>>
>> Thanks for all the detailed report!
>> Qu
>

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: Scrub reports uncorrectable errors with correctable errors unrepaired, but all files are fine
  2024-01-14  2:04                     ` Qu Wenruo
@ 2024-01-15 10:03                       ` Rongrong
  2024-01-15 10:16                         ` Qu Wenruo
  0 siblings, 1 reply; 14+ messages in thread
From: Rongrong @ 2024-01-15 10:03 UTC (permalink / raw)
  To: Qu Wenruo, Qu Wenruo, linux-btrfs

On Sun, 2024-01-14 at 12:34 +1030, Qu Wenruo wrote:
> Hi Rongrong,
> 
> Mind to test this branch against your image dump?
> https://github.com/adam900710/linux/tree/scrub_beyond_chunk_fixes
> 
> For this branch, you do not need to apply to patch to disable blk plug.
> As the crash is caused by bad scrub read endio (which can not handle any
> unexpected bio split, thus leads to use-after-free).

Scrub errors, oops, kernel bugs and slab-UAF all vanished without
disabling blk plug. Cheers!

   Scrub device /dev/vdb (id 1) done
   Scrub started:    Sun Jan 14 21:57:30 2024
   Status:           finished
   Duration:         0:43:59
           data_extents_scrubbed: 21561913
           tree_extents_scrubbed: 313432
           data_bytes_scrubbed: 1128612171776
           tree_bytes_scrubbed: 5135269888
           read_errors: 0
           csum_errors: 0
           verify_errors: 0
           no_csum: 0
           csum_discards: 0
           super_errors: 0
           malloc_errors: 0
           uncorrectable_errors: 0
           unverified_errors: 0
           corrected_errors: 0
           last_physical: 1994106359808

   [    0.000000] Linux version 6.7.0-rc5-x64v3-dbg+ (icenowy@edelgard) (gcc (GCC) 13.2.0 20230727 (AOSC OS, Core), GNU ld (GNU Binutils) 2.41) #13 SMP PREEMPT_DYNAMIC Sun Jan 14 17:42:36 CST 2024
   [    0.386759] kasan: KernelAddressSanitizer initialized
   [  311.624759] BTRFS info (device vdb): scrub: started on devid 1
   [ 2950.646598] BTRFS info (device vdb): scrub: finished on devid 1 with status: 0

So,
Tested-by: Rongrong <i@rong.moe>

> Thanks,
> Qu

On Sun, 2024-01-14 at 07:53 +1030, Qu Wenruo wrote:
[...]
> Although I believe the root cause is the same for the uncorrectable errors.
> 
> And IMHO, even with the patch, as long as you enable KASAN, KASAN would
> still warn about the use-after-free.

That was what I had believed until I ran scrub (which blk plug disabled
and KASAN enabled) twice on the original dump image without seeing any
KASAN warning, kernel bug, or oops.

It's confusing, but I think we can just look ahead as the
scrub_beyond_chunk_fixes branch has been proven to fix the bug :)

[...]
> Thanks,
> Qu

I have some questions that may or may not be off-topic:

- Is there any other disadvantage of having a converted btrfs with data
never balanced?

- Furthermore, the fact that the bug was introduced in v6.4-rc1 and
reported only after v6.7 had been released hints that a converted btrfs
with data never balanced has the risk of running into edge cases.
Should we recommend users to run a full balance (currently only
metadata balance is recommended) after the conversion, if they would
like to make their fs "more stable"?

Thanks again for all your detailed explanations, helpful suggestions
and the fix.

Thanks,
Rongrong

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: Scrub reports uncorrectable errors with correctable errors unrepaired, but all files are fine
  2024-01-15 10:03                       ` Rongrong
@ 2024-01-15 10:16                         ` Qu Wenruo
  0 siblings, 0 replies; 14+ messages in thread
From: Qu Wenruo @ 2024-01-15 10:16 UTC (permalink / raw)
  To: Rongrong, Qu Wenruo, linux-btrfs



On 2024/1/15 20:33, Rongrong wrote:
> On Sun, 2024-01-14 at 12:34 +1030, Qu Wenruo wrote:
>> Hi Rongrong,
>>
>> Mind to test this branch against your image dump?
>> https://github.com/adam900710/linux/tree/scrub_beyond_chunk_fixes
>>
>> For this branch, you do not need to apply to patch to disable blk plug.
>> As the crash is caused by bad scrub read endio (which can not handle any
>> unexpected bio split, thus leads to use-after-free).
>
> Scrub errors, oops, kernel bugs and slab-UAF all vanished without
> disabling blk plug. Cheers!
>
>     Scrub device /dev/vdb (id 1) done
>     Scrub started:    Sun Jan 14 21:57:30 2024
>     Status:           finished
>     Duration:         0:43:59
>             data_extents_scrubbed: 21561913
>             tree_extents_scrubbed: 313432
>             data_bytes_scrubbed: 1128612171776
>             tree_bytes_scrubbed: 5135269888
>             read_errors: 0
>             csum_errors: 0
>             verify_errors: 0
>             no_csum: 0
>             csum_discards: 0
>             super_errors: 0
>             malloc_errors: 0
>             uncorrectable_errors: 0
>             unverified_errors: 0
>             corrected_errors: 0
>             last_physical: 1994106359808
>
>     [    0.000000] Linux version 6.7.0-rc5-x64v3-dbg+ (icenowy@edelgard) (gcc (GCC) 13.2.0 20230727 (AOSC OS, Core), GNU ld (GNU Binutils) 2.41) #13 SMP PREEMPT_DYNAMIC Sun Jan 14 17:42:36 CST 2024
>     [    0.386759] kasan: KernelAddressSanitizer initialized
>     [  311.624759] BTRFS info (device vdb): scrub: started on devid 1
>     [ 2950.646598] BTRFS info (device vdb): scrub: finished on devid 1 with status: 0
>
> So,
> Tested-by: Rongrong <i@rong.moe>
>
>> Thanks,
>> Qu
>
> On Sun, 2024-01-14 at 07:53 +1030, Qu Wenruo wrote:
> [...]
>> Although I believe the root cause is the same for the uncorrectable errors.
>>
>> And IMHO, even with the patch, as long as you enable KASAN, KASAN would
>> still warn about the use-after-free.
>
> That was what I had believed until I ran scrub (which blk plug disabled
> and KASAN enabled) twice on the original dump image without seeing any
> KASAN warning, kernel bug, or oops.
>
> It's confusing, but I think we can just look ahead as the
> scrub_beyond_chunk_fixes branch has been proven to fix the bug :)
>
> [...]
>> Thanks,
>> Qu
>
> I have some questions that may or may not be off-topic:
>
> - Is there any other disadvantage of having a converted btrfs with data
> never balanced?

 From what I know, the ext*'s on-disk layout is not super btrfs
friendly, it would lead to a lot of fragmented data/metadata chunks.

The ext* uses block groups (or AG? I'm not sure about the naming though)
to store their metadata, part of the bg is reserved for their free inode
bitmaps, and uses some tree structure to record dir entries and file datas.

This means, for each bg (some features may create fully empty bg?),
there would always be some reserved space at the head of a bg (thus
those range must be a data chunk), thus leaving fragmented space usage.
Which may lead to bad metadata read performance (metadata has to be fit
into the unused space of each metadata chunk, but you can always easily
balance the metadata chunks)

Otherwise I didn't see much problem other than fragmented chunk space.

>
> - Furthermore, the fact that the bug was introduced in v6.4-rc1 and
> reported only after v6.7 had been released hints that a converted btrfs
> with data never balanced has the risk of running into edge cases.
> Should we recommend users to run a full balance (currently only
> metadata balance is recommended) after the conversion, if they would
> like to make their fs "more stable"?

It's my fault not fully looking into the corner cases, but the proper
way to fix is just as usual, fix the kernel and backport the fix.
Then fix the btrfs-convert properly, really nothing special.

I'd say such corner cases should always be taking into consideration, to
improve the robustness of btrfs, even if in the future we would never
hit such corner cases.

Personally speaking I would recommend to delete the image, do a full fs
defrag, and full fs balance.
But I don't have any evidence to prove my recommendation.

Thanks,
Qu
>
> Thanks again for all your detailed explanations, helpful suggestions
> and the fix.
>
> Thanks,
> Rongrong

^ permalink raw reply	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2024-01-15 10:17 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-01-09 18:06 Scrub reports uncorrectable errors with correctable errors unrepaired, but all files are fine Rongrong
2024-01-09 21:19 ` Qu Wenruo
2024-01-10  9:12   ` Rongrong
2024-01-10  9:40     ` Qu Wenruo
2024-01-10 13:51       ` Zhang Rongrong
2024-01-10 22:52         ` Qu Wenruo
2024-01-12  7:38           ` Rongrong
2024-01-12  9:53             ` Qu Wenruo
2024-01-13 19:22               ` Rongrong
2024-01-13 21:08                 ` Qu Wenruo
2024-01-13 21:40                   ` Qu Wenruo
2024-01-14  2:04                     ` Qu Wenruo
2024-01-15 10:03                       ` Rongrong
2024-01-15 10:16                         ` Qu Wenruo

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.