Re: [PATCH 09/12] qapi: make most CPU commands unconditionally available

2025-05-15 Thread Pierrick Bouvier
On 5/15/25 1:25 AM, Richard Henderson wrote: On 5/15/25 09:24, Richard Henderson wrote: On 5/15/25 00:41, Pierrick Bouvier wrote: diff --git a/MAINTAINERS b/MAINTAINERS index 476dcb46683..c2a6e6d1c1c 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -1927,7 +1927,6 @@ F: hw/core/numa.c   F: hw/cpu

Re: [PATCH 09/12] qapi: make most CPU commands unconditionally available

2025-05-15 Thread Richard Henderson
On 5/15/25 09:24, Richard Henderson wrote: On 5/15/25 00:41, Pierrick Bouvier wrote: diff --git a/MAINTAINERS b/MAINTAINERS index 476dcb46683..c2a6e6d1c1c 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -1927,7 +1927,6 @@ F: hw/core/numa.c   F: hw/cpu/cluster.c   F: qapi/machine.json   F: qapi/mac

Re: [PATCH 09/12] qapi: make most CPU commands unconditionally available

2025-05-15 Thread Richard Henderson
On 5/15/25 00:41, Pierrick Bouvier wrote: diff --git a/MAINTAINERS b/MAINTAINERS index 476dcb46683..c2a6e6d1c1c 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -1927,7 +1927,6 @@ F: hw/core/numa.c F: hw/cpu/cluster.c F: qapi/machine.json F: qapi/machine-common.json -F: qapi/machine-target.jso

[PATCH 09/12] qapi: make most CPU commands unconditionally available

2025-05-14 Thread Pierrick Bouvier
From: Daniel P. Berrangé This removes the TARGET_* conditions from all the CPU commands that are conceptually target independent. Top level stubs are provided to cope with targets which do not currently implement all of the commands. Signed-off-by: Daniel P. Berrangé Signed-off-by: Pierrick Bou