From e3abf2a4cca7f1f6e90f5c46f7155d4fd446a150 Mon Sep 17 00:00:00 2001 From: Roman Bogorodskiy Date: Fri, 15 Aug 2014 12:18:27 +0400 Subject: [PATCH] storage: zfs: implement download and upload Add an implementation of uploadVol and downloadVol using virStorageBackendVolUploadLocal and virStorageBackendVolDownloadLocal respectively. --- src/storage/storage_backend_zfs.c | 2 ++ 1 file changed, 2 insertions(+) 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, }; -- 2.47.2