The patch titled ehca: fix memleak on module unloading has been removed from the -mm tree. Its filename was ehca-fix-memleak-on-module-unloading.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: ehca: fix memleak on module unloading From: Akinobu Mita <akinobu.mita@xxxxxxxxx> Percpu data is not freed on module unloading. Cc: Heiko Carstens <heiko.carstens@xxxxxxxxxx> Cc: Hoang-Nam Nguyen <hnguyen@xxxxxxxxxx> Cc: Christoph Raisch <raisch@xxxxxxxxxx> Signed-off-by: Akinobu Mita <akinobu.mita@xxxxxxxxx> Cc: Roland Dreier <rolandd@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/infiniband/hw/ehca/ehca_irq.c | 2 ++ 1 file changed, 2 insertions(+) diff -puN drivers/infiniband/hw/ehca/ehca_irq.c~ehca-fix-memleak-on-module-unloading drivers/infiniband/hw/ehca/ehca_irq.c --- a/drivers/infiniband/hw/ehca/ehca_irq.c~ehca-fix-memleak-on-module-unloading +++ a/drivers/infiniband/hw/ehca/ehca_irq.c @@ -756,6 +756,8 @@ void ehca_destroy_comp_pool(void) if (cpu_online(i)) destroy_comp_task(pool, i); } + free_percpu(pool->cpu_comp_tasks); + kfree(pool); #endif return; _ Patches currently in -mm which might be from akinobu.mita@xxxxxxxxx are origin.patch git-infiniband.patch git-input.patch auth_gss-unregister-gss_domain-when-unloading-module.patch git-watchdog.patch simplify-the-stacktrace-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