From: Roman Bogorodskiy Date: Fri, 15 Aug 2014 08:18:27 +0000 (+0400) Subject: storage: zfs: implement download and upload X-Git-Tag: v1.2.8-rc1~27 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e3abf2a4cca7f1f6e90f5c46f7155d4fd446a150;p=thirdparty%2Flibvirt.git storage: zfs: implement download and upload Add an implementation of uploadVol and downloadVol using virStorageBackendVolUploadLocal and virStorageBackendVolDownloadLocal respectively. --- diff --git a/src/storage/storage_backend_zfs.c b/src/storage/storage_backend_zfs.c index 2aeefb5d5a..2d740555df 100644 --- a/src/storage/storage_backend_zfs.c +++ b/src/storage/storage_backend_zfs.c @@ -326,4 +326,6 @@ virStorageBackend virStorageBackendZFS = { .refreshPool = virStorageBackendZFSRefreshPool, .createVol = virStorageBackendZFSCreateVol, .deleteVol = virStorageBackendZFSDeleteVol, + .uploadVol = virStorageBackendVolUploadLocal, + .downloadVol = virStorageBackendVolDownloadLocal, };