On Thu, 2008-12-18 at 10:15 -0800, Mike Waychison wrote:
__get_free_page() sucks. It doesn't do cool stuff like redzoning when
you have slab debugging turned on. :)
I would personally suggest never using __get_free_page() unless you
truly need a *PAGE*. That's an aligned, and PAGE_SIZE chunk. If you
don't need alignment, or don't literally need a 'struct page', don't use
it.
-- Dave
--