On Sat, 30 Aug 2025 at 18:02, Richard Henderson
<[email protected]> wrote:
>
> Use a typedef instead of uint16_t directly when
> describing sets of mmu indexes.
> @@ -306,7 +306,7 @@ typedef struct CPUTLBCommon {
> * mmu_idx N since the last time that mmu_idx was flushed.
> * Protected by tlb_c.lock.
> */
> - uint16_t dirty;
> + MMUIdxMap dirty;
Indent looks off here.
> /*
> * Statistics. These are not lock protected, but are read and
> * written atomically. This allows the monitor to print a snapshot
-- PMM