[SCSI] scsi_lib.c: use BUILD_BUG_ON
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com> Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
This commit is contained in:
parent
8e394aec14
commit
46c43db1ea
1 changed files with 1 additions and 1 deletions
|
@ -1084,7 +1084,7 @@ static void scsi_setup_blk_pc_cmnd(struct scsi_cmnd *cmd)
|
||||||
{
|
{
|
||||||
struct request *req = cmd->request;
|
struct request *req = cmd->request;
|
||||||
|
|
||||||
BUG_ON(sizeof(req->cmd) > sizeof(cmd->cmnd));
|
BUILD_BUG_ON(sizeof(req->cmd) > sizeof(cmd->cmnd));
|
||||||
memcpy(cmd->cmnd, req->cmd, sizeof(cmd->cmnd));
|
memcpy(cmd->cmnd, req->cmd, sizeof(cmd->cmnd));
|
||||||
cmd->cmd_len = req->cmd_len;
|
cmd->cmd_len = req->cmd_len;
|
||||||
if (!req->data_len)
|
if (!req->data_len)
|
||||||
|
|
Loading…
Add table
Reference in a new issue