Re: [libvirt RFCv11 00/33] multifd save restore prototype

2023-11-27 Thread Claudio Fontana
On 11/27/23 11:18, Daniel P. Berrangé wrote: > On Mon, Nov 27, 2023 at 10:43:58AM +0100, Claudio Fontana wrote: >> Hi all, >> >> I understand there has been some movement in this topic as the fixed-offset >> ram and multifd code evolves. >> >> I think I

Re: [libvirt RFCv11 00/33] multifd save restore prototype

2023-11-27 Thread Claudio Fontana
On 11/27/23 11:50, Daniel P. Berrangé wrote: > On Mon, Nov 27, 2023 at 11:40:29AM +0100, Claudio Fontana wrote: >> On 11/27/23 11:18, Daniel P. Berrangé wrote: >>> On Mon, Nov 27, 2023 at 10:43:58AM +0100, Claudio Fontana wrote: >>>> Hi all, >>>> >>

Re: [PATCH] virt-admin: Fix segfault when libvirtd dies

2024-03-19 Thread Claudio Fontana
On 3/19/24 12:02, Adam Julis wrote: > vshAdmCatchDisconnect requires non-NULL structure vshControl for > getting connection name (stored at opaque), but > virAdmConnectRegisterCloseCallback at vshAdmConnect called it > with NULL. > > Signed-off-by: Adam Julis > --- > tools/virt-admin.c | 2 +- >

Re: [PATCH] virt-admin: Fix segfault when libvirtd dies

2024-03-19 Thread Claudio Fontana
On 3/19/24 15:58, Jiri Denemark wrote: > On Tue, Mar 19, 2024 at 14:34:08 +0100, Claudio Fontana wrote: >> On 3/19/24 12:02, Adam Julis wrote: >>> vshAdmCatchDisconnect requires non-NULL structure vshControl for >>> getting connection n

Re: Revisiting parallel save/restore

2024-05-02 Thread Claudio Fontana
On 4/26/24 16:50, Daniel P. Berrangé wrote: > On Fri, Apr 26, 2024 at 11:44:38AM -0300, Fabiano Rosas wrote: >> Daniel P. Berrangé writes: >> >>> On Fri, Apr 26, 2024 at 10:03:29AM -0300, Fabiano Rosas wrote: Daniel P. Berrangé writes: > On Wed, Apr 17, 2024 at 05:12:27PM -0600, Jim

Re: [PATCH v2] qemu-options: Deprecate "-runas" and introduce "-run-with user=..." instead

2024-05-08 Thread Claudio Fontana
On 5/6/24 13:20, Thomas Huth wrote: > The old "-runas" option has the disadvantage that it is not visible > in the QAPI schema, so it is not available via the normal introspection > mechanisms. We've recently introduced the "-run-with" option for exactly > this purpose, which is meant to handle the

Re: [PATCH 17/20] include: Define constants for parallel save/restore

2024-10-15 Thread Claudio Fontana
On 10/14/24 21:41, Jim Fehlig via Devel wrote: > On 10/14/24 11:42, Daniel P. Berrangé wrote: >> On Mon, Oct 14, 2024 at 06:00:53PM +0200, Claudio Fontana wrote: >>> On 10/10/24 15:29, Daniel P. Berrangé wrote: >>>> On Thu, Aug 08, 2024 at 05:38:10PM -0600, Jim Fehl

Re: [PATCH 17/20] include: Define constants for parallel save/restore

2024-10-14 Thread Claudio Fontana
On 10/10/24 15:29, Daniel P. Berrangé wrote: > On Thu, Aug 08, 2024 at 05:38:10PM -0600, Jim Fehlig via Devel wrote: >> From: Claudio Fontana >> >> Add a new VIR_DOMAIN_SAVE_PARALLEL flag to the save and restore >> APIs, which can be used to specify the use of multipl

Re: [PATCH] util: virHostCPUGetStatsLinux: support VIR_NODE_CPU_STATS_GUEST

2025-09-05 Thread Claudio Fontana
On 9/1/25 16:24, Daniel P. Berrangé via Devel wrote: > On Thu, Aug 28, 2025 at 10:29:41AM +0200, Claudio Fontana wrote: >> it is very useful for platforms to know how much time a node is >> spending running guests. >> >> Signed-off-by: Claudio Fontana >> --- &

[PATCH] libvirt-host: VIR_NODE_CPU_STATS_GUEST: clarify "guest" time

2025-09-07 Thread Claudio Fontana
clarify that "guest" time is time spent running VCPUs specifically. Signed-off-by: Claudio Fontana --- include/libvirt/libvirt-host.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/libvirt/libvirt-host.h b/include/libvirt/libvirt-host.h index 2b899144d3..

[PATCH] util: virHostCPUGetStatsLinux: support VIR_NODE_CPU_STATS_GUEST

2025-08-28 Thread Claudio Fontana
it is very useful for platforms to know how much time a node is spending running guests. Signed-off-by: Claudio Fontana --- include/libvirt/libvirt-host.h | 10 src/test/test_driver.c | 9 +-- src/util/virhostcpu.c| 5

[PATCH] libvirt-host: VIR_NODE_CPU_STATS: clarify Linux, BSD differences

2025-09-17 Thread Claudio Fontana
the accounting choices are not necessarily intuitive, especially comparing Linux with BSD, so clarify the current state of things. Mark which counters are actually used on Linux and BSD, and how they are accumulated into the libvirt statistics. Signed-off-by: Claudio Fontana --- include