[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v1 05/12] s390x/mmu_helper: no need to pass access type to mmu_tr
From: |
David Hildenbrand |
Subject: |
[PATCH v1 05/12] s390x/mmu_helper: no need to pass access type to mmu_translate_asce() |
Date: |
Thu, 5 Aug 2021 17:27:57 +0200 |
The access type is unused.
Signed-off-by: David Hildenbrand <david@redhat.com>
---
target/s390x/mmu_helper.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/target/s390x/mmu_helper.c b/target/s390x/mmu_helper.c
index 0620b1803e..167f1b1455 100644
--- a/target/s390x/mmu_helper.c
+++ b/target/s390x/mmu_helper.c
@@ -125,7 +125,7 @@ static inline bool read_table_entry(CPUS390XState *env,
hwaddr gaddr,
static int mmu_translate_asce(CPUS390XState *env, target_ulong vaddr,
uint64_t asc, uint64_t asce, target_ulong *raddr,
- int *flags, int rw)
+ int *flags)
{
const bool edat1 = (env->cregs[0] & CR0_EDAT) &&
s390_has_feat(S390_FEAT_EDAT);
@@ -428,7 +428,7 @@ int mmu_translate(CPUS390XState *env, target_ulong vaddr,
int rw, uint64_t asc,
}
/* perform the DAT translation */
- r = mmu_translate_asce(env, vaddr, asc, asce, raddr, flags, rw);
+ r = mmu_translate_asce(env, vaddr, asc, asce, raddr, flags);
if (unlikely(r)) {
return r;
}
--
2.31.1
- Re: [PATCH v1 02/12] s390x/tcg: fix ignoring bit 63 when setting the storage key in SSKE, (continued)
- [PATCH v1 03/12] s390x/tcg: convert real to absolute address for RRBE, SSKE and ISKE, David Hildenbrand, 2021/08/05
- Re: [PATCH v1 03/12] s390x/tcg: convert real to absolute address for RRBE, SSKE and ISKE, Thomas Huth, 2021/08/06
- Re: [PATCH v1 03/12] s390x/tcg: convert real to absolute address for RRBE, SSKE and ISKE, David Hildenbrand, 2021/08/06
- Re: [PATCH v1 03/12] s390x/tcg: convert real to absolute address for RRBE, SSKE and ISKE, Thomas Huth, 2021/08/06
- Re: [PATCH v1 03/12] s390x/tcg: convert real to absolute address for RRBE, SSKE and ISKE, David Hildenbrand, 2021/08/06
- Re: [PATCH v1 03/12] s390x/tcg: convert real to absolute address for RRBE, SSKE and ISKE, Cornelia Huck, 2021/08/06
- Re: [PATCH v1 03/12] s390x/tcg: convert real to absolute address for RRBE, SSKE and ISKE, David Hildenbrand, 2021/08/06
[PATCH v1 04/12] s390x/tcg: check for addressing exceptions for for RRBE, SSKE and ISKE, David Hildenbrand, 2021/08/05
[PATCH v1 05/12] s390x/mmu_helper: no need to pass access type to mmu_translate_asce(),
David Hildenbrand <=
[PATCH v1 06/12] s390x/mmu_helper: fixup mmu_translate() documentation, David Hildenbrand, 2021/08/05
[PATCH v1 07/12] s390x/mmu_helper: move address validation into mmu_translate*(), David Hildenbrand, 2021/08/05