Messages in this thread Patch in this message |  | | Date | Wed, 14 Jun 2006 16:07:17 +0200 | | From | Martin Schwidefsky <> | | Subject | [patch 22/24] s390: dasd eer data format. |
| |
From: Stefan Weinhuber <wein@de.ibm.com>
[S390] dasd eer data format.
The struct dasd_eer_header needs the packed attribute, or there will be 6 additional bytes of random data between the fixed header and the variable length part of the eer data.
Signed-off-by: Stefan Weinhuber <wein@de.ibm.com> Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com> ---
drivers/s390/block/dasd_eer.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-)
diff -urpN linux-2.6/drivers/s390/block/dasd_eer.c linux-2.6-patched/drivers/s390/block/dasd_eer.c --- linux-2.6/drivers/s390/block/dasd_eer.c 2006-06-14 14:29:47.000000000 +0200 +++ linux-2.6-patched/drivers/s390/block/dasd_eer.c 2006-06-14 14:30:02.000000000 +0200 @@ -276,7 +276,7 @@ struct dasd_eer_header { __u64 tv_sec; __u64 tv_usec; char busid[DASD_EER_BUSID_SIZE]; -}; +} __attribute__ ((packed)); /* * The following function can be used for those triggers that have - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|  |