Re: [PATCH 01/10] plugins/api: use tcg_ctx to get TARGET_PAGE_MASK

2025-02-25 Thread Richard Henderson
On 2/25/25 03:08, Alex Bennée wrote: Requiring TARGET_PAGE_MASK to be defined gets in the way of building this unit once. As tcg_ctx has the value lets use it. Signed-off-by: Alex Bennée --- plugins/api.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/api.c b/plu

Re: [PATCH 01/10] plugins/api: use tcg_ctx to get TARGET_PAGE_MASK

2025-02-25 Thread Philippe Mathieu-Daudé
On 25/2/25 12:08, Alex Bennée wrote: Requiring TARGET_PAGE_MASK to be defined gets in the way of building this unit once. As tcg_ctx has the value lets use it. Signed-off-by: Alex Bennée --- plugins/api.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Reviewed-by: Philippe Mathieu-D