* [PATCH v2 1/1] mac80211: tear down all agg queues when restart/reconfig hw
@ 2010-02-03 1:17 wey-yi.w.guy
2010-02-03 8:44 ` Johannes Berg
0 siblings, 1 reply; 3+ messages in thread
From: wey-yi.w.guy @ 2010-02-03 1:17 UTC (permalink / raw)
To: johannes; +Cc: linux-wireless, Wey-Yi Guy
From: Wey-Yi Guy <wey-yi.w.guy@intel.com>
When there is a need to restart/reconfig hw, tear down all the
aggregation queues and let the mac80211 and driver get in-sync and have
the opportunity to re-establish the aggregation queues.
Signed-off-by: Wey-Yi Guy <wey-yi.w.guy@intel.com>
---
v2: add rcu_read_lock()
---
net/mac80211/util.c | 10 ++++++++++
1 files changed, 10 insertions(+), 0 deletions(-)
diff --git a/net/mac80211/util.c b/net/mac80211/util.c
index ca170b4..27e8833 100644
--- a/net/mac80211/util.c
+++ b/net/mac80211/util.c
@@ -1188,6 +1188,16 @@ int ieee80211_reconfig(struct ieee80211_local *local)
ieee80211_wake_queues_by_reason(hw,
IEEE80211_QUEUE_STOP_REASON_SUSPEND);
+ rcu_read_lock();
+
+ if (hw->flags & IEEE80211_HW_AMPDU_AGGREGATION) {
+ list_for_each_entry_rcu(sta, &local->sta_list, list) {
+ ieee80211_sta_tear_down_BA_sessions(sta);
+ }
+ }
+
+ rcu_read_unlock();
+
/*
* If this is for hw restart things are still running.
* We may want to change that later, however.
--
1.5.6.3
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH v2 1/1] mac80211: tear down all agg queues when restart/reconfig hw
2010-02-03 1:17 [PATCH v2 1/1] mac80211: tear down all agg queues when restart/reconfig hw wey-yi.w.guy
@ 2010-02-03 8:44 ` Johannes Berg
2010-02-03 15:00 ` Guy, Wey-Yi
0 siblings, 1 reply; 3+ messages in thread
From: Johannes Berg @ 2010-02-03 8:44 UTC (permalink / raw)
To: wey-yi.w.guy; +Cc: linux-wireless
[-- Attachment #1: Type: text/plain, Size: 1276 bytes --]
On Tue, 2010-02-02 at 17:17 -0800, wey-yi.w.guy@intel.com wrote:
> From: Wey-Yi Guy <wey-yi.w.guy@intel.com>
>
> When there is a need to restart/reconfig hw, tear down all the
> aggregation queues and let the mac80211 and driver get in-sync and have
> the opportunity to re-establish the aggregation queues.
>
> Signed-off-by: Wey-Yi Guy <wey-yi.w.guy@intel.com>
> ---
> v2: add rcu_read_lock()
> ---
> net/mac80211/util.c | 10 ++++++++++
> 1 files changed, 10 insertions(+), 0 deletions(-)
>
> diff --git a/net/mac80211/util.c b/net/mac80211/util.c
> index ca170b4..27e8833 100644
> --- a/net/mac80211/util.c
> +++ b/net/mac80211/util.c
> @@ -1188,6 +1188,16 @@ int ieee80211_reconfig(struct ieee80211_local *local)
> ieee80211_wake_queues_by_reason(hw,
> IEEE80211_QUEUE_STOP_REASON_SUSPEND);
>
> + rcu_read_lock();
> +
> + if (hw->flags & IEEE80211_HW_AMPDU_AGGREGATION) {
> + list_for_each_entry_rcu(sta, &local->sta_list, list) {
> + ieee80211_sta_tear_down_BA_sessions(sta);
> + }
> + }
> +
> + rcu_read_unlock();
> +
I wonder if that shouldn't be _before_ waking up the queues again, since
otherwise we'd enqueue all the frames that might have come in while
reconfiguring as aggregation frames still?
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 v2 1/1] mac80211: tear down all agg queues when restart/reconfig hw
2010-02-03 8:44 ` Johannes Berg
@ 2010-02-03 15:00 ` Guy, Wey-Yi
0 siblings, 0 replies; 3+ messages in thread
From: Guy, Wey-Yi @ 2010-02-03 15:00 UTC (permalink / raw)
To: Johannes Berg; +Cc: linux-wireless@vger.kernel.org
On Wed, 2010-02-03 at 00:44 -0800, Johannes Berg wrote:
> On Tue, 2010-02-02 at 17:17 -0800, wey-yi.w.guy@intel.com wrote:
> > From: Wey-Yi Guy <wey-yi.w.guy@intel.com>
> >
> > When there is a need to restart/reconfig hw, tear down all the
> > aggregation queues and let the mac80211 and driver get in-sync and have
> > the opportunity to re-establish the aggregation queues.
> >
> > Signed-off-by: Wey-Yi Guy <wey-yi.w.guy@intel.com>
> > ---
> > v2: add rcu_read_lock()
> > ---
> > net/mac80211/util.c | 10 ++++++++++
> > 1 files changed, 10 insertions(+), 0 deletions(-)
> >
> > diff --git a/net/mac80211/util.c b/net/mac80211/util.c
> > index ca170b4..27e8833 100644
> > --- a/net/mac80211/util.c
> > +++ b/net/mac80211/util.c
> > @@ -1188,6 +1188,16 @@ int ieee80211_reconfig(struct ieee80211_local *local)
> > ieee80211_wake_queues_by_reason(hw,
> > IEEE80211_QUEUE_STOP_REASON_SUSPEND);
> >
> > + rcu_read_lock();
> > +
> > + if (hw->flags & IEEE80211_HW_AMPDU_AGGREGATION) {
> > + list_for_each_entry_rcu(sta, &local->sta_list, list) {
> > + ieee80211_sta_tear_down_BA_sessions(sta);
> > + }
> > + }
> > +
> > + rcu_read_unlock();
> > +
>
> I wonder if that shouldn't be _before_ waking up the queues again, since
> otherwise we'd enqueue all the frames that might have come in while
> reconfiguring as aggregation frames still?
>
not sure, the current place works for my test
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2010-02-03 15:04 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-02-03 1:17 [PATCH v2 1/1] mac80211: tear down all agg queues when restart/reconfig hw wey-yi.w.guy
2010-02-03 8:44 ` Johannes Berg
2010-02-03 15:00 ` Guy, Wey-Yi
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox