Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0758f4f7 authored by Stephen M. Cameron's avatar Stephen M. Cameron Committed by Christoph Hellwig
Browse files

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>
parent d1fea47c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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