![]() | |||||||||||
Messages in this thread |
On Tue, 21 Dec 2004, Jesper Juhl wrote: > > In kernel/signal.c::copy_siginfo_to_user() we are calling access_ok() > unconditionally. As I see it there's no need for this since we might as > well just call copy_to_user() instead of __copy_to_user() later on and > then only get the overhead of the access_ok() check (inside > copy_to_user()) No, the "access_ok()" is to protect the other side too, ie all the "__put_user()" calls. If you remove the access_ok(), you need to also change all the __put_user() calls to "put_user()". And then the end result will be much worse code than it is right now. Linus - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ | ||||||||||
| Last update: 2005-03-22 14:08 [from the cache] ©2003-2008 | |||||||||||