diff options
author | Timur Tabi <timur@freescale.com> | 2008-08-20 11:29:09 -0400 |
---|---|---|
committer | Kumar Gala <galak@kernel.crashing.org> | 2008-08-21 00:58:12 -0400 |
commit | 61a4e9e91dd3916ef91aa4899b7271bba0248677 (patch) | |
tree | f5efdda2417abec232276f011c4fb422959994e6 /arch/powerpc/sysdev/qe_lib/ucc_slow.c | |
parent | d27a736c7a62c3451e389aa8e0dfc64dab119b9b (diff) |
powerpc: fix memory leaks in QE library
Fix two memory leaks in the Freescale QE library: add a missing kfree() in
ucc_fast_init() and ucc_slow_init() if the ioremap() fails, and update
ucc_fast_free() and ucc_slow_free() to call iounmap() if necessary.
Based on a patch from Tony Breeds <tony@bakeyournoodle.com>.
Signed-off-by: Timur Tabi <timur@freescale.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/sysdev/qe_lib/ucc_slow.c')
-rw-r--r-- | arch/powerpc/sysdev/qe_lib/ucc_slow.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/arch/powerpc/sysdev/qe_lib/ucc_slow.c b/arch/powerpc/sysdev/qe_lib/ucc_slow.c index a578bc77b9d5..e1d6a1340157 100644 --- a/arch/powerpc/sysdev/qe_lib/ucc_slow.c +++ b/arch/powerpc/sysdev/qe_lib/ucc_slow.c | |||
@@ -171,6 +171,7 @@ int ucc_slow_init(struct ucc_slow_info * us_info, struct ucc_slow_private ** ucc | |||
171 | uccs->us_regs = ioremap(us_info->regs, sizeof(struct ucc_slow)); | 171 | uccs->us_regs = ioremap(us_info->regs, sizeof(struct ucc_slow)); |
172 | if (uccs->us_regs == NULL) { | 172 | if (uccs->us_regs == NULL) { |
173 | printk(KERN_ERR "%s: Cannot map UCC registers\n", __func__); | 173 | printk(KERN_ERR "%s: Cannot map UCC registers\n", __func__); |
174 | kfree(uccs); | ||
174 | return -ENOMEM; | 175 | return -ENOMEM; |
175 | } | 176 | } |
176 | 177 | ||
@@ -367,10 +368,11 @@ void ucc_slow_free(struct ucc_slow_private * uccs) | |||
367 | if (uccs->tx_base_offset) | 368 | if (uccs->tx_base_offset) |
368 | qe_muram_free(uccs->tx_base_offset); | 369 | qe_muram_free(uccs->tx_base_offset); |
369 | 370 | ||
370 | if (uccs->us_pram) { | 371 | if (uccs->us_pram) |
371 | qe_muram_free(uccs->us_pram_offset); | 372 | qe_muram_free(uccs->us_pram_offset); |
372 | uccs->us_pram = NULL; | 373 | |
373 | } | 374 | if (uccs->us_regs) |
375 | iounmap(uccs->us_regs); | ||
374 | 376 | ||
375 | kfree(uccs); | 377 | kfree(uccs); |
376 | } | 378 | } |