diff options
author | Stephen M. Cameron <scameron@beardog.cce.hp.com> | 2010-02-26 16:01:17 -0600 |
---|---|---|
committer | Jens Axboe <jens.axboe@oracle.com> | 2010-02-28 19:42:31 +0100 |
commit | 1b7d0d28ad82cbd5650c26ec8e370176b112e407 (patch) | |
tree | 5b7cd9a673ad2fe6c28d141d8822b0ea80095bd4 /drivers/block/cciss.c | |
parent | 58daa9ce96b847ed130453f5fdd63c579fb1f84f (diff) | |
download | linux-3.10-1b7d0d28ad82cbd5650c26ec8e370176b112e407.tar.gz linux-3.10-1b7d0d28ad82cbd5650c26ec8e370176b112e407.tar.bz2 linux-3.10-1b7d0d28ad82cbd5650c26ec8e370176b112e407.zip |
cciss: detect bad alignment of scsi commands at build time
cciss: detect bad alignment of scsi commands at build time
Incidentally fix some nearby c++ style comments.
Signed-off-by: Stephen M. Cameron <scameron@beardog.cce.hp.com>
Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
Diffstat (limited to 'drivers/block/cciss.c')
-rw-r--r-- | drivers/block/cciss.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/block/cciss.c b/drivers/block/cciss.c index a29e69418a0..cd8c7c20b1c 100644 --- a/drivers/block/cciss.c +++ b/drivers/block/cciss.c @@ -4496,7 +4496,7 @@ static int __init cciss_init(void) * boundary. Given that we use pci_alloc_consistent() to allocate an * array of them, the size must be a multiple of 8 bytes. */ - BUILD_BUG_ON(sizeof(CommandList_struct) % 8); + BUILD_BUG_ON(sizeof(CommandList_struct) % COMMANDLIST_ALIGNMENT); printk(KERN_INFO DRIVER_NAME "\n"); |