Signed-off-by: Jiri Denemark <jdenemar@xxxxxxxxxx> --- src/remote/remote_driver.c | 3 ++- src/remote/remote_protocol.x | 21 ++++++++++++++++++++- src/remote_protocol-structs | 12 ++++++++++++ 3 files changed, 34 insertions(+), 2 deletions(-) diff --git a/src/remote/remote_driver.c b/src/remote/remote_driver.c index 95437b4365..acefe8c457 100644 --- a/src/remote/remote_driver.c +++ b/src/remote/remote_driver.c @@ -8448,7 +8448,8 @@ static virHypervisorDriver hypervisor_driver = { .domainSetGuestVcpus = remoteDomainSetGuestVcpus, /* 2.0.0 */ .domainSetVcpu = remoteDomainSetVcpu, /* 3.1.0 */ .domainSetBlockThreshold = remoteDomainSetBlockThreshold, /* 3.2.0 */ - .domainSetLifecycleAction = remoteDomainSetLifecycleAction /* 3.9.0 */ + .domainSetLifecycleAction = remoteDomainSetLifecycleAction, /* 3.9.0 */ + .connectCompareHypervisorCPU = remoteConnectCompareHypervisorCPU, /* 4.4.0 */ }; static virNetworkDriver network_driver = { diff --git a/src/remote/remote_protocol.x b/src/remote/remote_protocol.x index 296a087181..0aa123b5ac 100644 --- a/src/remote/remote_protocol.x +++ b/src/remote/remote_protocol.x @@ -3448,6 +3448,19 @@ struct remote_domain_set_lifecycle_action_args { unsigned int flags; }; +struct remote_connect_compare_hypervisor_cpu_args { + remote_string emulator; + remote_string arch; + remote_string machine; + remote_string virttype; + remote_nonnull_string xmlCPU; + unsigned int flags; +}; + +struct remote_connect_compare_hypervisor_cpu_ret { + int result; +}; + /*----- Protocol. -----*/ /* Define the program number, protocol version and procedure numbers here. */ @@ -6135,5 +6148,11 @@ enum remote_procedure { * @priority: high * @acl: storage_pool:getattr */ - REMOTE_PROC_STORAGE_POOL_LOOKUP_BY_TARGET_PATH = 391 + REMOTE_PROC_STORAGE_POOL_LOOKUP_BY_TARGET_PATH = 391, + + /** + * @generate: both + * @acl: connect:write + */ + REMOTE_PROC_CONNECT_COMPARE_HYPERVISOR_CPU = 392 }; diff --git a/src/remote_protocol-structs b/src/remote_protocol-structs index fe163db73f..64e48c52ba 100644 --- a/src/remote_protocol-structs +++ b/src/remote_protocol-structs @@ -2877,6 +2877,17 @@ struct remote_domain_set_lifecycle_action_args { u_int action; u_int flags; }; +struct remote_connect_compare_hypervisor_cpu_args { + remote_string emulator; + remote_string arch; + remote_string machine; + remote_string virttype; + remote_nonnull_string xmlCPU; + u_int flags; +}; +struct remote_connect_compare_hypervisor_cpu_ret { + int result; +}; enum remote_procedure { REMOTE_PROC_CONNECT_OPEN = 1, REMOTE_PROC_CONNECT_CLOSE = 2, @@ -3269,4 +3280,5 @@ enum remote_procedure { REMOTE_PROC_DOMAIN_MANAGED_SAVE_DEFINE_XML = 389, REMOTE_PROC_DOMAIN_SET_LIFECYCLE_ACTION = 390, REMOTE_PROC_STORAGE_POOL_LOOKUP_BY_TARGET_PATH = 391, + REMOTE_PROC_CONNECT_COMPARE_HYPERVISOR_CPU = 392, }; -- 2.17.0 -- libvir-list mailing list libvir-list@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/libvir-list