storage: zfs: implement download and upload

Add an implementation of uploadVol and downloadVol using
virStorageBackendVolUploadLocal and virStorageBackendVolDownloadLocal
respectively.
This commit is contained in:
Roman Bogorodskiy 2014-08-15 12:18:27 +04:00
parent f5b4c14155
commit e3abf2a4cc

View File

@ -326,4 +326,6 @@ virStorageBackend virStorageBackendZFS = {
.refreshPool = virStorageBackendZFSRefreshPool,
.createVol = virStorageBackendZFSCreateVol,
.deleteVol = virStorageBackendZFSDeleteVol,
.uploadVol = virStorageBackendVolUploadLocal,
.downloadVol = virStorageBackendVolDownloadLocal,
};