The patch titled Subject: genalloc: fix device node resource counter has been removed from the -mm tree. Its filename was genalloc-fix-device-node-resource-counter.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ From: Vladimir Zapolskiy <vladimir_zapolskiy@xxxxxxxxxx> Subject: genalloc: fix device node resource counter Decrement the np_pool device_node refcount, which was incremented on the preceding of_parse_phandle() call. Signed-off-by: Vladimir Zapolskiy <vladimir_zapolskiy@xxxxxxxxxx> Cc: Will Deacon <will.deacon@xxxxxxx> Cc: Olof Johansson <olof@xxxxxxxxx> Cc: Catalin Marinas <catalin.marinas@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- lib/genalloc.c | 1 + 1 file changed, 1 insertion(+) diff -puN lib/genalloc.c~genalloc-fix-device-node-resource-counter lib/genalloc.c --- a/lib/genalloc.c~genalloc-fix-device-node-resource-counter +++ a/lib/genalloc.c @@ -588,6 +588,7 @@ struct gen_pool *of_get_named_gen_pool(s if (!np_pool) return NULL; pdev = of_find_device_by_node(np_pool); + of_node_put(np_pool); if (!pdev) return NULL; return dev_get_gen_pool(&pdev->dev); _ Patches currently in -mm which might be from vladimir_zapolskiy@xxxxxxxxxx are -- 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