Commit b661b50b authored by Stephen M. Cameron's avatar Stephen M. Cameron Committed by Sasha Levin

hpsa: fix bad -ENOMEM return value in hpsa_big_passthru_ioctl

When copy_from_user fails, return -EFAULT, not -ENOMEM
Signed-off-by: default avatarStephen M. Cameron <scameron@beardog.cce.hp.com>
Reported-by: default avatarRobert Elliott <elliott@hp.com>
Reviewed-by: default avatarJoe Handzik <joseph.t.handzik@hp.com>
Reviewed-by: default avatarScott Teel <scott.teel@hp.com>
Reviewed by: Mike MIller <michael.miller@canonical.com>
Cc: <stable@vger.kernel.org>
Signed-off-by: default avatarChristoph Hellwig <hch@lst.de>

(cherry picked from commit 0758f4f7)
Signed-off-by: default avatarSasha Levin <sasha.levin@oracle.com>
parent 50fdb31f
......@@ -3116,7 +3116,7 @@ static int hpsa_big_passthru_ioctl(struct ctlr_info *h, void __user *argp)
}
if (ioc->Request.Type.Direction == XFER_WRITE) {
if (copy_from_user(buff[sg_used], data_ptr, sz)) {
status = -ENOMEM;
status = -EFAULT;
goto cleanup1;
}
} else
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment