Move virStorage{Pool,Vol} related APIs out of libvirt.c

Introduce a src/libvirt-storage.c file to hold all the
methods related to the virStorage{Pool,Vol} types.
This commit is contained in:
Daniel P. Berrange 2014-10-22 16:29:09 +01:00
parent 0c94d78bb5
commit 36b5d006c1
5 changed files with 2122 additions and 2090 deletions

View File

@ -30,6 +30,7 @@ included_files = {
"libvirt-nodedev.c": "Node device interfaces for the libvirt library",
"libvirt-nwfilter.c": "NWFilter interfaces for the libvirt library",
"libvirt-secret.c": "Secret interfaces for the libvirt library",
"libvirt-storage.c": "Storage interfaces for the libvirt library",
"libvirt-stream.c": "Stream interfaces for the libvirt library",
"virerror.c": "implements error handling and reporting code for libvirt",
"virevent.c": "event loop for monitoring file handles",

View File

@ -62,6 +62,7 @@ src/libvirt-lxc.c
src/libvirt-network.c
src/libvirt-nwfilter.c
src/libvirt-secret.c
src/libvirt-storage.c
src/libvirt-stream.c
src/libvirt-qemu.c
src/locking/lock_daemon.c

View File

@ -195,6 +195,7 @@ DRIVER_SOURCES = \
libvirt-nodedev.c \
libvirt-nwfilter.c \
libvirt-secret.c \
libvirt-storage.c \
libvirt-stream.c \
locking/lock_manager.c locking/lock_manager.h \
locking/lock_driver.h \
@ -2199,6 +2200,7 @@ libvirt_setuid_rpc_client_la_SOURCES = \
libvirt-nodedev.c \
libvirt-nwfilter.c \
libvirt-secret.c \
libvirt-storage.c \
libvirt-stream.c \
libvirt-lxc.c \
$(NULL)

2118
src/libvirt-storage.c Normal file

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff