[PATCH] domctl: bump interface version

Jan Beulich posted 1 patch 11 months, 4 weeks ago
Failed in applying to current master (apply log)
[PATCH] domctl: bump interface version
Posted by Jan Beulich 11 months, 4 weeks ago
The change to XEN_DOMCTL_getdomaininfo was a binary incompatible one,
and the interface version wasn't bumped yet during the 4.18 release
cycle.

Fixes: 31c655497461 ("domctl: Modify XEN_DOMCTL_getdomaininfo to fail if domid is not found")
Signed-off-by: Jan Beulich <jbeulich@suse.com>

--- a/xen/include/public/domctl.h
+++ b/xen/include/public/domctl.h
@@ -21,7 +21,7 @@
 #include "hvm/save.h"
 #include "memory.h"
 
-#define XEN_DOMCTL_INTERFACE_VERSION 0x00000015
+#define XEN_DOMCTL_INTERFACE_VERSION 0x00000016
 
 /*
  * NB. xen_domctl.domain is an IN/OUT parameter for this operation.
Re: [PATCH] domctl: bump interface version
Posted by Andrew Cooper 11 months, 4 weeks ago
On 11/05/2023 11:52 am, Jan Beulich wrote:
> The change to XEN_DOMCTL_getdomaininfo was a binary incompatible one,
> and the interface version wasn't bumped yet during the 4.18 release
> cycle.
>
> Fixes: 31c655497461 ("domctl: Modify XEN_DOMCTL_getdomaininfo to fail if domid is not found")
> Signed-off-by: Jan Beulich <jbeulich@suse.com>

Acked-by: Andrew Cooper <andrew.cooper3@citrix.com>

Thanks, and sorry for missing this.