diff options
author | Peter Oberparleiter <peter.oberparleiter@de.ibm.com> | 2006-06-04 02:51:28 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-06-05 12:29:16 -0700 |
commit | 4ae9538dd02824257e8e72c053c69ad6680aba04 (patch) | |
tree | a3383d1ae08a78a4d5d6247cd480923dc8812429 /include | |
parent | e0ec574987a3301f7767750bb6e8be47d6323bfa (diff) | |
download | linux-stable-4ae9538dd02824257e8e72c053c69ad6680aba04.tar.gz linux-stable-4ae9538dd02824257e8e72c053c69ad6680aba04.tar.bz2 linux-stable-4ae9538dd02824257e8e72c053c69ad6680aba04.zip |
[PATCH] s390: cio non-unique path group ids
From: Peter Oberparleiter <peter.oberparleiter@de.ibm.com>
The path grouping can fail due to non-unique pathgroup-IDs. The source for
the CPU-ID part of the ID was incorrectly specified on 64 bit systems.
Additionally, the length of the ID was too large due to incorrect data packing
declaration. Fix CPU-ID lowcore address and add missing packing declaration.
Signed-off-by: Peter Oberparleiter <peter.oberparleiter@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/asm-s390/lowcore.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/asm-s390/lowcore.h b/include/asm-s390/lowcore.h index db0606c1abd4..bea727904287 100644 --- a/include/asm-s390/lowcore.h +++ b/include/asm-s390/lowcore.h @@ -98,8 +98,8 @@ #define __LC_KERNEL_ASCE 0xD58 #define __LC_USER_ASCE 0xD60 #define __LC_PANIC_STACK 0xD68 -#define __LC_CPUID 0xD90 -#define __LC_CPUADDR 0xD98 +#define __LC_CPUID 0xD80 +#define __LC_CPUADDR 0xD88 #define __LC_IPLDEV 0xDB8 #define __LC_JIFFY_TIMER 0xDC0 #define __LC_CURRENT 0xDD8 |