netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] net:wireless:Add proper locking for the function, b43_op_beacon_set_tim in main.c
@ 2015-01-25  7:06 Nicholas Krause
  2015-01-25  8:14 ` Rafał Miłecki
  2015-01-25 16:51 ` Larry Finger
  0 siblings, 2 replies; 3+ messages in thread
From: Nicholas Krause @ 2015-01-25  7:06 UTC (permalink / raw)
  To: stefano.brivio-hl5o88x/ua9eoWH0uzbU5w
  Cc: netdev-u79uwXL29TY76Z2rM5mHXA,
	linux-wireless-u79uwXL29TY76Z2rM5mHXA,
	b43-dev-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
	kvalo-sgV2jX0FEOL9JmXXK+q4OQ, linux-kernel-u79uwXL29TY76Z2rM5mHXA

Adds proper locking for the function, b43_op_beacon_set_tim in main.c that internally calls b43_update_templates.
Due to the function that is being called internally,b43_update_templates needing the mutex lock of the structure
pointer wl passed  it to run successfully and without issues we add the calls to mutex_lock before and mutex_unlock
after it's call internally in b43_op_beacon_set_tim in order to allow the function,,b43_update_templates to run
successfully and without issues related to concurrent access.

Signed-off-by: Nicholas Krause <xerofoify-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
---
 drivers/net/wireless/b43/main.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/net/wireless/b43/main.c b/drivers/net/wireless/b43/main.c
index 47731cb..b807958 100644
--- a/drivers/net/wireless/b43/main.c
+++ b/drivers/net/wireless/b43/main.c
@@ -5094,8 +5094,9 @@ static int b43_op_beacon_set_tim(struct ieee80211_hw *hw,
 {
 	struct b43_wl *wl = hw_to_b43_wl(hw);
 
-	/* FIXME: add locking */
+	mutex_lock(&wl->mutex);
 	b43_update_templates(wl);
+	mutex_unlock(&wl->mutex);
 
 	return 0;
 }
-- 
2.1.0

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] net:wireless:Add proper locking for the function, b43_op_beacon_set_tim in main.c
  2015-01-25  7:06 [PATCH] net:wireless:Add proper locking for the function, b43_op_beacon_set_tim in main.c Nicholas Krause
@ 2015-01-25  8:14 ` Rafał Miłecki
  2015-01-25 16:51 ` Larry Finger
  1 sibling, 0 replies; 3+ messages in thread
From: Rafał Miłecki @ 2015-01-25  8:14 UTC (permalink / raw)
  To: Nicholas Krause
  Cc: Stefano Brivio, Network Development,
	linux-wireless@vger.kernel.org, b43-dev, Kalle Valo,
	Linux Kernel Mailing List

On 25 January 2015 at 08:06, Nicholas Krause <xerofoify@gmail.com> wrote:
> Adds proper locking for the function, b43_op_beacon_set_tim in main.c that internally calls b43_update_templates.
> Due to the function that is being called internally,b43_update_templates needing the mutex lock of the structure
> pointer wl passed  it to run successfully and without issues we add the calls to mutex_lock before and mutex_unlock
> after it's call internally in b43_op_beacon_set_tim in order to allow the function,,b43_update_templates to run
> successfully and without issues related to concurrent access.

Nack

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] net:wireless:Add proper locking for the function, b43_op_beacon_set_tim in main.c
  2015-01-25  7:06 [PATCH] net:wireless:Add proper locking for the function, b43_op_beacon_set_tim in main.c Nicholas Krause
  2015-01-25  8:14 ` Rafał Miłecki
@ 2015-01-25 16:51 ` Larry Finger
  1 sibling, 0 replies; 3+ messages in thread
From: Larry Finger @ 2015-01-25 16:51 UTC (permalink / raw)
  To: Nicholas Krause; +Cc: netdev, linux-wireless, b43-dev, kvalo, linux-kernel

On 01/25/2015 01:06 AM, Nicholas Krause wrote:
> Adds proper locking for the function, b43_op_beacon_set_tim in main.c that internally calls b43_update_templates.
> Due to the function that is being called internally,b43_update_templates needing the mutex lock of the structure
> pointer wl passed  it to run successfully and without issues we add the calls to mutex_lock before and mutex_unlock
> after it's call internally in b43_op_beacon_set_tim in order to allow the function,,b43_update_templates to run
> successfully and without issues related to concurrent access.
>
> Signed-off-by: Nicholas Krause <xerofoify@gmail.com>
> ---
>   drivers/net/wireless/b43/main.c | 3 ++-
>   1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/net/wireless/b43/main.c b/drivers/net/wireless/b43/main.c
> index 47731cb..b807958 100644
> --- a/drivers/net/wireless/b43/main.c
> +++ b/drivers/net/wireless/b43/main.c
> @@ -5094,8 +5094,9 @@ static int b43_op_beacon_set_tim(struct ieee80211_hw *hw,
>   {
>   	struct b43_wl *wl = hw_to_b43_wl(hw);
>
> -	/* FIXME: add locking */
> +	mutex_lock(&wl->mutex);
>   	b43_update_templates(wl);
> +	mutex_unlock(&wl->mutex);
>
>   	return 0;
>   }

Nicolas,

You must be an idiot for resubmitting this patch after Michael Busch clearly 
told you that this patch can *never* work as we are in atomic context here! If 
you are looking for patch credits, submitting one that messes with locking *that 
you have never tested* will certainly get you notoriety on the Internet, but I 
doubt that you want that bad a reputation!!

NACK.

Larry

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2015-01-25 16:51 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-01-25  7:06 [PATCH] net:wireless:Add proper locking for the function, b43_op_beacon_set_tim in main.c Nicholas Krause
2015-01-25  8:14 ` Rafał Miłecki
2015-01-25 16:51 ` Larry Finger

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).