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

2025-05-22 Thread Pierrick Bouvier
On 5/21/25 10:12 PM, Markus Armbruster wrote: Pierrick Bouvier writes: On 5/18/25 11:29 PM, Markus Armbruster wrote: Pierrick Bouvier writes: From: Daniel P. Berrangé This removes the TARGET_* conditions from all the CPU commands that are conceptually target independent. Top level stubs

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

2025-05-21 Thread Markus Armbruster
Pierrick Bouvier writes: > On 5/18/25 11:29 PM, Markus Armbruster wrote: >> Pierrick Bouvier writes: >> >>> 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 wit

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

2025-05-21 Thread Pierrick Bouvier
On 5/18/25 11:29 PM, Markus Armbruster wrote: Pierrick Bouvier writes: 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 t

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

2025-05-19 Thread Markus Armbruster
Pierrick Bouvier writes: > 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. > > Reviewed-by: Richard

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

2025-05-17 Thread Pierrick Bouvier
On 5/16/25 11:00 PM, Markus Armbruster wrote: Pierrick Bouvier writes: 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 t

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

2025-05-16 Thread Markus Armbruster
Pierrick Bouvier writes: > 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. > > Reviewed-by: Richard

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

2025-05-15 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. Reviewed-by: Richard Henderson Signed-off-by: Daniel P. Berra