[PATCH 10/10] ch_driver: Turn on the domainOpenConsole API

William Douglas posted 10 patches 4 years, 7 months ago
There is a newer version of this series
[PATCH 10/10] ch_driver: Turn on the domainOpenConsole API
Posted by William Douglas 4 years, 7 months ago
With all the rest of the enablement work out of the way, add the final
call for the cloud-hypervisor driver to handle domainOpenConsole.

Signed-off-by: William Douglas <william.douglas@intel.com>
---
 src/ch/ch_driver.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/ch/ch_driver.c b/src/ch/ch_driver.c
index b0b8e19120..a11357f83a 100644
--- a/src/ch/ch_driver.c
+++ b/src/ch/ch_driver.c
@@ -990,6 +990,7 @@ static virHypervisorDriver chHypervisorDriver = {
     .domainGetXMLDesc = chDomainGetXMLDesc,                 /* 7.5.0 */
     .domainGetInfo = chDomainGetInfo,                       /* 7.5.0 */
     .domainIsActive = chDomainIsActive,                     /* 7.5.0 */
+    .domainOpenConsole = chDomainOpenConsole,               /* 7.6.0 */
     .nodeGetInfo = chNodeGetInfo,                           /* 7.5.0 */
 };
 
-- 
2.31.1

Re: [PATCH 10/10] ch_driver: Turn on the domainOpenConsole API
Posted by Michal Prívozník 4 years, 6 months ago
On 6/30/21 1:05 AM, William Douglas wrote:
> With all the rest of the enablement work out of the way, add the final
> call for the cloud-hypervisor driver to handle domainOpenConsole.
> 
> Signed-off-by: William Douglas <william.douglas@intel.com>
> ---
>  src/ch/ch_driver.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/src/ch/ch_driver.c b/src/ch/ch_driver.c
> index b0b8e19120..a11357f83a 100644
> --- a/src/ch/ch_driver.c
> +++ b/src/ch/ch_driver.c
> @@ -990,6 +990,7 @@ static virHypervisorDriver chHypervisorDriver = {
>      .domainGetXMLDesc = chDomainGetXMLDesc,                 /* 7.5.0 */
>      .domainGetInfo = chDomainGetInfo,                       /* 7.5.0 */
>      .domainIsActive = chDomainIsActive,                     /* 7.5.0 */
> +    .domainOpenConsole = chDomainOpenConsole,               /* 7.6.0 */
>      .nodeGetInfo = chNodeGetInfo,                           /* 7.5.0 */
>  };
>  
> 

Again, this can be merged into previous patch.

Michal