Hi Catalin, Today's linux-next merge of the kmemleak tree got a conflict in mm/slob.c between commit 3eae2cb24a96509e0a38cc48dc1538a2826f4e33 ("kmemtrace: SLOB hooks") from the ftrace tree and commit 19f8f253a808d317d34ccbbad3b15a1a8d2ac444 ("kmemleak: Add the slob memory allocation/freeing hooks") from the kmemleak tree. I fixed it up (see below) and can carry the fix as necessary. -- Cheers, Stephen Rothwell sfr@xxxxxxxxxxxxxxxx http://www.canb.auug.org.au/~sfr/ diff --cc mm/slob.c index 4d1c0fc,30b870f..0000000 --- a/mm/slob.c +++ b/mm/slob.c @@@ -489,12 -482,9 +490,13 @@@ void *__kmalloc_node(size_t size, gfp_ page = virt_to_page(ret); page->private = size; } + + kmemtrace_mark_alloc_node(KMEMTRACE_TYPE_KMALLOC, + _RET_IP_, ret, + size, PAGE_SIZE << order, gfp, node); } + kmemleak_alloc(ret, size, 1, gfp); return ret; } EXPORT_SYMBOL(__kmalloc_node); -- To unsubscribe from this list: send the line "unsubscribe linux-next" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html