aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/message/fusion/mptsas.h
diff options
context:
space:
mode:
authorKashyap, Desai <kashyap.desai@lsi.com>2010-03-18 09:54:20 -0400
committerJames Bottomley <James.Bottomley@suse.de>2010-04-11 10:24:12 -0400
commitf18a8927f6779f5dc9dc4327522c8a12f2cf31b9 (patch)
tree6731e000e32b1d423113f8666fa1634ec1a7be55 /drivers/message/fusion/mptsas.h
parent568da76929392c9feb60a25383250dd6cfa68e05 (diff)
[SCSI] mptfusion: Event data alignment with 4 byte.
event_data needs to be 4 byte aligned to makes sure there is no unaligned memory access take place. Signed-off-by: Kashyap Desai <kashyap.desai@lsi.com> Signed-off-by: James Bottomley <James.Bottomley@suse.de>
Diffstat (limited to 'drivers/message/fusion/mptsas.h')
-rw-r--r--drivers/message/fusion/mptsas.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/message/fusion/mptsas.h b/drivers/message/fusion/mptsas.h
index 953c2bfcf6aa..7b249edbda78 100644
--- a/drivers/message/fusion/mptsas.h
+++ b/drivers/message/fusion/mptsas.h
@@ -110,7 +110,7 @@ struct fw_event_work {
110 MPT_ADAPTER *ioc; 110 MPT_ADAPTER *ioc;
111 u32 event; 111 u32 event;
112 u8 retries; 112 u8 retries;
113 u8 event_data[1]; 113 u8 __attribute__((aligned(4))) event_data[1];
114}; 114};
115 115
116struct mptsas_discovery_event { 116struct mptsas_discovery_event {