* [PATCH v2 resend] b43: Fix memory leaks in b43_bus_dev_ssb_init and b43_bus_dev_bcma_init
@ 2016-01-16 13:08 Jia-Ju Bai
[not found] ` <1452949690-16387-1-git-send-email-baijiaju1990-9Onoh4P/yGk@public.gmane.org>
2016-03-11 16:22 ` [v2, " Sudip Mukherjee
0 siblings, 2 replies; 4+ messages in thread
From: Jia-Ju Bai @ 2016-01-16 13:08 UTC (permalink / raw)
To: kvalo, zajec5, joe, davem, m, johannes.berg
Cc: linux-wireless, b43-dev, netdev, Jia-Ju Bai
The memory allocated by kzalloc in b43_bus_dev_ssb_init and
b43_bus_dev_bcma_init is not freed.
This patch fixes the bug by adding kfree in b43_ssb_remove,
b43_bcma_remove and error handling code of b43_bcma_probe.
Thanks Michael for his suggestion.
Signed-off-by: Jia-Ju Bai <baijiaju1990@163.com>
---
drivers/net/wireless/b43/main.c | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/drivers/net/wireless/b43/main.c b/drivers/net/wireless/b43/main.c
index ec013fb..bbea769 100644
--- a/drivers/net/wireless/b43/main.c
+++ b/drivers/net/wireless/b43/main.c
@@ -5682,11 +5682,12 @@ static int b43_bcma_probe(struct bcma_device *core)
INIT_WORK(&wl->firmware_load, b43_request_firmware);
schedule_work(&wl->firmware_load);
-bcma_out:
return err;
bcma_err_wireless_exit:
ieee80211_free_hw(wl->hw);
+bcma_out:
+ kfree(dev);
return err;
}
@@ -5714,8 +5715,8 @@ static void b43_bcma_remove(struct bcma_device *core)
b43_rng_exit(wl);
b43_leds_unregister(wl);
-
ieee80211_free_hw(wl->hw);
+ kfree(wldev->dev);
}
static struct bcma_driver b43_bcma_driver = {
@@ -5798,6 +5799,7 @@ static void b43_ssb_remove(struct ssb_device *sdev)
b43_leds_unregister(wl);
b43_wireless_exit(dev, wl);
+ kfree(dev);
}
static struct ssb_driver b43_ssb_driver = {
--
1.7.9.5
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH v2 resend] b43: Fix memory leaks in b43_bus_dev_ssb_init and b43_bus_dev_bcma_init
[not found] ` <1452949690-16387-1-git-send-email-baijiaju1990-9Onoh4P/yGk@public.gmane.org>
@ 2016-01-16 13:13 ` Michael Büsch
2016-01-16 13:17 ` Jia-Ju Bai
0 siblings, 1 reply; 4+ messages in thread
From: Michael Büsch @ 2016-01-16 13:13 UTC (permalink / raw)
To: Jia-Ju Bai
Cc: johannes.berg-ral2JQCrhuEAvxtiuMwx3w,
netdev-u79uwXL29TY76Z2rM5mHXA,
linux-wireless-u79uwXL29TY76Z2rM5mHXA,
b43-dev-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
joe-6d6DIl74uiNBDgjK7y7TUQ, davem-fT/PcQaiUtIeIZ0/mPfg9Q,
kvalo-sgV2jX0FEOL9JmXXK+q4OQ
[-- Attachment #1.1: Type: text/plain, Size: 1732 bytes --]
On Sat, 16 Jan 2016 21:08:10 +0800
Jia-Ju Bai <baijiaju1990-9Onoh4P/yGk@public.gmane.org> wrote:
> The memory allocated by kzalloc in b43_bus_dev_ssb_init and
> b43_bus_dev_bcma_init is not freed.
> This patch fixes the bug by adding kfree in b43_ssb_remove,
> b43_bcma_remove and error handling code of b43_bcma_probe.
>
> Thanks Michael for his suggestion.
>
> Signed-off-by: Jia-Ju Bai <baijiaju1990-9Onoh4P/yGk@public.gmane.org>
> ---
> drivers/net/wireless/b43/main.c | 6 ++++--
> 1 file changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/net/wireless/b43/main.c b/drivers/net/wireless/b43/main.c
> index ec013fb..bbea769 100644
> --- a/drivers/net/wireless/b43/main.c
> +++ b/drivers/net/wireless/b43/main.c
> @@ -5682,11 +5682,12 @@ static int b43_bcma_probe(struct bcma_device *core)
> INIT_WORK(&wl->firmware_load, b43_request_firmware);
> schedule_work(&wl->firmware_load);
>
> -bcma_out:
> return err;
>
> bcma_err_wireless_exit:
> ieee80211_free_hw(wl->hw);
> +bcma_out:
> + kfree(dev);
> return err;
> }
>
> @@ -5714,8 +5715,8 @@ static void b43_bcma_remove(struct bcma_device *core)
> b43_rng_exit(wl);
>
> b43_leds_unregister(wl);
> -
> ieee80211_free_hw(wl->hw);
> + kfree(wldev->dev);
> }
>
> static struct bcma_driver b43_bcma_driver = {
> @@ -5798,6 +5799,7 @@ static void b43_ssb_remove(struct ssb_device *sdev)
>
> b43_leds_unregister(wl);
> b43_wireless_exit(dev, wl);
> + kfree(dev);
> }
>
> static struct ssb_driver b43_ssb_driver = {
This still needs to be tested on both ssb and bcma devices. As long as
it's untested, there is no need to resend it to the maintainers.
--
Michael
[-- Attachment #1.2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
[-- Attachment #2: Type: text/plain, Size: 179 bytes --]
_______________________________________________
b43-dev mailing list
b43-dev-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org
http://lists.infradead.org/mailman/listinfo/b43-dev
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v2 resend] b43: Fix memory leaks in b43_bus_dev_ssb_init and b43_bus_dev_bcma_init
2016-01-16 13:13 ` Michael Büsch
@ 2016-01-16 13:17 ` Jia-Ju Bai
0 siblings, 0 replies; 4+ messages in thread
From: Jia-Ju Bai @ 2016-01-16 13:17 UTC (permalink / raw)
To: Michael Büsch
Cc: kvalo-sgV2jX0FEOL9JmXXK+q4OQ, zajec5-Re5JQEeQqe8AvxtiuMwx3w,
joe-6d6DIl74uiNBDgjK7y7TUQ, davem-fT/PcQaiUtIeIZ0/mPfg9Q,
johannes.berg-ral2JQCrhuEAvxtiuMwx3w,
linux-wireless-u79uwXL29TY76Z2rM5mHXA,
b43-dev-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
netdev-u79uwXL29TY76Z2rM5mHXA
On 01/16/2016 09:13 PM, Michael Büsch wrote:
>
> This still needs to be tested on both ssb and bcma devices. As long as
> it's untested, there is no need to resend it to the maintainers.
>
Okay, thanks for the reply :)
Jia-Ju Bai
--
To unsubscribe from this list: send the line "unsubscribe linux-wireless" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [v2, resend] b43: Fix memory leaks in b43_bus_dev_ssb_init and b43_bus_dev_bcma_init
2016-01-16 13:08 [PATCH v2 resend] b43: Fix memory leaks in b43_bus_dev_ssb_init and b43_bus_dev_bcma_init Jia-Ju Bai
[not found] ` <1452949690-16387-1-git-send-email-baijiaju1990-9Onoh4P/yGk@public.gmane.org>
@ 2016-03-11 16:22 ` Sudip Mukherjee
1 sibling, 0 replies; 4+ messages in thread
From: Sudip Mukherjee @ 2016-03-11 16:22 UTC (permalink / raw)
To: Jia-Ju Bai
Cc: kvalo, zajec5, joe, davem, m, johannes.berg, linux-wireless,
b43-dev, netdev
On Sat, Jan 16, 2016 at 09:08:10PM +0800, Jia-Ju Bai wrote:
> The memory allocated by kzalloc in b43_bus_dev_ssb_init and
> b43_bus_dev_bcma_init is not freed.
> This patch fixes the bug by adding kfree in b43_ssb_remove,
> b43_bcma_remove and error handling code of b43_bcma_probe.
>
> Thanks Michael for his suggestion.
>
> Signed-off-by: Jia-Ju Bai <baijiaju1990@163.com>
The patch did not apply cleanly. I had to edit the patch to point to
drivers/net/wireless/broadcom/b43/main.c
For CONFIG_B43_SSB part-
Tested-by: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
regards
sudip
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2016-03-11 16:22 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-01-16 13:08 [PATCH v2 resend] b43: Fix memory leaks in b43_bus_dev_ssb_init and b43_bus_dev_bcma_init Jia-Ju Bai
[not found] ` <1452949690-16387-1-git-send-email-baijiaju1990-9Onoh4P/yGk@public.gmane.org>
2016-01-16 13:13 ` Michael Büsch
2016-01-16 13:17 ` Jia-Ju Bai
2016-03-11 16:22 ` [v2, " Sudip Mukherjee
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).