linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [RESEND PATCH] scsi: make struct scsi_varlen_cdb_hdr packed
@ 2012-10-11  9:15 James Hogan
  2012-10-11 10:01 ` Bart Van Assche
  2012-10-11 10:24 ` James Bottomley
  0 siblings, 2 replies; 9+ messages in thread
From: James Hogan @ 2012-10-11  9:15 UTC (permalink / raw)
  To: James E.J. Bottomley; +Cc: linux-scsi, linux-kernel, James Hogan

The struct scsi_varlen_cdb_hdr is expected to be exactly 10 bytes when
used in struct osd_cdb_head, but it isn't marked as packed. Some
architectures will round the struct size up which triggers BUILD_BUG_ON
compile errors in osd_initiator.c when the outer structs are unexpected
sizes. This is fixed by marking struct scsi_varlen_cdb_hdr as __packed.

Signed-off-by: James Hogan <james.hogan@imgtec.com>
---
 include/scsi/scsi.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/include/scsi/scsi.h b/include/scsi/scsi.h
index 66216c1..3beaef3 100644
--- a/include/scsi/scsi.h
+++ b/include/scsi/scsi.h
@@ -198,7 +198,7 @@ struct scsi_varlen_cdb_hdr {
 	__u8 additional_cdb_length;         /* total cdb length - 8 */
 	__be16 service_action;
 	/* service specific data follows */
-};
+} __packed;
 
 static inline unsigned
 scsi_varlen_cdb_length(const void *hdr)
-- 
1.7.7.6



^ permalink raw reply related	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2013-02-11 13:14 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-10-11  9:15 [RESEND PATCH] scsi: make struct scsi_varlen_cdb_hdr packed James Hogan
2012-10-11 10:01 ` Bart Van Assche
2012-10-11 11:13   ` James Hogan
2012-10-11 10:24 ` James Bottomley
2012-10-11 11:32   ` James Hogan
2012-10-11 12:58     ` James Bottomley
2012-10-11 13:34       ` Alan Cox
2012-10-11 14:10       ` James Hogan
2013-02-11 12:55         ` James Hogan

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).