The patch titled ehca: fix memleak on module unloading has been added to the -mm tree. Its filename is ehca-fix-memleak-on-module-unloading.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ 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@xxxxxxxx> --- 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 @@ -785,6 +785,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 powerpc-use-is_init.patch git-dvb.patch ehca-fix-kthread_create-error-check.patch ehca-fix-do_mmap-error-check.patch ehca-avoid-crash-on-kthread_create-failure.patch return-error-on-create_comp_task-failure.patch ehca-fix-memleak-on-module-unloading.patch git-input.patch git-mtd.patch net-use-bitrev8.patch auth_gss-unregister-gss_domain-when-unloading-module.patch iscsi-fix-crypto_alloc_hash-error-check.patch git-watchdog.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