diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2024-03-01 10:41:06 -1000 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2024-03-05 13:22:56 +0000 |
commit | a1a85a9502b5d0011320fdf490c1d6bc2f8fdc79 (patch) | |
tree | f35a470041534851e6ad422c5ff3277f20a60bca | |
parent | 707ded20a23e877a32c4acf47ea68819be0637a5 (diff) | |
download | qemu-a1a85a9502b5d0011320fdf490c1d6bc2f8fdc79.zip qemu-a1a85a9502b5d0011320fdf490c1d6bc2f8fdc79.tar.gz qemu-a1a85a9502b5d0011320fdf490c1d6bc2f8fdc79.tar.bz2 |
exec/memattrs: Remove target_tlb_bit*
These fields are no longer used since 937f224559.
Target specific extensions to the page tables should be done
with TARGET_PAGE_ENTRY_EXTRA.
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Message-id: 20240301204110.656742-3-richard.henderson@linaro.org
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
-rw-r--r-- | include/exec/memattrs.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/include/exec/memattrs.h b/include/exec/memattrs.h index d04170a..afa885f 100644 --- a/include/exec/memattrs.h +++ b/include/exec/memattrs.h @@ -54,16 +54,6 @@ typedef struct MemTxAttrs { unsigned int requester_id:16; /* Invert endianness for this page */ unsigned int byte_swap:1; - /* - * The following are target-specific page-table bits. These are not - * related to actual memory transactions at all. However, this structure - * is part of the tlb_fill interface, cached in the cputlb structure, - * and has unused bits. These fields will be read by target-specific - * helpers using env->iotlb[mmu_idx][tlb_index()].attrs.target_tlb_bitN. - */ - unsigned int target_tlb_bit0 : 1; - unsigned int target_tlb_bit1 : 1; - unsigned int target_tlb_bit2 : 1; } MemTxAttrs; /* Bus masters which don't specify any attributes will get this, |