aboutsummaryrefslogtreecommitdiffstats
path: root/arch/s390/kernel/asm-offsets.c
diff options
context:
space:
mode:
authorJens Freimann <jfrei@linux.vnet.ibm.com>2014-02-10 04:55:37 -0500
committerChristian Borntraeger <borntraeger@de.ibm.com>2014-04-22 07:24:48 -0400
commit3d53b46ce8b1b873cf8501bac251b8c0cf489d4f (patch)
treea98dd0b87e8c5c4d00c5ce0e9b8f19bfaf6eaa32 /arch/s390/kernel/asm-offsets.c
parente497a96ae8eda8b693bebc8f464712cd788d641f (diff)
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/kernel/asm-offsets.c')
-rw-r--r--arch/s390/kernel/asm-offsets.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/s390/kernel/asm-offsets.c b/arch/s390/kernel/asm-offsets.c
index cc10cdd4d6a2..94c18d482ce7 100644
--- a/arch/s390/kernel/asm-offsets.c
+++ b/arch/s390/kernel/asm-offsets.c
@@ -92,7 +92,7 @@ int main(void)
92 DEFINE(__LC_PER_CAUSE, offsetof(struct _lowcore, per_perc_atmid)); 92 DEFINE(__LC_PER_CAUSE, offsetof(struct _lowcore, per_perc_atmid));
93 DEFINE(__LC_PER_ADDRESS, offsetof(struct _lowcore, per_address)); 93 DEFINE(__LC_PER_ADDRESS, offsetof(struct _lowcore, per_address));
94 DEFINE(__LC_PER_PAID, offsetof(struct _lowcore, per_access_id)); 94 DEFINE(__LC_PER_PAID, offsetof(struct _lowcore, per_access_id));
95 DEFINE(__LC_AR_MODE_ID, offsetof(struct _lowcore, ar_access_id)); 95 DEFINE(__LC_AR_MODE_ID, offsetof(struct _lowcore, ar_mode_id));
96 DEFINE(__LC_SUBCHANNEL_ID, offsetof(struct _lowcore, subchannel_id)); 96 DEFINE(__LC_SUBCHANNEL_ID, offsetof(struct _lowcore, subchannel_id));
97 DEFINE(__LC_SUBCHANNEL_NR, offsetof(struct _lowcore, subchannel_nr)); 97 DEFINE(__LC_SUBCHANNEL_NR, offsetof(struct _lowcore, subchannel_nr));
98 DEFINE(__LC_IO_INT_PARM, offsetof(struct _lowcore, io_int_parm)); 98 DEFINE(__LC_IO_INT_PARM, offsetof(struct _lowcore, io_int_parm));