From 6682d6219d4595b51f06867e0c30e7efd745f682 Mon Sep 17 00:00:00 2001 From: Richard Laager Date: Tue, 15 Mar 2016 01:17:34 -0500 Subject: [PATCH] logical: Only raw volumes are supported --- src/storage/storage_backend_logical.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/storage/storage_backend_logical.c b/src/storage/storage_backend_logical.c index 90a194ebc4..39e8b80ed0 100644 --- a/src/storage/storage_backend_logical.c +++ b/src/storage/storage_backend_logical.c @@ -912,6 +912,12 @@ virStorageBackendLogicalCreateVol(virConnectPtr conn, struct stat sb; bool created = false; + if (vol->target.format != VIR_STORAGE_FILE_RAW) { + virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s", + _("only RAW volumes are supported by this storage pool")); + return -1; + } + if (vol->target.encryption != NULL) { virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s", _("storage pool does not support encrypted " -- GitLab