s390x/tcg: fix ignoring bit 63 when setting the storage key in SSKE
commitfe00c705fec7bf20f5832fd6d8245fd554097cfc
authorDavid Hildenbrand <david@redhat.com>
Fri, 3 Sep 2021 15:55:03 +0000 (3 17:55 +0200)
committerThomas Huth <thuth@redhat.com>
Mon, 6 Sep 2021 14:24:05 +0000 (6 16:24 +0200)
treef7d6dec769c36bab51cfae8e8811b1eeed42c7fa
parent634a0b51cb25800ebc585862121f764d02de7a28
s390x/tcg: fix ignoring bit 63 when setting the storage key in SSKE

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>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Message-Id: <20210903155514.44772-3-david@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
target/s390x/tcg/mem_helper.c