What I need to do is
A) delete a snapshot
B) wait until the snapshot is deleted and the reduction in space used is reflected
so first I do
btrfs subvolume delete -C /somebtrfsvol/somesnap
so then I want to
btrfs filesystem sync ?
If I do
btrfs filesystem sync /somebtrfsvol
no errors are thrown but I'm not sure it does what I want
if I do
btrfs filesystem sync /somebtrfsvol/somesnap
an error is produced
the manpage describes this feature thus
sync <path> [subvolid...]
but I cannot find any examples of just what is allowed for <path> and/or [subvolid...]
A) delete a snapshot
B) wait until the snapshot is deleted and the reduction in space used is reflected
so first I do
btrfs subvolume delete -C /somebtrfsvol/somesnap
so then I want to
btrfs filesystem sync ?
If I do
btrfs filesystem sync /somebtrfsvol
no errors are thrown but I'm not sure it does what I want
if I do
btrfs filesystem sync /somebtrfsvol/somesnap
an error is produced
the manpage describes this feature thus
sync <path> [subvolid...]
but I cannot find any examples of just what is allowed for <path> and/or [subvolid...]
Comment