diff options
Diffstat (limited to 'samples/kfifo/record-example.c')
| -rw-r--r-- | samples/kfifo/record-example.c | 8 | 
1 files changed, 6 insertions, 2 deletions
diff --git a/samples/kfifo/record-example.c b/samples/kfifo/record-example.c index c507998a2617..f64f3d62d6c2 100644 --- a/samples/kfifo/record-example.c +++ b/samples/kfifo/record-example.c @@ -129,8 +129,10 @@ static ssize_t fifo_write(struct file *file, const char __user *buf,  	ret = kfifo_from_user(&test, buf, count, &copied);  	mutex_unlock(&write_lock); +	if (ret) +		return ret; -	return ret ? ret : copied; +	return copied;  }  static ssize_t fifo_read(struct file *file, char __user *buf, @@ -145,8 +147,10 @@ static ssize_t fifo_read(struct file *file, char __user *buf,  	ret = kfifo_to_user(&test, buf, count, &copied);  	mutex_unlock(&read_lock); +	if (ret) +		return ret; -	return ret ? ret : copied; +	return copied;  }  static const struct proc_ops fifo_proc_ops = {  |