]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
bhyve: Fix version of implementation of some APIs
authorMichal Privoznik <mprivozn@redhat.com>
Mon, 27 Jul 2026 11:48:15 +0000 (13:48 +0200)
committerMichal Privoznik <mprivozn@redhat.com>
Mon, 27 Jul 2026 12:14:39 +0000 (14:14 +0200)
The following APIs where all implemented in 12.5.0 timeframe:

 - virDomainGetTime(), virDomainSetTime() -> v12.5.0-rc1~66
 - virDomainSetUserPassword() -> v12.5.0-rc1~65
 - virDomainAuthorizedSSHKeysGet(),
   virDomainAuthorizedSSHKeysSet() -> v12.5.0-rc1~64

But respective comments suggest they were implemented in 12.6.0
timeframe. Fix those comments.

Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
Reviewed-by: Jiri Denemark <jdenemar@redhat.com>
src/bhyve/bhyve_driver.c

index 8628a48621ca3370399d5ea99dfc34c80561e323..4abcd70aba07823bdb71b6f7d3c04026748e6bae 100644 (file)
@@ -2880,11 +2880,11 @@ static virHypervisorDriver bhyveHypervisorDriver = {
     .domainGetMemoryParameters = bhyveDomainGetMemoryParameters, /* 12.4.0 */
     .domainSetMemoryParameters = bhyveDomainSetMemoryParameters, /* 12.4.0 */
     .domainGetFSInfo = bhyveDomainGetFSInfo, /* 12.5.0 */
-    .domainGetTime = bhyveDomainGetTime, /* 12.6.0 */
-    .domainSetTime = bhyveDomainSetTime, /* 12.6.0 */
-    .domainSetUserPassword = bhyveDomainSetUserPassword, /* 12.6.0 */
-    .domainAuthorizedSSHKeysGet = bhyveDomainAuthorizedSSHKeysGet, /* 12.6.0 */
-    .domainAuthorizedSSHKeysSet = bhyveDomainAuthorizedSSHKeysSet, /* 12.6.0 */
+    .domainGetTime = bhyveDomainGetTime, /* 12.5.0 */
+    .domainSetTime = bhyveDomainSetTime, /* 12.5.0 */
+    .domainSetUserPassword = bhyveDomainSetUserPassword, /* 12.5.0 */
+    .domainAuthorizedSSHKeysGet = bhyveDomainAuthorizedSSHKeysGet, /* 12.5.0 */
+    .domainAuthorizedSSHKeysSet = bhyveDomainAuthorizedSSHKeysSet, /* 12.5.0 */
     .domainRename = bhyveDomainRename, /* 12.6.0 */
 };