diff options
Diffstat (limited to 'drivers/ieee1394/sbp2.h')
-rw-r--r-- | drivers/ieee1394/sbp2.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/ieee1394/sbp2.h b/drivers/ieee1394/sbp2.h index 9ae842329bf3..44402b9d82a8 100644 --- a/drivers/ieee1394/sbp2.h +++ b/drivers/ieee1394/sbp2.h | |||
@@ -250,15 +250,15 @@ enum sbp2_dma_types { | |||
250 | /* Per SCSI command */ | 250 | /* Per SCSI command */ |
251 | struct sbp2_command_info { | 251 | struct sbp2_command_info { |
252 | struct list_head list; | 252 | struct list_head list; |
253 | struct sbp2_command_orb command_orb ____cacheline_aligned; | 253 | struct sbp2_command_orb command_orb; |
254 | dma_addr_t command_orb_dma ____cacheline_aligned; | 254 | dma_addr_t command_orb_dma; |
255 | struct scsi_cmnd *Current_SCpnt; | 255 | struct scsi_cmnd *Current_SCpnt; |
256 | void (*Current_done)(struct scsi_cmnd *); | 256 | void (*Current_done)(struct scsi_cmnd *); |
257 | 257 | ||
258 | /* Also need s/g structure for each sbp2 command */ | 258 | /* Also need s/g structure for each sbp2 command */ |
259 | struct sbp2_unrestricted_page_table | 259 | struct sbp2_unrestricted_page_table |
260 | scatter_gather_element[SG_ALL] ____cacheline_aligned; | 260 | scatter_gather_element[SG_ALL] __attribute__((aligned(8))); |
261 | dma_addr_t sge_dma ____cacheline_aligned; | 261 | dma_addr_t sge_dma; |
262 | void *sge_buffer; | 262 | void *sge_buffer; |
263 | dma_addr_t cmd_dma; | 263 | dma_addr_t cmd_dma; |
264 | enum sbp2_dma_types dma_type; | 264 | enum sbp2_dma_types dma_type; |