The patch titled /dev/zero: avoid repeated access_ok() checks has been added to the -mm tree. Its filename is dev-zero-avoid-repeated-access_ok-checks.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://userweb.kernel.org/~akpm/stuff/added-to-mm.txt to find out what to do about this The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: /dev/zero: avoid repeated access_ok() checks From: Nikanth Karthikesan <knikanth@xxxxxxx> 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@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/char/mem.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/char/mem.c~dev-zero-avoid-repeated-access_ok-checks drivers/char/mem.c --- a/drivers/char/mem.c~dev-zero-avoid-repeated-access_ok-checks +++ a/drivers/char/mem.c @@ -690,7 +690,7 @@ static ssize_t read_zero(struct file * f if (chunk > PAGE_SIZE) chunk = PAGE_SIZE; /* Just for latency reasons */ - unwritten = clear_user(buf, chunk); + unwritten = __clear_user(buf, chunk); written += chunk - unwritten; if (unwritten) break; _ Patches currently in -mm which might be from knikanth@xxxxxxx are dev-zero-avoid-repeated-access_ok-checks.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html