The patch titled Subject: genalloc-add-support-of-multiple-gen_pools-per-device-fix has been removed from the -mm tree. Its filename was genalloc-add-support-of-multiple-gen_pools-per-device-fix.patch This patch was dropped because it was folded into genalloc-add-support-of-multiple-gen_pools-per-device.patch ------------------------------------------------------ From: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> Subject: genalloc-add-support-of-multiple-gen_pools-per-device-fix fix constness in devres_find() Cc: Vladimir Zapolskiy <vladimir_zapolskiy@xxxxxxxxxx> Cc: Stephen Rothwell <sfr@xxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- lib/genalloc.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff -puN lib/genalloc.c~genalloc-add-support-of-multiple-gen_pools-per-device-fix lib/genalloc.c --- a/lib/genalloc.c~genalloc-add-support-of-multiple-gen_pools-per-device-fix +++ a/lib/genalloc.c @@ -596,7 +596,8 @@ struct gen_pool *gen_pool_get(struct dev { struct gen_pool **p; - p = devres_find(dev, devm_gen_pool_release, devm_gen_pool_match, name); + p = devres_find(dev, devm_gen_pool_release, devm_gen_pool_match, + (void *)name); if (!p) return NULL; return *p; _ Patches currently in -mm which might be from akpm@xxxxxxxxxxxxxxxxxxxx are kernel-kthreadc-kthread_create_on_node-clarify-documentation.patch genalloc-add-support-of-multiple-gen_pools-per-device.patch mm-make-gup-handle-pfn-mapping-unless-foll_get-is-requested-fix.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