'zfs restore' of an incremental backup of a zvol will
fail with "destination in use". You have to run the
undocumented 'zfs volfini' to make it work:
#zfs create -V 100m foo/vol
#zfs snapshot foo/vol@a
#zfs backup foo/vol@a | zfs restore -d foo/bar
#zfs snapshot foo/vol@b
#zfs backup -i foo/vol@a foo/vol@b | zfs restore -d foo/bar
cannot restore: destination is in use
#zfs volfini
#zfs backup -i foo/vol@a foo/vol@b | zfs restore -d foo/bar
|