The patch titled ubi: remove inverted check in ltree_entry_ctor has been added to the -mm tree. Its filename is ubi-remove-inverted-check-in-ltree_entry_ctor.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: ubi: remove inverted check in ltree_entry_ctor From: Christoph Lameter <clameter@xxxxxxx> Check is inverted and thus the ctor never does what it is supposed to do. The check is poinless since SLAB_CTOR_CONSTRUCTOR is always set. So remove. Signed-off-by: Christoph Lameter <clameter@xxxxxxx> Cc: Artem Bityutskiy <Artem.Bityutskiy@xxxxxxxxx> Cc: David Woodhouse <dwmw2@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/mtd/ubi/eba.c | 3 --- 1 files changed, 3 deletions(-) diff -puN drivers/mtd/ubi/eba.c~ubi-remove-inverted-check-in-ltree_entry_ctor drivers/mtd/ubi/eba.c --- a/drivers/mtd/ubi/eba.c~ubi-remove-inverted-check-in-ltree_entry_ctor +++ a/drivers/mtd/ubi/eba.c @@ -940,9 +940,6 @@ static void ltree_entry_ctor(void *obj, { struct ltree_entry *le = obj; - if (flags & SLAB_CTOR_CONSTRUCTOR) - return; - le->users = 0; init_rwsem(&le->mutex); } _ Patches currently in -mm which might be from clameter@xxxxxxx are origin.patch vm-statistics-make-timer-deferrable.patch quicklist-support-for-ia64.patch ubi-remove-inverted-check-in-ltree_entry_ctor.patch quicklist-support-for-x86_64.patch slub-i386-support.patch change-zonelist-order-zonelist-order-selection-logic.patch change-zonelist-order-v6-zonelist-fix.patch change-zonelist-order-auto-configuration.patch change-zonelist-order-documentaion.patch group-short-lived-and-reclaimable-kernel-allocations-use-slab_account_reclaim-to-determine-when-__gfp_reclaimable-should-be-used.patch group-short-lived-and-reclaimable-kernel-allocations-use-slab_account_reclaim-to-determine-when-__gfp_reclaimable-should-be-used-fix.patch slub-mm-only-make-slub-the-default-slab-allocator.patch slub-exploit-page-mobility-to-increase-allocation-order.patch slub-reduce-antifrag-max-order.patch slub-reduce-antifrag-max-order-use-antifrag-constant-instead-of-hardcoding-page-order.patch define-percpu-smp-cacheline-align-interface.patch call-percpu-smp-cacheline-algin-interface.patch remove-constructor-from-buffer_head.patch mm-implement-swap-prefetching.patch revoke-core-code.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html