qemu with hax to log dma reads & writes jcs.org/2018/11/12/vfio

cputlb: Make tlb_n_entries private to cputlb.c

There are no users of this function outside cputlb.c,
and its interface will change in the next patch.

Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Alistair Francis <alistair.francis@wdc.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>

+5 -5
+5
accel/tcg/cputlb.c
··· 80 80 QEMU_BUILD_BUG_ON(NB_MMU_MODES > 16); 81 81 #define ALL_MMUIDX_BITS ((1 << NB_MMU_MODES) - 1) 82 82 83 + static inline size_t tlb_n_entries(CPUArchState *env, uintptr_t mmu_idx) 84 + { 85 + return (env_tlb(env)->f[mmu_idx].mask >> CPU_TLB_ENTRY_BITS) + 1; 86 + } 87 + 83 88 static inline size_t sizeof_tlb(CPUArchState *env, uintptr_t mmu_idx) 84 89 { 85 90 return env_tlb(env)->f[mmu_idx].mask + (1 << CPU_TLB_ENTRY_BITS);
-5
include/exec/cpu_ldst.h
··· 234 234 return (addr >> TARGET_PAGE_BITS) & size_mask; 235 235 } 236 236 237 - static inline size_t tlb_n_entries(CPUArchState *env, uintptr_t mmu_idx) 238 - { 239 - return (env_tlb(env)->f[mmu_idx].mask >> CPU_TLB_ENTRY_BITS) + 1; 240 - } 241 - 242 237 /* Find the TLB entry corresponding to the mmu_idx + address pair. */ 243 238 static inline CPUTLBEntry *tlb_entry(CPUArchState *env, uintptr_t mmu_idx, 244 239 target_ulong addr)