Re: [PATCH] translate-all: Remove tb_alloc

2019-10-24 Thread Clement Deschamps
On 10/23/19 6:46 PM, Richard Henderson wrote: Since 2ac01d6dafab, this function does only two things: assert a lock is held, and call tcg_tb_alloc. It is used exactly once, and its user has already done the assert. Signed-off-by: Richard Henderson --- Reviewed-by: Clement Deschamps I

Re: [PATCH] translate-all: Remove tb_alloc

2019-10-23 Thread Philippe Mathieu-Daudé
On 10/23/19 6:46 PM, Richard Henderson wrote: Since 2ac01d6dafab, this function does only two things: assert a lock is held, and call tcg_tb_alloc. It is used exactly once, and its user has already done the assert. Signed-off-by: Richard Henderson Reviewed-by: Philippe Mathieu-Daudé ---

[PATCH] translate-all: Remove tb_alloc

2019-10-23 Thread Richard Henderson
Since 2ac01d6dafab, this function does only two things: assert a lock is held, and call tcg_tb_alloc. It is used exactly once, and its user has already done the assert. Signed-off-by: Richard Henderson --- I noticed that this function was essentially a stub while reviewing Clement's