[PATCH] include: fix version for VIR_CONNECT_BASELINE_CPU_IGNORE_HOST

Daniel P. Berrangé via Devel posted 1 patch 1 month, 1 week ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/libvirt tags/patchew/20250728124745.3440444-1-berrange@redhat.com
include/libvirt/libvirt-host.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] include: fix version for VIR_CONNECT_BASELINE_CPU_IGNORE_HOST
Posted by Daniel P. Berrangé via Devel 1 month, 1 week ago
From: Daniel P. Berrangé <berrange@redhat.com>

Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
---
 include/libvirt/libvirt-host.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/libvirt/libvirt-host.h b/include/libvirt/libvirt-host.h
index 19043235b2..8922d00e0c 100644
--- a/include/libvirt/libvirt-host.h
+++ b/include/libvirt/libvirt-host.h
@@ -975,7 +975,7 @@ typedef enum {
     /* filter out non-migratable features (Since: 1.2.14) */
     VIR_CONNECT_BASELINE_CPU_MIGRATABLE = (1 << 1),
     /* when computing a baseline from several CPUs, do not make the result
-     * dependent on the current host (Since: 11.5.0) */
+     * dependent on the current host (Since: 11.6.0) */
     VIR_CONNECT_BASELINE_CPU_IGNORE_HOST = (1 << 2),
 } virConnectBaselineCPUFlags;
 
-- 
2.50.1
Re: [PATCH] include: fix version for VIR_CONNECT_BASELINE_CPU_IGNORE_HOST
Posted by Jiri Denemark via Devel 1 month, 1 week ago
On Mon, Jul 28, 2025 at 13:47:45 +0100, Daniel P. Berrangé wrote:
> From: Daniel P. Berrangé <berrange@redhat.com>
> 
> Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
> ---
>  include/libvirt/libvirt-host.h | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/include/libvirt/libvirt-host.h b/include/libvirt/libvirt-host.h
> index 19043235b2..8922d00e0c 100644
> --- a/include/libvirt/libvirt-host.h
> +++ b/include/libvirt/libvirt-host.h
> @@ -975,7 +975,7 @@ typedef enum {
>      /* filter out non-migratable features (Since: 1.2.14) */
>      VIR_CONNECT_BASELINE_CPU_MIGRATABLE = (1 << 1),
>      /* when computing a baseline from several CPUs, do not make the result
> -     * dependent on the current host (Since: 11.5.0) */
> +     * dependent on the current host (Since: 11.6.0) */
>      VIR_CONNECT_BASELINE_CPU_IGNORE_HOST = (1 << 2),
>  } virConnectBaselineCPUFlags;

Oops, thanks for fixing this.

Reviewed-by: Jiri Denemark <jdenemar@redhat.com>