]> xenbits.xensource.com Git - libvirt.git/commitdiff
esx storage: Fix typo lsilogic -> lsiLogic
authorMarcos Paulo de Souza <marcos.souza.org@gmail.com>
Tue, 24 Jul 2018 00:15:51 +0000 (00:15 +0000)
committerMichal Privoznik <mprivozn@redhat.com>
Wed, 25 Jul 2018 11:30:24 +0000 (13:30 +0200)
Commit 77298458d027db4d3e082213355e2d792f65158d changed the esx storage
adapter from busLogic to lsilogic, introducing a typo. Changing it back
to lsiLogic (with capital L) solves the issue. With this change, libvirt can now
create volumes in ESX again.

Thanks to Jaroslav Suchanek who figured out what was the issue in the
first place.

Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=1571759
Signed-off-by: Marcos Paulo de Souza <marcos.souza.org@gmail.com>
src/esx/esx_storage_backend_vmfs.c

index 630a6aa8c964c8d59ffc37fd67d15191930efa2d..bb2de4b69fb17eb519c74ff197bd4d1955702a9f 100644 (file)
@@ -967,9 +967,9 @@ esxStorageVolCreateXML(virStoragePoolPtr pool,
         /*
          * FIXME: The adapter type is a required parameter, but there is no
          * way to let the user specify it in the volume XML config. Therefore,
-         * default to 'lsilogic' here.
+         * default to 'lsiLogic' here.
          */
-        virtualDiskSpec->adapterType = (char *)"lsilogic";
+        virtualDiskSpec->adapterType = (char *)"lsiLogic";
 
         virtualDiskSpec->capacityKb->value =
           VIR_DIV_UP(def->target.capacity, 1024); /* Scale from byte to kilobyte */