mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-04 01:24:12 +08:00
scsi: qla2xxx: Check the size of struct fcp_hdr at compile time
Since struct fcp_hdr is used to exchange data with the firmware, check its size at compile time. Link: https://lore.kernel.org/r/20200629225454.22863-2-bvanassche@acm.org Cc: Nilesh Javali <njavali@marvell.com> Cc: Quinn Tran <qutran@marvell.com> Cc: Himanshu Madhani <himanshu.madhani@oracle.com> Cc: Martin Wilck <mwilck@suse.com> Cc: Roman Bolshakov <r.bolshakov@yadro.com> Reviewed-by: Daniel Wagner <dwagner@suse.de> Reviewed-by: Himanshu Madhani <himanshu.madhani@oracle.com> Signed-off-by: Bart Van Assche <bvanassche@acm.org> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:
parent
5a0c256d96
commit
a7f474542e
@ -1971,6 +1971,7 @@ static int __init tcm_qla2xxx_init(void)
|
||||
BUILD_BUG_ON(sizeof(struct ctio_crc2_to_fw) != 64);
|
||||
BUILD_BUG_ON(sizeof(struct ctio_crc_from_fw) != 64);
|
||||
BUILD_BUG_ON(sizeof(struct ctio_to_2xxx) != 64);
|
||||
BUILD_BUG_ON(sizeof(struct fcp_hdr) != 24);
|
||||
BUILD_BUG_ON(sizeof(struct fcp_hdr_le) != 24);
|
||||
BUILD_BUG_ON(sizeof(struct nack_to_isp) != 64);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user