On Wed, Dec 10, 2014 at 7:08 PM, Christoph Lameter <c...@linux.com> wrote: >> > +{ >> > + long d = p - page->address; >> > + >> > + return d > 0 && d < (1 << MAX_ORDER) && d < (compound_order(page) >> > << PAGE_SHIFT); >> > +} >> >> Can you elaborate on what this is doing? I don't really understand it. > > Checks if the pointer points to the slab page. Also it tres to avoid > having to call compound_order needlessly. Not sure if that optimization is > worth it.
Aah, it's the (1 << MAX_ORDER) optimization that confused me. Perhaps add a comment there to make it more obvious? I'm fine with the optimization: Reviewed-by: Pekka Enberg <penb...@kernel.org> - Pekka -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/