The patch titled Subject: mm-slab-remove-unnecessary-unlikely-fix has been removed from the -mm tree. Its filename was mm-slab-remove-unnecessary-unlikely-fix.patch This patch was dropped because it was folded into mm-slab-remove-unnecessary-unlikely.patch ------------------------------------------------------ From: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> Subject: mm-slab-remove-unnecessary-unlikely-fix s/WARN_ON/WARN_ON_ONCE/, per Vlastimil Cc: Christoph Lameter <cl@xxxxxxxxx> Cc: David Rientjes <rientjes@xxxxxxxxxx> Cc: Joonsoo Kim <iamjoonsoo.kim@xxxxxxx> Cc: Pekka Enberg <penberg@xxxxxxxxxx> Cc: Vlastimil Babka <vbabka@xxxxxxx> Cc: Yangtao Li <tiny.windzz@xxxxxxxxx> Cc: Dmitry Vyukov <dvyukov@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/slab_common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/mm/slab_common.c~mm-slab-remove-unnecessary-unlikely-fix +++ a/mm/slab_common.c @@ -1029,7 +1029,7 @@ struct kmem_cache *kmalloc_slab(size_t s index = size_index[size_index_elem(size)]; } else { - if (WARN_ON(size > KMALLOC_MAX_CACHE_SIZE)) + if (WARN_ON_ONCE(size > KMALLOC_MAX_CACHE_SIZE)) return NULL; index = fls(size - 1); } _ Patches currently in -mm which might be from akpm@xxxxxxxxxxxxxxxxxxxx are mm-slab-remove-unnecessary-unlikely.patch mm-slub-record-final-state-of-slub-action-in-deactivate_slab-fix.patch mm-page_owner-clamp-read-count-to-page_size-fix.patch mm-hotplug-optimize-clear_hwpoisoned_pages-fix.patch mm-lower-the-printk-loglevel-for-__dump_page-messages-fix-fix.patch mm-memory_hotplug-print-reason-for-the-offlining-failure-fix.patch mm-memory_hotplug-be-more-verbose-for-memory-offline-failures-fix.patch mm-convert-totalram_pages-and-totalhigh_pages-variables-to-atomic-checkpatch-fixes.patch mm-page_alloc-free-order-0-pages-through-pcp-in-page_frag_free-fix.patch mm-dont-break-integrity-writeback-on-writepage-error-fix.patch mm-kmemleak-little-optimization-while-scanning-fix.patch mm-mmu_notifier-use-structure-for-invalidate_range_start-end-callback-fix-fix.patch mm-mmu_notifier-use-structure-for-invalidate_range_start-end-calls-v2-checkpatch-fixes.patch mm-memory_hotplug-deobfuscate-migration-part-of-offlining-fix.patch mm-page_alloc-enable-pcpu_drain-with-zone-capability-fix.patch mm-migrate-provide-buffer_migrate_page_norefs-fix.patch