Re: [SPAM] [PATCH v1 1/4] hw/arm: Remove ast2700a0-evb machine

2025-09-02 Thread Cédric Le Goater
Hello Jamin, On 9/1/25 06:08, Jamin Lin wrote: The ast2700a0-evb machine represents the first revision of the AST2700 and serves as the initial engineering sample rather than a production version. A newer revision, A1, is now supported, and the ast2700a1-evb should replace the older A0 version.

Re: [PATCH v3 1/1] docs : add doc on cpu model and features

2025-09-02 Thread Jiri Denemark via Devel
On Wed, Aug 27, 2025 at 16:25:06 +0200, Hector Cao wrote: > Add documentation on the way libvirt displays the Host CPU > model and capabilities (features). There is an implicit > expectation from users to get the CPU model name matching the > CPU model they are running on, however, this does not ha

Re: [PATCH 09/13] ch: add disk attach functionality

2025-09-02 Thread Michal Prívozník via Devel
On 8/28/25 14:54, Stefan Kober wrote: > On-behalf-of: SAP stefan.ko...@sap.com > Signed-off-by: Stefan Kober > --- > src/ch/ch_driver.c | 2 +- > src/ch/ch_hotplug.c | 131 ++-- > src/ch/ch_monitor.c | 17 ++ > src/ch/ch_monitor.h | 4 ++ > 4 file

[PATCH v2 03/13] ch: add ch_hotplug.{h,c} files to CH build

2025-09-02 Thread Stefan Kober
The files are meant to contain all device hotplug related code. The first implementation will be live storage attach and detach. On-behalf-of: SAP stefan.ko...@sap.com Signed-off-by: Stefan Kober --- src/ch/ch_hotplug.c | 35 +++ src/ch/ch_hotplug.h | 27 +

Re: [PATCH v2 00/13] CH: Add disk hotplug support to Cloud Hypervisor domains

2025-09-02 Thread stefan . kober
I think I missed most of Michal's comments on the v1 patchset. I will incorporate those.

[libvirt PATCH] esx: pass 'long' to curl_easy_setopt when needed

2025-09-02 Thread Ján Tomko via Devel
From: Ján Tomko The include header got its type checks fixed in curl 8.14: https://github.com/curl/curl/commit/79b4e56b3f30dc1ac28a81128a07d27338e5219e https://github.com/curl/curl/pull/17143 This causes a warning on rawhide with clang: ../src/esx/esx_vi.c:318:5: error: call to '_curl_easy_setop

[PATCH v2 11/13] ch: Add virCHMonitorRemoveDevice function

2025-09-02 Thread Stefan Kober
The function calls the respective CH API to remove a device of any type from a VM. On-behalf-of: SAP stefan.ko...@sap.com Signed-off-by: Stefan Kober --- src/ch/ch_monitor.c | 13 + src/ch/ch_monitor.h | 3 +++ 2 files changed, 16 insertions(+) diff --git a/src/ch/ch_monitor.c b/sr

[PATCH v2 10/13] ch: assign aliases in ProcessPrepareDomain

2025-09-02 Thread Stefan Kober
This is required to have unique device aliases for devices throughout the domain lifecycle. On-behalf-of: SAP stefan.ko...@sap.com Signed-off-by: Stefan Kober --- src/ch/ch_process.c | 4 1 file changed, 4 insertions(+) diff --git a/src/ch/ch_process.c b/src/ch/ch_process.c index cd2e88af1

[PATCH v2 08/13] ch: use MonitorPut in MonitorPutNoContent

2025-09-02 Thread Stefan Kober
On-behalf-of: SAP stefan.ko...@sap.com Signed-off-by: Stefan Kober --- src/ch/ch_monitor.c | 40 +--- 1 file changed, 1 insertion(+), 39 deletions(-) diff --git a/src/ch/ch_monitor.c b/src/ch/ch_monitor.c index 63c8425b4b..5f3e2adbee 100644 --- a/src/ch/ch_mon

[PATCH v2 05/13] ch: pass disk alias to CHV

2025-09-02 Thread Stefan Kober
On-behalf-of: SAP stefan.ko...@sap.com Signed-off-by: Stefan Kober --- src/ch/ch_monitor.c | 8 1 file changed, 8 insertions(+) diff --git a/src/ch/ch_monitor.c b/src/ch/ch_monitor.c index 6bf877fef3..d369236183 100644 --- a/src/ch/ch_monitor.c +++ b/src/ch/ch_monitor.c @@ -249,6 +249,1

[PATCH v2 01/13] ch: add DomainAttachDevice skeletons

2025-09-02 Thread Stefan Kober
On-behalf-of: SAP stefan.ko...@sap.com Signed-off-by: Stefan Kober --- src/ch/ch_driver.c | 37 + 1 file changed, 37 insertions(+) diff --git a/src/ch/ch_driver.c b/src/ch/ch_driver.c index cf6874f22e..7e8f73564e 100644 --- a/src/ch/ch_driver.c +++ b/src/ch/ch

[PATCH v2 06/13] ch: add ch_alias.{c,h} for device alias handling

2025-09-02 Thread Stefan Kober
On-behalf-of: SAP stefan.ko...@sap.com Signed-off-by: Stefan Kober --- src/ch/ch_alias.c | 59 ++ src/ch/ch_alias.h | 27 + src/ch/meson.build | 2 ++ 3 files changed, 88 insertions(+) create mode 100644 src/ch/ch_alias.c create

[PATCH v2 09/13] ch: add disk attach functionality

2025-09-02 Thread Stefan Kober
On-behalf-of: SAP stefan.ko...@sap.com Signed-off-by: Stefan Kober --- po/POTFILES | 1 + src/ch/ch_hotplug.c | 131 ++-- src/ch/ch_monitor.c | 17 ++ src/ch/ch_monitor.h | 4 ++ 4 files changed, 149 insertions(+), 4 deletions(-) diff --gi

[PATCH v2 07/13] ch: add virCHMonitorPut function

2025-09-02 Thread Stefan Kober
This allows users to call API endpoints that require passing data in a generic way. Previously, only virCHMonitorPutNoContent was offered. On-behalf-of: SAP stefan.ko...@sap.com Signed-off-by: Stefan Kober --- src/ch/ch_monitor.c | 61 + 1 file changed

[PATCH v2 02/13] ch: add DomainDetachDevice skeletons

2025-09-02 Thread Stefan Kober
On-behalf-of: SAP stefan.ko...@sap.com Signed-off-by: Stefan Kober --- src/ch/ch_driver.c | 37 - 1 file changed, 36 insertions(+), 1 deletion(-) diff --git a/src/ch/ch_driver.c b/src/ch/ch_driver.c index 7e8f73564e..e5e1bfd7d1 100644 --- a/src/ch/ch_driver.c

Re: [PATCH 0/3] hw/sd/sdcard: Deprecate support for spec v1.10

2025-09-02 Thread Philippe Mathieu-Daudé
On 27/6/24 09:10, Philippe Mathieu-Daudé wrote: Deprecate SD spec v1.10, use v3.01 as new default. Philippe Mathieu-Daudé (3): hw/sd/sdcard: Deprecate support for spec v1.10 hw/sd/sdcard: Use spec v3.01 by default The first 2 patches are already merged, hw/sd/sdcard: Remove support

Re: [PATCH-for-10.0 3/3] hw/sd/sdcard: Remove support for spec v1.10

2025-09-02 Thread Philippe Mathieu-Daudé
On 1/9/25 09:41, Philippe Mathieu-Daudé wrote: On 1/9/25 09:29, Philippe Mathieu-Daudé wrote: Kind ping :) On 27/6/24 09:10, Philippe Mathieu-Daudé wrote: Support for spec v1.10 was deprecated in QEMU v9.1. Signed-off-by: Philippe Mathieu-Daudé ---   docs/about/deprecated.rst   |  6