You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The pre-existing 'bin/btrfs' had a chunk which is shared with the new btrfs-convert, but in the meantime it has been overwritten with a new version, and so when ca_location_open() tries to validate that inode numbers have not changed, it fails.
#0 ca_location_open (l=0x493458) at ../src/calocation.c:583
#1 0x00436cdc in ca_decoder_node_reflink (d=0x46c838, n=0x46ca10) at ../src/cadecoder.c:3299
#2 0x004374d6 in ca_decoder_finalize_child (d=0x46c838, n=0x46c938, child=0x46ca10) at ../src/cadecoder.c:3539
#3 0x0043963e in ca_decoder_step_node (d=0x46c838, n=0x46c938) at ../src/cadecoder.c:4231
#4 0x00439e20 in ca_decoder_step (d=0x46c838) at ../src/cadecoder.c:4463
#5 0x0041ec1c in ca_sync_step_decode (s=0x46c3e0) at ../src/casync.c:2613
#6 0x0041fb1e in ca_sync_step (s=0x46c3e0) at ../src/casync.c:3209
#7 0x004079ec in verb_extract (argc=3, argv=0xbefff65c) at ../src/casync-tool.c:1705
#8 0x0040c9ee in dispatch_verb (argc=3, argv=0xbefff65c) at ../src/casync-tool.c:3971
#9 0x0040cbd0 in main (argc=5, argv=0xbefff654) at ../src/casync-tool.c:4008
Workaround seems to be to make a snapshot of the subvolume elsewhere, then casync --seed-output=no --seed=<snapshot> ..
The text was updated successfully, but these errors were encountered:
Hitting a problem reflinking on btrfs when using the implicit seeding of pre-existing files in the output directory.
In this example, the error is returned from calocation.c:583; open fds are:
The pre-existing 'bin/btrfs' had a chunk which is shared with the new btrfs-convert, but in the meantime it has been overwritten with a new version, and so when ca_location_open() tries to validate that inode numbers have not changed, it fails.
Workaround seems to be to make a snapshot of the subvolume elsewhere, then
casync --seed-output=no --seed=<snapshot>
..The text was updated successfully, but these errors were encountered: