mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-22 13:45:38 +00:00
util: move virStorageEncryption code into conf
The code handles XML bits and internal definition and should be in conf directory. Signed-off-by: Pavel Hrdina <phrdina@redhat.com> Reviewed-by: Peter Krempa <pkrempa@redhat.com>
This commit is contained in:
parent
3e54766414
commit
5ac39c4ab0
@ -43,6 +43,7 @@
|
||||
@SRCDIR@src/conf/snapshot_conf.c
|
||||
@SRCDIR@src/conf/storage_adapter_conf.c
|
||||
@SRCDIR@src/conf/storage_conf.c
|
||||
@SRCDIR@src/conf/storage_encryption_conf.c
|
||||
@SRCDIR@src/conf/storage_source_conf.c
|
||||
@SRCDIR@src/conf/virchrdev.c
|
||||
@SRCDIR@src/conf/virdomainmomentobjlist.c
|
||||
@ -307,7 +308,6 @@
|
||||
@SRCDIR@src/util/virscsivhost.c
|
||||
@SRCDIR@src/util/virsecret.c
|
||||
@SRCDIR@src/util/virsocketaddr.c
|
||||
@SRCDIR@src/util/virstorageencryption.c
|
||||
@SRCDIR@src/util/virstoragefile.c
|
||||
@SRCDIR@src/util/virstring.c
|
||||
@SRCDIR@src/util/virsysinfo.c
|
||||
|
@ -29,7 +29,7 @@
|
||||
#include "internal.h"
|
||||
#include "virconftypes.h"
|
||||
#include "capabilities.h"
|
||||
#include "virstorageencryption.h"
|
||||
#include "storage_encryption_conf.h"
|
||||
#include "cpu_conf.h"
|
||||
#include "virthread.h"
|
||||
#include "virhash.h"
|
||||
|
@ -54,6 +54,7 @@ storage_conf_sources = [
|
||||
'storage_adapter_conf.c',
|
||||
'storage_capabilities.c',
|
||||
'storage_conf.c',
|
||||
'storage_encryption_conf.c',
|
||||
'storage_source_conf.c',
|
||||
'virstorageobj.c',
|
||||
]
|
||||
|
@ -22,7 +22,7 @@
|
||||
#pragma once
|
||||
|
||||
#include "internal.h"
|
||||
#include "virstorageencryption.h"
|
||||
#include "storage_encryption_conf.h"
|
||||
#include "storage_source_conf.h"
|
||||
#include "virbitmap.h"
|
||||
#include "virthread.h"
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* virstorageencryption.c: volume encryption information
|
||||
* storage_encryption_conf.c: volume encryption information
|
||||
*
|
||||
* Copyright (C) 2009-2014 Red Hat, Inc.
|
||||
*
|
||||
@ -27,7 +27,7 @@
|
||||
|
||||
#include "virbuffer.h"
|
||||
#include "viralloc.h"
|
||||
#include "virstorageencryption.h"
|
||||
#include "storage_encryption_conf.h"
|
||||
#include "virxml.h"
|
||||
#include "virerror.h"
|
||||
#include "viruuid.h"
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* virstorageencryption.h: volume encryption information
|
||||
* storage_encryption_conf.h: volume encryption information
|
||||
*
|
||||
* Copyright (C) 2009-2011, 2014 Red Hat, Inc.
|
||||
*
|
@ -21,13 +21,13 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "storage_encryption_conf.h"
|
||||
#include "virbitmap.h"
|
||||
#include "virenum.h"
|
||||
#include "virobject.h"
|
||||
#include "virpci.h"
|
||||
#include "virseclabel.h"
|
||||
#include "virsecret.h"
|
||||
#include "virstorageencryption.h"
|
||||
|
||||
/* Types of disk backends (host resource). Comparable to the public
|
||||
* virStorageVolType, except we have an undetermined state, don't have
|
||||
|
@ -1047,6 +1047,12 @@ virStorageVolTypeFromString;
|
||||
virStorageVolTypeToString;
|
||||
|
||||
|
||||
# conf/storage_encryption_conf.h
|
||||
virStorageEncryptionFormat;
|
||||
virStorageEncryptionFree;
|
||||
virStorageEncryptionParseNode;
|
||||
|
||||
|
||||
# conf/storage_event.h
|
||||
virStoragePoolEventLifecycleNew;
|
||||
virStoragePoolEventRefreshNew;
|
||||
@ -3206,12 +3212,6 @@ virSocketAddrSetIPv6AddrNetOrder;
|
||||
virSocketAddrSetPort;
|
||||
|
||||
|
||||
# util/virstorageencryption.h
|
||||
virStorageEncryptionFormat;
|
||||
virStorageEncryptionFree;
|
||||
virStorageEncryptionParseNode;
|
||||
|
||||
|
||||
# util/virstoragefile.h
|
||||
virStorageFileCanonicalizePath;
|
||||
virStorageFileGetNPIVKey;
|
||||
|
@ -88,7 +88,6 @@ util_sources = [
|
||||
'virsecret.c',
|
||||
'virsocket.c',
|
||||
'virsocketaddr.c',
|
||||
'virstorageencryption.c',
|
||||
'virstoragefile.c',
|
||||
'virstring.c',
|
||||
'virsysinfo.c',
|
||||
|
Loading…
Reference in New Issue
Block a user