linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] rt2x00: Cleanup rt2x00mac_bss_info_changed()
@ 2009-08-26 19:04 Ivo van Doorn
  2009-08-27  7:40 ` Johannes Berg
  0 siblings, 1 reply; 3+ messages in thread
From: Ivo van Doorn @ 2009-08-26 19:04 UTC (permalink / raw)
  To: John Linville; +Cc: linux-wireless, users

Since patch "rt2x00: bss_info_changed() callback is allowed to sleep" the
variable delayed wasn't used anymore. This means it can be removed
along with the call to schedule_work which depended on that variable.

Signed-off-by: Ivo van Doorn <IvDoorn@gmail.com>
---
diff --git a/drivers/net/wireless/rt2x00/rt2x00mac.c b/drivers/net/wireless/rt2x00/rt2x00mac.c
index a91f316..929b85f 100644
--- a/drivers/net/wireless/rt2x00/rt2x00mac.c
+++ b/drivers/net/wireless/rt2x00/rt2x00mac.c
@@ -582,7 +582,6 @@ void rt2x00mac_bss_info_changed(struct ieee80211_hw *hw,
 {
 	struct rt2x00_dev *rt2x00dev = hw->priv;
 	struct rt2x00_intf *intf = vif_to_intf(vif);
-	unsigned int delayed = 0;
 	int update_bssid = 0;
 
 	/*
@@ -645,13 +644,6 @@ void rt2x00mac_bss_info_changed(struct ieee80211_hw *hw,
 	 */
 	if (changes & ~(BSS_CHANGED_ASSOC | BSS_CHANGED_HT))
 		rt2x00lib_config_erp(rt2x00dev, intf, bss_conf);
-
-	spin_lock(&intf->lock);
-	if (delayed) {
-		intf->delayed_flags |= delayed;
-		schedule_work(&rt2x00dev->intf_work);
-	}
-	spin_unlock(&intf->lock);
 }
 EXPORT_SYMBOL_GPL(rt2x00mac_bss_info_changed);
 



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

* Re: [PATCH] rt2x00: Cleanup rt2x00mac_bss_info_changed()
  2009-08-26 19:04 [PATCH] rt2x00: Cleanup rt2x00mac_bss_info_changed() Ivo van Doorn
@ 2009-08-27  7:40 ` Johannes Berg
  2009-08-27 18:49   ` Ivo van Doorn
  0 siblings, 1 reply; 3+ messages in thread
From: Johannes Berg @ 2009-08-27  7:40 UTC (permalink / raw)
  To: Ivo van Doorn; +Cc: John Linville, linux-wireless

[-- Attachment #1: Type: text/plain, Size: 439 bytes --]

On Wed, 2009-08-26 at 21:04 +0200, Ivo van Doorn wrote:
> Since patch "rt2x00: bss_info_changed() callback is allowed to sleep" the
> variable delayed wasn't used anymore. This means it can be removed
> along with the call to schedule_work which depended on that variable.

I just wanted to say thanks for doing all the cleanups. It's really nice
to see all my work on making callbacks non-atomic pay off in that way :)

johannes

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 801 bytes --]

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

* Re: [PATCH] rt2x00: Cleanup rt2x00mac_bss_info_changed()
  2009-08-27  7:40 ` Johannes Berg
@ 2009-08-27 18:49   ` Ivo van Doorn
  0 siblings, 0 replies; 3+ messages in thread
From: Ivo van Doorn @ 2009-08-27 18:49 UTC (permalink / raw)
  To: Johannes Berg; +Cc: John Linville, linux-wireless

On Thursday 27 August 2009, Johannes Berg wrote:
> On Wed, 2009-08-26 at 21:04 +0200, Ivo van Doorn wrote:
> > Since patch "rt2x00: bss_info_changed() callback is allowed to sleep" the
> > variable delayed wasn't used anymore. This means it can be removed
> > along with the call to schedule_work which depended on that variable.
> 
> I just wanted to say thanks for doing all the cleanups. It's really nice
> to see all my work on making callbacks non-atomic pay off in that way :)

yeah those kind of optimizations really help with the drivers. :)

I still have some other cleanups, but this was the easiest and most obvious one,
the others involve changing locking mechanisms so need better verification.

Ivo


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

end of thread, other threads:[~2009-08-27 18:49 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-08-26 19:04 [PATCH] rt2x00: Cleanup rt2x00mac_bss_info_changed() Ivo van Doorn
2009-08-27  7:40 ` Johannes Berg
2009-08-27 18:49   ` Ivo van Doorn

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