diff options
author | Heiko Carstens <heiko.carstens@de.ibm.com> | 2007-10-12 10:11:51 -0400 |
---|---|---|
committer | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2007-10-12 10:13:11 -0400 |
commit | c41fbc69654dd74339f76ea88054fe41e3c1b7a8 (patch) | |
tree | ef3faa87006de97f558d02c6bbf19d6f7daf4771 /arch/s390/mm | |
parent | 52480ee5206a3fe3a61b5529ce063202c60b8b27 (diff) |
[S390] pfault: Fix alignment of parameter list.
Make sure parameter list of the pfault token function is eight byte
aligned. Otherwise we can get specification exceptions.
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Diffstat (limited to 'arch/s390/mm')
-rw-r--r-- | arch/s390/mm/fault.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/s390/mm/fault.c b/arch/s390/mm/fault.c index 54055194e9af..4c1ac341ec80 100644 --- a/arch/s390/mm/fault.c +++ b/arch/s390/mm/fault.c | |||
@@ -468,7 +468,7 @@ typedef struct { | |||
468 | __u64 refselmk; | 468 | __u64 refselmk; |
469 | __u64 refcmpmk; | 469 | __u64 refcmpmk; |
470 | __u64 reserved; | 470 | __u64 reserved; |
471 | } __attribute__ ((packed)) pfault_refbk_t; | 471 | } __attribute__ ((packed, aligned(8))) pfault_refbk_t; |
472 | 472 | ||
473 | int pfault_init(void) | 473 | int pfault_init(void) |
474 | { | 474 | { |