Skip to content

Commit

Permalink
ptp: Return -EFAULT on copy_to_user() errors
Browse files Browse the repository at this point in the history
copy_to_user() returns the number of bytes remaining, but we want a
negative error code in ptp_ioctl.

Signed-off-by: Dan Carpenter <[email protected]>
Acked-by: Richard Cochran <[email protected]>
Signed-off-by: John Stultz <[email protected]>
  • Loading branch information
error27 authored and johnstultz-work committed Jun 2, 2011
1 parent 1fa7b6a commit e23ef22
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion drivers/ptp/ptp_chardev.c
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ long ptp_ioctl(struct posix_clock *pc, unsigned int cmd, unsigned long arg)
caps.n_ext_ts = ptp->info->n_ext_ts;
caps.n_per_out = ptp->info->n_per_out;
caps.pps = ptp->info->pps;
err = copy_to_user((void __user *)arg, &caps, sizeof(caps));
if (copy_to_user((void __user *)arg, &caps, sizeof(caps)))
err = -EFAULT;
break;

case PTP_EXTTS_REQUEST:
Expand Down

0 comments on commit e23ef22

Please sign in to comment.