[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v6 01/48] target/ppc: Remove unused struct 'mmu_ctx_hash32'
|
From: |
BALATON Zoltan |
|
Subject: |
[PATCH v6 01/48] target/ppc: Remove unused struct 'mmu_ctx_hash32' |
|
Date: |
Sat, 11 May 2024 03:45:39 +0200 (CEST) |
From: "Dr. David Alan Gilbert" <dave@treblig.org>
I think it's use was removed by
Commit 5883d8b296 ("mmu-hash*: Don't use full ppc_hash{32,
64}_translate() path for get_phys_page_debug()")
Signed-off-by: Dr. David Alan Gilbert <dave@treblig.org>
Reviewed-by: BALATON Zoltan <balaton@eik.bme.hu>
Signed-off-by: BALATON Zoltan <balaton@eik.bme.hu>
---
target/ppc/mmu-hash32.c | 6 ------
1 file changed, 6 deletions(-)
diff --git a/target/ppc/mmu-hash32.c b/target/ppc/mmu-hash32.c
index 6dfedab11d..da6e8b293c 100644
--- a/target/ppc/mmu-hash32.c
+++ b/target/ppc/mmu-hash32.c
@@ -37,12 +37,6 @@
# define LOG_BATS(...) do { } while (0)
#endif
-struct mmu_ctx_hash32 {
- hwaddr raddr; /* Real address */
- int prot; /* Protection bits */
- int key; /* Access key */
-};
-
static int ppc_hash32_pp_prot(int key, int pp, int nx)
{
int prot;
--
2.30.9
- [PATCH v6 00/48] Misc PPC exception and BookE MMU clean ups, BALATON Zoltan, 2024/05/10
- [PATCH v6 03/48] target/ppc/mmu_common.c: Move calculation of a value closer to its usage, BALATON Zoltan, 2024/05/10
- [PATCH v6 04/48] target/ppc/mmu_common.c: Remove unneeded local variable, BALATON Zoltan, 2024/05/10
- [PATCH v6 02/48] target/ppc: Remove unused helper, BALATON Zoltan, 2024/05/10
- [PATCH v6 01/48] target/ppc: Remove unused struct 'mmu_ctx_hash32',
BALATON Zoltan <=
- [PATCH v6 05/48] target/ppc/mmu_common.c: Simplify checking for real mode, BALATON Zoltan, 2024/05/10
- [PATCH v6 06/48] target/ppc/mmu_common.c: Drop cases for unimplemented MPC8xx MMU, BALATON Zoltan, 2024/05/10
- [PATCH v6 12/48] target/ppc/mmu_common.c: Split off real mode cases in get_physical_address_wtlb(), BALATON Zoltan, 2024/05/10
- [PATCH v6 11/48] target/ppc/mmu_common.c: Split out BookE cases before checking real mode, BALATON Zoltan, 2024/05/10
- [PATCH v6 10/48] target/ppc/mmu_common.c: Eliminate ret from mmu6xx_get_physical_address(), BALATON Zoltan, 2024/05/10
- [PATCH v6 29/48] target/ppc/mmu_common.c: Remove pte_update_flags(), BALATON Zoltan, 2024/05/10
- [PATCH v6 14/48] target/ppc/mmu_common.c: Fix misindented qemu_log_mask() calls, BALATON Zoltan, 2024/05/10
- [PATCH v6 13/48] target/ppc/mmu_common.c: Inline and remove check_physical(), BALATON Zoltan, 2024/05/10
- [PATCH v6 32/48] target/ppc/mmu-hash32.c: Drop a local variable, BALATON Zoltan, 2024/05/10
- [PATCH v6 18/48] target/ppc/mmu_common.c: Don't use mmu_ctx_t in mmubooke_get_physical_address(), BALATON Zoltan, 2024/05/10