]> xenbits.xensource.com Git - people/liuw/libxenctrl-split/libvirt.git/commitdiff
storage: Change cbdata scsi refresh thread field name
authorJohn Ferlan <jferlan@redhat.com>
Mon, 2 Nov 2015 19:46:32 +0000 (14:46 -0500)
committerJohn Ferlan <jferlan@redhat.com>
Thu, 12 Nov 2015 11:30:32 +0000 (06:30 -0500)
Change the field name from 'name' to 'fchost_name' to better id it.

src/storage/storage_backend_scsi.c

index a593a2b43e4ac82a48d66a3860cb984bc14a7990..f246a05f3a3e739784d849114f3ae7abbbe0bb11 100644 (file)
@@ -43,7 +43,7 @@ VIR_LOG_INIT("storage.storage_backend_scsi");
 typedef struct _virStoragePoolFCRefreshInfo virStoragePoolFCRefreshInfo;
 typedef virStoragePoolFCRefreshInfo *virStoragePoolFCRefreshInfoPtr;
 struct _virStoragePoolFCRefreshInfo {
-    char *name;
+    char *fchost_name;
     virStoragePoolObjPtr pool;
 };
 
@@ -565,7 +565,7 @@ virStoragePoolFCRefreshDataFree(void *opaque)
 {
     virStoragePoolFCRefreshInfoPtr cbdata = opaque;
 
-    VIR_FREE(cbdata->name);
+    VIR_FREE(cbdata->fchost_name);
     VIR_FREE(cbdata);
 }
 
@@ -593,7 +593,7 @@ static void
 virStoragePoolFCRefreshThread(void *opaque)
 {
     virStoragePoolFCRefreshInfoPtr cbdata = opaque;
-    const char *name = cbdata->name;
+    const char *fchost_name = cbdata->fchost_name;
     virStoragePoolObjPtr pool = cbdata->pool;
     unsigned int host;
     int found = 0;
@@ -606,10 +606,10 @@ virStoragePoolFCRefreshThread(void *opaque)
          * rescan, and find LUN's, then we are happy
          */
         VIR_DEBUG("Attempt FC Refresh for pool='%s' name='%s' tries='%d'",
-                  pool->def->name, name, tries);
+                  pool->def->name, fchost_name, tries);
         virStoragePoolObjLock(pool);
         if (virStoragePoolObjIsActive(pool) &&
-            virGetSCSIHostNumber(name, &host) == 0 &&
+            virGetSCSIHostNumber(fchost_name, &host) == 0 &&
             virStorageBackendSCSITriggerRescan(host) == 0) {
             virStoragePoolObjClearVols(pool);
             found = virStorageBackendSCSIFindLUs(pool, host);
@@ -799,7 +799,7 @@ createVport(virConnectPtr conn,
                                       adapter->data.fchost.wwpn))) {
         if (VIR_ALLOC(cbdata) == 0) {
             cbdata->pool = pool;
-            cbdata->name = name;
+            cbdata->fchost_name = name;
             name = NULL;
 
             if (virThreadCreate(&thread, false, virStoragePoolFCRefreshThread,