Re: [PATCH v3 04/17] cpu: call plugin init hook asynchronously

2024-02-06 Thread Richard Henderson
On 2/6/24 19:24, Pierrick Bouvier wrote: This ensures we run during a cpu_exec, which allows to call start/end exclusive from this init hook (needed for new scoreboard API introduced later). async work is run before any tb is translated/executed, so we can guarantee plugin init will be called be

[PATCH v3 04/17] cpu: call plugin init hook asynchronously

2024-02-06 Thread Pierrick Bouvier
This ensures we run during a cpu_exec, which allows to call start/end exclusive from this init hook (needed for new scoreboard API introduced later). async work is run before any tb is translated/executed, so we can guarantee plugin init will be called before any other hook. The previous change m