Adrian Bunk wrote:
slab_address() can become static.Signed-off-by: Adrian Bunk <[EMAIL PROTECTED]> --- fdd710f00d8bed8413c160685bc5229ec15b4d9f diff --git a/mm/slub.c b/mm/slub.c index e2989ae..af83daf 100644 --- a/mm/slub.c +++ b/mm/slub.c @@ -308,7 +308,7 @@ static inline int is_end(void *addr) return (unsigned long)addr & PAGE_MAPPING_ANON; }-void *slab_address(struct page *page)+static void *slab_address(struct page *page) { return page->end - PAGE_MAPPING_ANON; }
Acked-by: Pekka Enberg <[EMAIL PROTECTED]> -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

