While testing the mcs7780 based IrDA USB dongle I've stumbled upon memory leak in irlmp_unregister_link(). Hashbin for lsaps is created in irlmp_register_link and should probably be freed in irlmp_unregister_link(). Signed-off-by: Hinko Kocevar Signed-off-by: Samuel Ortiz --- net/irda/irlmp.c | 1 + 1 file changed, 1 insertion(+) Index: net-2.6/net/irda/irlmp.c =================================================================== --- net-2.6.orig/net/irda/irlmp.c 2007-11-25 05:54:02.000000000 +0100 +++ net-2.6/net/irda/irlmp.c 2007-11-25 07:12:13.000000000 +0100 @@ -353,6 +353,7 @@ /* Final cleanup */ del_timer(&link->idle_timer); link->magic = 0; + hashbin_delete(link->lsaps, (FREE_FUNC) __irlmp_close_lsap); kfree(link); } } -- -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html