On 8/26/23 16:24, Richard Henderson wrote:
+static void tcg_commit_cpu(CPUState *cpu, run_on_cpu_data data) +{ + CPUAddressSpace *cpuas = data.host_ptr; + + cpuas->memory_dispatch = address_space_to_dispatch(cpuas->as); + tlb_flush(cpu); +}
Question: do I need to take the iothread lock here, while re-generating the address space dispatch?
r~