Skip to content

Commit

Permalink
[SCSI] megaraid: Make megaraid_ioctl() check copy_to_user() return value
Browse files Browse the repository at this point in the history
Check copy_to_user() return value in drivers/scsi/megaraid.c::megadev_ioctl()
This gets rid of this little warning:
  drivers/scsi/megaraid.c:3661: warning: ignoring return value of 'copy_to_user', declared with attribute warn_unused_result

Signed-off-by: Jesper Juhl <jesper.juhl@gmail.com>
Acked-by: "Ju, Seokmann" <Seokmann.Ju@lsil.com>
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
  • Loading branch information
Jesper Juhl authored and James Bottomley committed Sep 23, 2006
1 parent 5fcda42 commit 2d2f8d5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions drivers/scsi/megaraid.c
Original file line number Diff line number Diff line change
Expand Up @@ -3656,8 +3656,9 @@ megadev_ioctl(struct inode *inode, struct file *filep, unsigned int cmd,
* Send the request sense data also, irrespective of
* whether the user has asked for it or not.
*/
copy_to_user(upthru->reqsensearea,
pthru->reqsensearea, 14);
if (copy_to_user(upthru->reqsensearea,
pthru->reqsensearea, 14))
rval = -EFAULT;

freemem_and_return:
if( pthru->dataxferlen ) {
Expand Down

0 comments on commit 2d2f8d5

Please sign in to comment.