]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
Move storage drivers into src/storage/
authorDaniel P. Berrange <berrange@redhat.com>
Tue, 15 Sep 2009 16:55:05 +0000 (17:55 +0100)
committerDaniel P. Berrange <berrange@redhat.com>
Mon, 21 Sep 2009 13:41:43 +0000 (14:41 +0100)
* daemon/qemud.c, src/Makefile.am: Adapt for changed paths
* src/storage*.c, src/storage/*.h, src/parthelpre.c: Move
  to src/storage/

19 files changed:
daemon/qemud.c
src/Makefile.am
src/storage/parthelper.c [moved from src/parthelper.c with 100% similarity]
src/storage/storage_backend.c [moved from src/storage_backend.c with 100% similarity]
src/storage/storage_backend.h [moved from src/storage_backend.h with 100% similarity]
src/storage/storage_backend_disk.c [moved from src/storage_backend_disk.c with 100% similarity]
src/storage/storage_backend_disk.h [moved from src/storage_backend_disk.h with 100% similarity]
src/storage/storage_backend_fs.c [moved from src/storage_backend_fs.c with 100% similarity]
src/storage/storage_backend_fs.h [moved from src/storage_backend_fs.h with 100% similarity]
src/storage/storage_backend_iscsi.c [moved from src/storage_backend_iscsi.c with 100% similarity]
src/storage/storage_backend_iscsi.h [moved from src/storage_backend_iscsi.h with 100% similarity]
src/storage/storage_backend_logical.c [moved from src/storage_backend_logical.c with 100% similarity]
src/storage/storage_backend_logical.h [moved from src/storage_backend_logical.h with 100% similarity]
src/storage/storage_backend_mpath.c [moved from src/storage_backend_mpath.c with 100% similarity]
src/storage/storage_backend_mpath.h [moved from src/storage_backend_mpath.h with 100% similarity]
src/storage/storage_backend_scsi.c [moved from src/storage_backend_scsi.c with 100% similarity]
src/storage/storage_backend_scsi.h [moved from src/storage_backend_scsi.h with 100% similarity]
src/storage/storage_driver.c [moved from src/storage_driver.c with 100% similarity]
src/storage/storage_driver.h [moved from src/storage_driver.h with 100% similarity]

index d14567c92985dd34a79c648c5e4f9f5ccfb3939b..aa7ea9d6d58b9b27ab6ec5edd8d21fb04ce1fa20 100644 (file)
@@ -87,7 +87,7 @@
 #include "interface_driver.h"
 #endif
 #ifdef WITH_STORAGE_DIR
-#include "storage_driver.h"
+#include "storage/storage_driver.h"
 #endif
 #ifdef WITH_NODE_DEVICES
 #include "node_device.h"
index a7725869bace1f69fca51d8bfcb06cc663bd2572..8360879c2cefc860c35bf798e269834a2f9595e4 100644 (file)
@@ -187,34 +187,34 @@ SECRET_DRIVER_SOURCES =                                           \
 
 # Storage backend specific impls
 STORAGE_DRIVER_SOURCES =                                       \
-               storage_driver.h storage_driver.c               \
-               storage_backend.h storage_backend.c
+               storage/storage_driver.h storage/storage_driver.c               \
+               storage/storage_backend.h storage/storage_backend.c
 
 # Network driver generic impl APIs
 NODE_DEVICE_CONF_SOURCES =                                     \
                node_device_conf.c node_device_conf.h
 
 STORAGE_DRIVER_FS_SOURCES =                                    \
-               storage_backend_fs.h storage_backend_fs.c
+               storage/storage_backend_fs.h storage/storage_backend_fs.c
 
 STORAGE_DRIVER_LVM_SOURCES =                                   \
-               storage_backend_logical.h                       \
-               storage_backend_logical.c
+               storage/storage_backend_logical.h                       \
+               storage/storage_backend_logical.c
 
 STORAGE_DRIVER_ISCSI_SOURCES =                                 \
-               storage_backend_iscsi.h storage_backend_iscsi.c
+               storage/storage_backend_iscsi.h storage/storage_backend_iscsi.c
 
 STORAGE_DRIVER_SCSI_SOURCES =                                  \
-               storage_backend_scsi.h storage_backend_scsi.c
+               storage/storage_backend_scsi.h storage/storage_backend_scsi.c
 
 STORAGE_DRIVER_MPATH_SOURCES =                                 \
-               storage_backend_mpath.h storage_backend_mpath.c
+               storage/storage_backend_mpath.h storage/storage_backend_mpath.c
 
 STORAGE_DRIVER_DISK_SOURCES =                                  \
-               storage_backend_disk.h storage_backend_disk.c
+               storage/storage_backend_disk.h storage/storage_backend_disk.c
 
 STORAGE_HELPER_DISK_SOURCES =                                  \
-               parthelper.c
+               storage/parthelper.c
 
 
 # Security framework and drivers for various models
similarity index 100%
rename from src/parthelper.c
rename to src/storage/parthelper.c