提交 d9bf6cef 编写于 作者: J John Ferlan

storage: Introduce storageConnectGetStoragePoolCapabilities

https://bugzilla.redhat.com/show_bug.cgi?id=1581670

Create the storage driver code to generate the output for the
storage pool capabilities XML.
Signed-off-by: NJohn Ferlan <jferlan@redhat.com>
ACKed-by: NMichal Privoznik <mprivozn@redhat.com>
上级 6696155a
......@@ -35,6 +35,7 @@
#include "datatypes.h"
#include "driver.h"
#include "storage_driver.h"
#include "storage_capabilities.h"
#include "storage_conf.h"
#include "storage_event.h"
#include "viralloc.h"
......@@ -638,6 +639,28 @@ storageConnectFindStoragePoolSources(virConnectPtr conn,
}
static char *
storageConnectGetStoragePoolCapabilities(virConnectPtr conn,
unsigned int flags)
{
virStoragePoolCapsPtr caps = NULL;
char *ret;
virCheckFlags(0, NULL);
if (virConnectGetStoragePoolCapabilitiesEnsureACL(conn) < 0)
return NULL;
if (!(caps = virStoragePoolCapsNew(driver->caps)))
return NULL;
ret = virStoragePoolCapsFormat(caps);
virObjectUnref(caps);
return ret;
}
static int
storagePoolIsActive(virStoragePoolPtr pool)
{
......@@ -2776,6 +2799,7 @@ static virStorageDriver storageDriver = {
.connectStoragePoolEventRegisterAny = storageConnectStoragePoolEventRegisterAny, /* 2.0.0 */
.connectStoragePoolEventDeregisterAny = storageConnectStoragePoolEventDeregisterAny, /* 2.0.0 */
.connectFindStoragePoolSources = storageConnectFindStoragePoolSources, /* 0.4.0 */
.connectGetStoragePoolCapabilities = storageConnectGetStoragePoolCapabilities, /* 5.2.0 */
.storagePoolLookupByName = storagePoolLookupByName, /* 0.4.0 */
.storagePoolLookupByUUID = storagePoolLookupByUUID, /* 0.4.0 */
.storagePoolLookupByVolume = storagePoolLookupByVolume, /* 0.4.0 */
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册