On Mon, 2014-10-27 at 19:46 +0300, Andrey Ryabinin wrote: > Remove static and add function declarations to mm/slab.h so they > could be used by kernel address sanitizer. [] > diff --git a/include/linux/slub_def.h b/include/linux/slub_def.h [] > @@ -115,4 +115,8 @@ static inline void *virt_to_obj(struct kmem_cache *s, > void *slab_page, void *x) [] > +void slab_err(struct kmem_cache *s, struct page *page, const char *fmt, ...); > +void object_err(struct kmem_cache *s, struct page *page, > + u8 *object, char *reason);
Please add __printf(3, 4) to have the compiler catch format and argument mismatches. -- 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/

