Re: [PATCH 15/22] exec/cpu: Introduce CPUClass::verify_accel_features()

2023-09-29 Thread Richard Henderson
On 9/18/23 09:02, Philippe Mathieu-Daudé wrote: Some CPUs need to check the requested features are compatible with the requested accelerator. This has to be done*before* the accelerator realizes a vCPU. Introduce the verify_accel_features() handler and call it just before accel_cpu_realizefn().

[PATCH 15/22] exec/cpu: Introduce CPUClass::verify_accel_features()

2023-09-18 Thread Philippe Mathieu-Daudé
Some CPUs need to check the requested features are compatible with the requested accelerator. This has to be done *before* the accelerator realizes a vCPU. Introduce the verify_accel_features() handler and call it just before accel_cpu_realizefn(). Signed-off-by: Philippe Mathieu-Daudé --- inclu