[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 02/13] s390x/tcg: fix ignoring bit 63 when setting the storage
From: |
David Hildenbrand |
Subject: |
[PATCH v2 02/13] s390x/tcg: fix ignoring bit 63 when setting the storage key in SSKE |
Date: |
Wed, 11 Aug 2021 11:05:16 +0200 |
Right now we could set an 8-bit storage key via SSKE and retrieve it
again via ISKE, which is against the architecture description:
SSKE:
"
The new seven-bit storage-key value, or selected bits
thereof, is obtained from bit positions 56-62 of gen-
eral register R 1 . The contents of bit positions 0-55
and 63 of the register are ignored.
"
ISKE:
"
The seven-bit storage key is inserted in bit positions
56-62 of general register R 1 , and bit 63 is set to zero.
"
Let's properly ignore bit 63 to create the correct seven-bit storage key.
Signed-off-by: David Hildenbrand <david@redhat.com>
---
target/s390x/tcg/mem_helper.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/target/s390x/tcg/mem_helper.c b/target/s390x/tcg/mem_helper.c
index e0befd0f03..3c0820dd74 100644
--- a/target/s390x/tcg/mem_helper.c
+++ b/target/s390x/tcg/mem_helper.c
@@ -2210,7 +2210,7 @@ void HELPER(sske)(CPUS390XState *env, uint64_t r1,
uint64_t r2)
skeyclass = S390_SKEYS_GET_CLASS(ss);
}
- key = (uint8_t) r1;
+ key = r1 & 0xfe;
skeyclass->set_skeys(ss, addr / TARGET_PAGE_SIZE, 1, &key);
/*
* As we can only flush by virtual address and not all the entries
--
2.31.1
- [PATCH v2 00/13] s390x: skey related fixes, cleanups, and memory device preparations, David Hildenbrand, 2021/08/11
- [PATCH v2 01/13] s390x/tcg: wrap address for RRBE, David Hildenbrand, 2021/08/11
- [PATCH v2 02/13] s390x/tcg: fix ignoring bit 63 when setting the storage key in SSKE,
David Hildenbrand <=
- [PATCH v2 03/13] s390x/tcg: convert real to absolute address for RRBE, SSKE and ISKE, David Hildenbrand, 2021/08/11
- [PATCH v2 04/13] s390x/tcg: check for addressing exceptions for RRBE, SSKE and ISKE, David Hildenbrand, 2021/08/11
- [PATCH v2 05/13] s390x/mmu_helper: no need to pass access type to mmu_translate_asce(), David Hildenbrand, 2021/08/11
- [PATCH v2 06/13] s390x/mmu_helper: fixup mmu_translate() documentation, David Hildenbrand, 2021/08/11
- [PATCH v2 07/13] s390x/mmu_helper: move address validation into mmu_translate*(), David Hildenbrand, 2021/08/11
- [PATCH v2 08/13] s390x/mmu_helper: avoid setting the storage key if nothing changed, David Hildenbrand, 2021/08/11
- [PATCH v2 09/13] hw/s390x/s390-skeys: use memory mapping to detect which storage keys to migrate, David Hildenbrand, 2021/08/11
- [PATCH v2 10/13] hw/s390x/s390-skeys: use memory mapping to detect which storage keys to dump, David Hildenbrand, 2021/08/11