Re: [PATCH 00/26] Migration PULL 2023-07-24

2023-07-30 Thread Juan Quintela
Thomas Huth wrote: > On 24/07/2023 15.06, Juan Quintela wrote: >> Hi >> This is the migration PULL request. > > Maybe it would better to use "PULL" instead of "PATCH" in the subject? G. Resending. Thanks. >> Now a not on CI, thas has been really bad. After too many problems >> with last P

[PATCH] Fix some typos in documentation and comments

2023-07-30 Thread Stefan Weil
Signed-off-by: Stefan Weil --- This patch was triggered by a spelling check for the generated QEMU documentation using codespell. It does not try to fix all typos which still exist in the QEMU code, but has a focus on those required to fix the documentation. Nevertheless some code comments with t

[PATCH Libvirt 01/11] qemu_capabilities: Introduce QEMU_CAPS_VCPU_DIRTY_LIMIT capability

2023-07-30 Thread ~hyman
From: Hyman Huang(黄勇) set-vcpu-dirty-limit/cancel-vcpu-dirty-limit/query-vcpu-dirty-limit were introduced since qemu >=7.1.0. Introduce corresponding capability. Signed-off-by: Hyman Huang(黄勇) --- src/qemu/qemu_capabilities.c | 2 ++ src/qemu/qemu_capabilities.h

[PATCH Libvirt 08/11] libvirt: Add virDomainCancelVcpuDirtyLimit API

2023-07-30 Thread ~hyman
From: Hyman Huang(黄勇) Introduce the virDomainCancelVcpuDirtyLimit API to cancel the upper limit of dirty page rate. Signed-off-by: Hyman Huang(黄勇) --- include/libvirt/libvirt-domain.h | 4 +++ src/driver-hypervisor.h | 6 src/libvirt-domain.c | 52 ++

[PATCH Libvirt 06/11] qemu_driver: Extend qemuDomainGetVcpus

2023-07-30 Thread ~hyman
From: Hyman Huang(黄勇) Extend qemuDomainGetVcpus for getting dirty page rate upper limit info so 'virsh vcpuinfo' api can display it. Signed-off-by: Hyman Huang(黄勇) --- include/libvirt/libvirt-domain.h | 2 ++ src/qemu/qemu_driver.c | 55 2 files chan

[PATCH Libvirt 05/11] qemu_monitor: Implement qemuMonitorQueryVcpuDirtyLimit

2023-07-30 Thread ~hyman
From: Hyman Huang(黄勇) Implement qemuMonitorQueryVcpuDirtyLimit which query vcpu dirty limit info by calling qmp 'query-vcpu-dirty-limit'. Signed-off-by: Hyman Huang(黄勇) --- src/qemu/qemu_monitor.c | 12 +++ src/qemu/qemu_monitor.h | 17 ++ src/qemu/qemu_monitor_json.c | 6

[PATCH Libvirt 02/11] libvirt: Add virDomainSetVcpuDirtyLimit API

2023-07-30 Thread ~hyman
From: Hyman Huang(黄勇) Introduce virDomainSetVcpuDirtyLimit API to set upper limit of dirty page rate. Signed-off-by: Hyman Huang(黄勇) --- include/libvirt/libvirt-domain.h | 16 ++ src/driver-hypervisor.h | 7 + src/libvirt-domain.c | 54