Re: [PATCH] btrfs-progs: send: fix handling of multiple snapshots

2016-03-24 Thread David Sterba
On Thu, Mar 24, 2016 at 04:47:28PM +0900, Tsutomu Itoh wrote: > We cannot send multiple snapshots at once. > > [before fix] > # btrfs send ./snap[12] > snap12.data > At subvol ./snap1 > At subvol ./snap2 > ERROR: parent determination failed for 0 > # > > [after fix] > # btrfs send ./snap[12] >

[PATCH] btrfs-progs: send: fix handling of multiple snapshots

2016-03-24 Thread Tsutomu Itoh
We cannot send multiple snapshots at once. [before fix] # btrfs send ./snap[12] > snap12.data At subvol ./snap1 At subvol ./snap2 ERROR: parent determination failed for 0 # [after fix] # btrfs send ./snap[12] > snap12.data At subvol ./snap1 At subvol ./snap2 # Signed-off-by: Tsutomu Itoh