While working on the removal of tb_lock, I stumbled upon the following. Commit 77a8f1a51 ("linux-user: Fix stale tbs after mmap") introduced tb_invalidate_phys_range(), which we now have in accel/tcg/translate-all.c [ patchwork thread here: https://patchwork.ozlabs.org/patch/158556/ ]
This function calls tb_invalidate_phys_page_range(). As the name suggests, the latter function expects the range to be within the same page. The former does not have this requirement, as stated in the comment above the function (which I confirmed running some linux-user code): +/* + * invalidate all TBs which intersect with the target physical pages + * starting in range [start;end[. NOTE: start and end may refer to + * different physical pages. 'is_cpu_write_access' should be true if called + * from a real cpu write access: the virtual CPU will exit the current + * TB if code is modified inside this TB. + */ +void tb_invalidate_phys_range(tb_page_addr_t start, tb_page_addr_t end, + int is_cpu_write_access) +{ + while (start < end) { + tb_invalidate_phys_page_range(start, end, is_cpu_write_access); + start &= TARGET_PAGE_MASK; + start += TARGET_PAGE_SIZE; + } +} What I find puzzling is that here we pass 'end' unmodified, instead of making sure the range passed is within a page. Is this a bug, or am I missing something? Thanks, Emilio