mirror of
https://github.com/team-infusion-developers/android_kernel_samsung_msm8976.git
synced 2024-11-01 10:33:27 +00:00
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>
This commit is contained in:
parent
d27a736c7a
commit
61a4e9e91d
2 changed files with 9 additions and 3 deletions
|
@ -208,6 +208,7 @@ int ucc_fast_init(struct ucc_fast_info * uf_info, struct ucc_fast_private ** ucc
|
||||||
uccf->uf_regs = ioremap(uf_info->regs, sizeof(struct ucc_fast));
|
uccf->uf_regs = ioremap(uf_info->regs, sizeof(struct ucc_fast));
|
||||||
if (uccf->uf_regs == NULL) {
|
if (uccf->uf_regs == NULL) {
|
||||||
printk(KERN_ERR "%s: Cannot map UCC registers\n", __func__);
|
printk(KERN_ERR "%s: Cannot map UCC registers\n", __func__);
|
||||||
|
kfree(uccf);
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -355,6 +356,9 @@ void ucc_fast_free(struct ucc_fast_private * uccf)
|
||||||
if (uccf->ucc_fast_rx_virtual_fifo_base_offset)
|
if (uccf->ucc_fast_rx_virtual_fifo_base_offset)
|
||||||
qe_muram_free(uccf->ucc_fast_rx_virtual_fifo_base_offset);
|
qe_muram_free(uccf->ucc_fast_rx_virtual_fifo_base_offset);
|
||||||
|
|
||||||
|
if (uccf->uf_regs)
|
||||||
|
iounmap(uccf->uf_regs);
|
||||||
|
|
||||||
kfree(uccf);
|
kfree(uccf);
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL(ucc_fast_free);
|
EXPORT_SYMBOL(ucc_fast_free);
|
||||||
|
|
|
@ -171,6 +171,7 @@ int ucc_slow_init(struct ucc_slow_info * us_info, struct ucc_slow_private ** ucc
|
||||||
uccs->us_regs = ioremap(us_info->regs, sizeof(struct ucc_slow));
|
uccs->us_regs = ioremap(us_info->regs, sizeof(struct ucc_slow));
|
||||||
if (uccs->us_regs == NULL) {
|
if (uccs->us_regs == NULL) {
|
||||||
printk(KERN_ERR "%s: Cannot map UCC registers\n", __func__);
|
printk(KERN_ERR "%s: Cannot map UCC registers\n", __func__);
|
||||||
|
kfree(uccs);
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -367,10 +368,11 @@ void ucc_slow_free(struct ucc_slow_private * uccs)
|
||||||
if (uccs->tx_base_offset)
|
if (uccs->tx_base_offset)
|
||||||
qe_muram_free(uccs->tx_base_offset);
|
qe_muram_free(uccs->tx_base_offset);
|
||||||
|
|
||||||
if (uccs->us_pram) {
|
if (uccs->us_pram)
|
||||||
qe_muram_free(uccs->us_pram_offset);
|
qe_muram_free(uccs->us_pram_offset);
|
||||||
uccs->us_pram = NULL;
|
|
||||||
}
|
if (uccs->us_regs)
|
||||||
|
iounmap(uccs->us_regs);
|
||||||
|
|
||||||
kfree(uccs);
|
kfree(uccs);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue