diff options
author | Stephen M. Cameron <[email protected]> | 2014-07-03 10:18:03 -0500 |
---|---|---|
committer | Christoph Hellwig <[email protected]> | 2014-07-25 17:17:00 -0400 |
commit | 0758f4f732b08b6ef07f2e5f735655cf69fea477 (patch) | |
tree | 1a0a8baee1e9fa9b41f853e4831d2cc2fcf0fa38 | |
parent | d1fea47c36c13df5fc7e5a379ed5c4d2059de583 (diff) |
hpsa: fix bad -ENOMEM return value in hpsa_big_passthru_ioctl
When copy_from_user fails, return -EFAULT, not -ENOMEM
Signed-off-by: Stephen M. Cameron <[email protected]>
Reported-by: Robert Elliott <[email protected]>
Reviewed-by: Joe Handzik <[email protected]>
Reviewed-by: Scott Teel <[email protected]>
Reviewed by: Mike MIller <[email protected]>
Cc: <[email protected]>
Signed-off-by: Christoph Hellwig <[email protected]>
-rw-r--r-- | drivers/scsi/hpsa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/hpsa.c b/drivers/scsi/hpsa.c index e58581c320ee..8545d1826725 100644 --- a/drivers/scsi/hpsa.c +++ b/drivers/scsi/hpsa.c @@ -5093,7 +5093,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 |