[libvirt] [PATCH 10/12] qemu: Error out if the shared disk conf conflicts with others when attaching

Osier Yang jyang at redhat.com
Tue Dec 11 13:37:27 UTC 2012


Just like for domain starting, this checks if the shared disk's conf
conflicts with others.
---
 src/qemu/qemu_driver.c |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/src/qemu/qemu_driver.c b/src/qemu/qemu_driver.c
index b394eb9..c5e45c5 100644
--- a/src/qemu/qemu_driver.c
+++ b/src/qemu/qemu_driver.c
@@ -5989,6 +5989,9 @@ qemuDomainAttachDeviceDiskLive(virConnectPtr conn,
         goto end;
     }
 
+    if (disk->shared && (qemuCheckSharedDisk(driver->sharedDisks, disk) < 0))
+        goto end;
+
     if (qemuDomainDetermineDiskChain(driver, disk, false) < 0)
         goto end;
 
-- 
1.7.7.6




More information about the libvir-list mailing list