]> xenbits.xensource.com Git - libvirt.git/commitdiff
Fix various shadowed declarations
authorMartin Kletzander <mkletzan@redhat.com>
Tue, 12 Apr 2016 13:41:28 +0000 (15:41 +0200)
committerMartin Kletzander <mkletzan@redhat.com>
Thu, 14 Apr 2016 06:55:08 +0000 (08:55 +0200)
I tried compiling libvirt with older gcc and probably because I used
different configure options I got some shadowed declarations.

Signed-off-by: Martin Kletzander <mkletzan@redhat.com>
src/qemu/qemu_migration.c
src/storage/storage_backend_zfs.c

index e72c8748b4b1f57efe8c689f72828c9986178653..898d7919752055cbd25a4fccd015b35354fef805 100644 (file)
@@ -5943,7 +5943,7 @@ qemuMigrationFinish(virQEMUDriverPtr driver,
     int rc;
     qemuDomainJobInfoPtr jobInfo = NULL;
     bool inPostCopy = false;
-    bool kill = true;
+    bool doKill = true;
 
     VIR_DEBUG("driver=%p, dconn=%p, vm=%p, cookiein=%s, cookieinlen=%d, "
               "cookieout=%p, cookieoutlen=%p, flags=%lx, retcode=%d",
@@ -6091,7 +6091,7 @@ qemuMigrationFinish(virQEMUDriverPtr driver,
         }
 
         if (inPostCopy) {
-            kill = false;
+            doKill = false;
             event = virDomainEventLifecycleNewFromObj(vm,
                                         VIR_DOMAIN_EVENT_RESUMED,
                                         VIR_DOMAIN_EVENT_RESUMED_POSTCOPY);
@@ -6151,7 +6151,7 @@ qemuMigrationFinish(virQEMUDriverPtr driver,
     if (!dom &&
         !(flags & VIR_MIGRATE_OFFLINE) &&
         virDomainObjIsActive(vm)) {
-        if (kill) {
+        if (doKill) {
             qemuProcessStop(driver, vm, VIR_DOMAIN_SHUTOFF_FAILED,
                             QEMU_ASYNC_JOB_MIGRATION_IN,
                             VIR_QEMU_PROCESS_STOP_MIGRATED);
index c66a808ab7b4b28dfacb9df207dbd0faedb37e51..5c0c1fce5d4b7eafb6f02f8a13437cf33044a68d 100644 (file)
@@ -51,7 +51,7 @@ static int
 virStorageBackendZFSVolModeNeeded(void)
 {
     virCommandPtr cmd = NULL;
-    int ret = -1, exit = -1;
+    int ret = -1, exit_code = -1;
     char *error = NULL;
 
     /* 'zfs get' without arguments prints out
@@ -63,8 +63,8 @@ virStorageBackendZFSVolModeNeeded(void)
     virCommandAddEnvString(cmd, "LC_ALL=C");
     virCommandSetErrorBuffer(cmd, &error);
 
-    ret = virCommandRun(cmd, &exit);
-    if ((ret < 0) || (exit != 2)) {
+    ret = virCommandRun(cmd, &exit_code);
+    if ((ret < 0) || (exit_code != 2)) {
         VIR_WARN("Command 'zfs get' either failed "
                  "to run or exited with unexpected status");
         goto cleanup;