[libvirt] [PATCH 6/8] util: Fix bug of managing vport

Osier Yang jyang at redhat.com
Mon Feb 4 13:32:03 UTC 2013


The string written to "vport_create" or "vport_delete" should
be "wwnn:wwpn", but not "wwpn:wwnn".
---
 src/util/virutil.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/util/virutil.c b/src/util/virutil.c
index f38ad5a..3073337 100644
--- a/src/util/virutil.c
+++ b/src/util/virutil.c
@@ -3437,8 +3437,8 @@ virManageVport(const int parent_host,
 
     if (virAsprintf(&vport_name,
                     "%s:%s",
-                    wwpn,
-                    wwnn) < 0) {
+                    wwnn,
+                    wwpn) < 0) {
         virReportOOMError();
         goto cleanup;
     }
-- 
1.7.7.6




More information about the libvir-list mailing list