diff options
| author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2011-07-02 07:01:24 +0000 | 
|---|---|---|
| committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2011-07-02 07:01:24 +0000 | 
| commit | 72bfd3904838bae3050ca946cfb8e4000cc6ea2c (patch) | |
| tree | 3d6a69c963875410cc1b3e21a86348b15b985faf /package/broadcom-wl/patches/006-fix-mem-leak-on-unload.patch | |
| parent | 83366afdc541a9308de5122b6e88cbeade04db62 (diff) | |
broadcom-wl: fix memory corruption and leakage on remove (patch from #9576 by George Kashperko)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27348 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/broadcom-wl/patches/006-fix-mem-leak-on-unload.patch')
| -rw-r--r-- | package/broadcom-wl/patches/006-fix-mem-leak-on-unload.patch | 31 | 
1 files changed, 31 insertions, 0 deletions
| diff --git a/package/broadcom-wl/patches/006-fix-mem-leak-on-unload.patch b/package/broadcom-wl/patches/006-fix-mem-leak-on-unload.patch new file mode 100644 index 000000000..41c246ff8 --- /dev/null +++ b/package/broadcom-wl/patches/006-fix-mem-leak-on-unload.patch @@ -0,0 +1,31 @@ +From: George Kashperko <george@znau.edu.ua> + +Release nvram variables buffer. +Prevent block reserved by alloc_etherdev from being freed. +Signed-off-by: George Kashperko <george@znau.edu.ua> +--- +--- +--- a/driver/siutils.c ++++ b/driver/siutils.c +@@ -647,7 +647,10 @@ si_detach(si_t *sih) + #if !defined(BCMBUSTYPE) || (BCMBUSTYPE == SI_BUS) + 	if (sii != &ksii) + #endif	/* !BCMBUSTYPE || (BCMBUSTYPE == SI_BUS) */ +-		MFREE(sii->osh, sii, sizeof(si_info_t)); ++		do { ++			MFREE(sii->osh, sii, sizeof(si_info_t)); ++			nvram_exit((void *)&(sii->pub)); ++		} while (0); + } +  + void * +--- a/driver/wl_linux.c ++++ b/driver/wl_linux.c +@@ -1477,7 +1477,6 @@ wl_free_if(wl_info_t *wl, wl_if_t *wlif) + 		free_netdev(wlif->dev); + #endif + 	} +-	MFREE(wl->osh, wlif, sizeof(wl_if_t)); + } +  + #ifdef AP | 
