mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 11:46:19 +00:00
/dev/zero: avoid repeated access_ok() checks
In read_zero, we check for access_ok() once for the count bytes. It is unnecessarily checked again in clear_user. Use __clear_user, which does not check for access_ok(). Signed-off-by: Nikanth Karthikesan <knikanth@suse.de> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
0b8c78f2bf
commit
bb521c5de0
1 changed files with 1 additions and 1 deletions
|
@ -690,7 +690,7 @@ static ssize_t read_zero(struct file * file, char __user * buf,
|
||||||
|
|
||||||
if (chunk > PAGE_SIZE)
|
if (chunk > PAGE_SIZE)
|
||||||
chunk = PAGE_SIZE; /* Just for latency reasons */
|
chunk = PAGE_SIZE; /* Just for latency reasons */
|
||||||
unwritten = clear_user(buf, chunk);
|
unwritten = __clear_user(buf, chunk);
|
||||||
written += chunk - unwritten;
|
written += chunk - unwritten;
|
||||||
if (unwritten)
|
if (unwritten)
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in a new issue