summaryrefslogtreecommitdiffstats
path: root/arch/s390/include
diff options
context:
space:
mode:
authorJens Freimann2014-02-10 10:55:37 +0100
committerChristian Borntraeger2014-04-22 13:24:48 +0200
commit3d53b46ce8b1b873cf8501bac251b8c0cf489d4f (patch)
treea98dd0b87e8c5c4d00c5ce0e9b8f19bfaf6eaa32 /arch/s390/include
parentKVM: s390: cleanup kvm_s390_real_to_abs() (diff)
downloadkernel-qcow2-linux-3d53b46ce8b1b873cf8501bac251b8c0cf489d4f.tar.gz
kernel-qcow2-linux-3d53b46ce8b1b873cf8501bac251b8c0cf489d4f.tar.xz
kernel-qcow2-linux-3d53b46ce8b1b873cf8501bac251b8c0cf489d4f.zip
s390: fix name of lowcore field at offset 0xa3
According to the Principles of Operation, at offset 0xA3 in the lowcore we have the "Architectural-Mode identification", not an "access identification". Signed-off-by: Jens Freimann <jfrei@linux.vnet.ibm.com> Acked-by: Heiko Carstens <heiko.carstens@de.ibm.com> Signed-off-by: Christian Borntraeger <borntraeger@de.ibm.com>
Diffstat (limited to 'arch/s390/include')
-rw-r--r--arch/s390/include/asm/lowcore.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/s390/include/asm/lowcore.h b/arch/s390/include/asm/lowcore.h
index bbf8141408cd..edfa89b67e78 100644
--- a/arch/s390/include/asm/lowcore.h
+++ b/arch/s390/include/asm/lowcore.h
@@ -62,7 +62,7 @@ struct _lowcore {
__u8 exc_access_id; /* 0x00a0 */
__u8 per_access_id; /* 0x00a1 */
__u8 op_access_id; /* 0x00a2 */
- __u8 ar_access_id; /* 0x00a3 */
+ __u8 ar_mode_id; /* 0x00a3 */
__u8 pad_0x00a4[0x00b8-0x00a4]; /* 0x00a4 */
__u16 subchannel_id; /* 0x00b8 */
__u16 subchannel_nr; /* 0x00ba */
@@ -201,7 +201,7 @@ struct _lowcore {
__u8 exc_access_id; /* 0x00a0 */
__u8 per_access_id; /* 0x00a1 */
__u8 op_access_id; /* 0x00a2 */
- __u8 ar_access_id; /* 0x00a3 */
+ __u8 ar_mode_id; /* 0x00a3 */
__u8 pad_0x00a4[0x00a8-0x00a4]; /* 0x00a4 */
__u64 trans_exc_code; /* 0x00a8 */
__u64 monitor_code; /* 0x00b0 */