On a Thursday in 2021, Praveen K Paladugu wrote:
Signed-off-by: Vineeth Pillai <viremana(a)linux.microsoft.com>
Signed-off-by: Praveen K Paladugu <prapal(a)linux.microsoft.com>
---
src/ch/ch_domain.c | 25 +++++++++
src/ch/ch_domain.h | 4 ++
src/ch/ch_driver.c | 137 +++++++++++++++++++++++++++++++++++++++++++++
3 files changed, 166 insertions(+)
/* Function Tables */
static virHypervisorDriver chHypervisorDriver = {
.name = "CH",
@@ -980,6 +1114,9 @@ static virHypervisorDriver chHypervisorDriver = {
.domainIsActive = chDomainIsActive, /* 7.5.0 */
.domainOpenConsole = chDomainOpenConsole, /* 7.8.0 */
.nodeGetInfo = chNodeGetInfo, /* 7.5.0 */
+ .domainGetVcpus = chDomainGetVcpus, /* 7.11.0 */
+ .domainGetVcpusFlags = chDomainGetVcpusFlags, /* 7.11.0 */
+ .domainGetMaxVcpus = chDomainGetMaxVcpus, /* 7.11.0 */
Next release (mid-January) will be 8.0.0.
There's no such thing as 7.11.0 - the major is incremented every year
and there are only 10 releases per year:
https://libvirt.org/downloads.html#numbering
Jano