1
0
mirror of https://gitlab.com/libvirt/libvirt.git synced 2024-12-26 03:21:44 +03:00

Support for SATA Disks in virDomainDiskBus

* src/conf/domain_conf.h src/conf/domain_conf.c: add the new entry in
  the enum and lists of virDomainDiskBus
* src/qemu/qemu_conf.c: same for virDomainDiskQEMUBus
This commit is contained in:
pritesh 2009-11-12 15:45:18 +01:00 committed by Daniel Veillard
parent e51cf5c192
commit 2e23607448
3 changed files with 5 additions and 2 deletions

View File

@ -104,7 +104,8 @@ VIR_ENUM_IMPL(virDomainDiskBus, VIR_DOMAIN_DISK_BUS_LAST,
"virtio",
"xen",
"usb",
"uml")
"uml",
"sata")
VIR_ENUM_IMPL(virDomainDiskCache, VIR_DOMAIN_DISK_CACHE_LAST,
"default",

View File

@ -88,6 +88,7 @@ enum virDomainDiskBus {
VIR_DOMAIN_DISK_BUS_XEN,
VIR_DOMAIN_DISK_BUS_USB,
VIR_DOMAIN_DISK_BUS_UML,
VIR_DOMAIN_DISK_BUS_SATA,
VIR_DOMAIN_DISK_BUS_LAST
};

View File

@ -63,7 +63,8 @@ VIR_ENUM_IMPL(virDomainDiskQEMUBus, VIR_DOMAIN_DISK_BUS_LAST,
"virtio",
"xen",
"usb",
"uml")
"uml",
"sata")
VIR_ENUM_DECL(qemuDiskCacheV1)