[libvirt] [PATCH v2 3/8] storage: Add check for different ports for host duplicate matching

John Ferlan jferlan at redhat.com
Mon Apr 13 21:21:07 UTC 2015


In virStoragePoolSourceMatchSingleHost, add a comparison for port number
being different prior to checking the 'name' field.

Signed-off-by: John Ferlan <jferlan at redhat.com>
---
 src/conf/storage_conf.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/conf/storage_conf.c b/src/conf/storage_conf.c
index f609f85..313098b 100644
--- a/src/conf/storage_conf.c
+++ b/src/conf/storage_conf.c
@@ -2412,6 +2412,9 @@ virStoragePoolSourceMatchSingleHost(virStoragePoolSourcePtr poolsrc,
     if (poolsrc->nhost != 1 && defsrc->nhost != 1)
         return false;
 
+    if (poolsrc->hosts[0].port != defsrc->hosts[0].port)
+        return false;
+
     return STREQ(poolsrc->hosts[0].name, defsrc->hosts[0].name);
 }
 
-- 
2.1.0




More information about the libvir-list mailing list