]> bbs.cooldavid.org Git - net-next-2.6.git/commitdiff
[S390] sysinfo: fix SYSIB 3,2,2 structure
authorHeiko Carstens <heiko.carstens@de.ibm.com>
Fri, 26 Feb 2010 21:37:39 +0000 (22:37 +0100)
committerMartin Schwidefsky <sky@mschwide.boeblingen.de.ibm.com>
Fri, 26 Feb 2010 21:37:31 +0000 (22:37 +0100)
The size of the field that contains the description block count is
only four bits instead of eight bits.
The first four bits are reserved but this might change and break.

Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
arch/s390/include/asm/sysinfo.h

index 9d70057d828c604796082b21d61535eebcd19f87..22bdb2a0ee5f00724d02e67e814c41f4aa115e49 100644 (file)
@@ -87,7 +87,8 @@ struct sysinfo_2_2_2 {
 
 struct sysinfo_3_2_2 {
        char reserved_0[31];
-       unsigned char count;
+       unsigned char :4;
+       unsigned char count:4;
        struct {
                char reserved_0[4];
                unsigned short cpus_total;