mirror of https://gitee.com/openkylin/linux.git
drm/msm: return -EFAULT instead of bytes remaining
copy_to/from_user returns the number of bytes remaining to be copied but we want to return -EFAULT. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Rob Clark <robdclark@gmail.com>
This commit is contained in:
parent
06f3217207
commit
5745d21f9a
|
@ -132,7 +132,7 @@ static ssize_t perf_read(struct file *file, char __user *buf,
|
|||
size_t sz, loff_t *ppos)
|
||||
{
|
||||
struct msm_perf_state *perf = file->private_data;
|
||||
int n = 0, ret;
|
||||
int n = 0, ret = 0;
|
||||
|
||||
mutex_lock(&perf->read_lock);
|
||||
|
||||
|
@ -143,9 +143,10 @@ static ssize_t perf_read(struct file *file, char __user *buf,
|
|||
}
|
||||
|
||||
n = min((int)sz, perf->buftot - perf->bufpos);
|
||||
ret = copy_to_user(buf, &perf->buf[perf->bufpos], n);
|
||||
if (ret)
|
||||
if (copy_to_user(buf, &perf->buf[perf->bufpos], n)) {
|
||||
ret = -EFAULT;
|
||||
goto out;
|
||||
}
|
||||
|
||||
perf->bufpos += n;
|
||||
*ppos += n;
|
||||
|
|
|
@ -149,9 +149,10 @@ static ssize_t rd_read(struct file *file, char __user *buf,
|
|||
goto out;
|
||||
|
||||
n = min_t(int, sz, circ_count_to_end(&rd->fifo));
|
||||
ret = copy_to_user(buf, fptr, n);
|
||||
if (ret)
|
||||
if (copy_to_user(buf, fptr, n)) {
|
||||
ret = -EFAULT;
|
||||
goto out;
|
||||
}
|
||||
|
||||
fifo->tail = (fifo->tail + n) & (BUF_SZ - 1);
|
||||
*ppos += n;
|
||||
|
|
Loading…
Reference in New Issue