]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
rtc-core: fix memory leak
authorAaro Koskinen <aaro.koskinen@nokia.com>
Fri, 5 Mar 2010 21:44:24 +0000 (13:44 -0800)
committerGreg Kroah-Hartman <gregkh@suse.de>
Mon, 15 Mar 2010 16:05:58 +0000 (09:05 -0700)
commit 2a7a06a0cdd86d572e91657603180da5992be6d3 upstream.

The idr should be destroyed when the module is unloaded. Found with
kmemleak.

Signed-off-by: Aaro Koskinen <aaro.koskinen@nokia.com>
Cc: Alessandro Zummo <a.zummo@towertech.it>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/rtc/class.c

index be5a6b73e601c6be30966e9191c0d5315fd3d5db..40845c7e93221c7a13a236619ab8225e9638e9ca 100644 (file)
@@ -226,6 +226,7 @@ static void __exit rtc_exit(void)
 {
        rtc_dev_exit();
        class_destroy(rtc_class);
+       idr_destroy(&rtc_idr);
 }
 
 subsys_initcall(rtc_init);