Hi Catalin, Today's linux-next merge of the kmemleak tree got a conflict in mm/slob.c between commit cf40bd16fdad42c053040bcd3988f5fdedbb6c57 ("lockdep: annotate reclaim context (__GFP_NOFS)") from the tip-core tree and commit 33d7fde6394827e7d12ad87faf7e0efab12882f3 ("kmemleak: Add the slob memory allocation/freeing hooks") from the kmemleak tree. Just context changes. 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 318b6dc,30b870f..0000000 --- a/mm/slob.c +++ b/mm/slob.c @@@ -501,12 -482,9 +502,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); @@@ -517,9 -495,10 +519,10 @@@ void kfree(const void *block if (unlikely(ZERO_OR_NULL_PTR(block))) return; + kmemleak_free(block); - sp = (struct slob_page *)virt_to_page(block); - if (slob_page(sp)) { + sp = slob_page(block); + if (is_slob_page(sp)) { int align = max(ARCH_KMALLOC_MINALIGN, ARCH_SLAB_MINALIGN); unsigned int *m = (unsigned int *)(block - align); slob_free(m, *m + align); -- 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