2010-07-30 00:19:53 +00:00
|
|
|
From: Stanislaw Gruszka <sgruszka@redhat.com>
|
|
|
|
To: kernel@lists.fedoraproject.org, "John W. Linville" <linville@redhat.com>
|
2010-08-15 02:13:27 +00:00
|
|
|
Subject: [PATCH 1/4 2.6.33.y] mac80211: explicitly disable/enable QoS
|
|
|
|
Date: Fri, 11 Jun 2010 17:04:17 +0200
|
2010-07-30 00:19:53 +00:00
|
|
|
|
|
|
|
commit e1b3ec1a2a336c328c336cfa5485a5f0484cc90d upstream.
|
|
|
|
|
|
|
|
Add interface to disable/enable QoS (aka WMM or WME). Currently drivers
|
|
|
|
enable it explicitly when ->conf_tx method is called, and newer disable.
|
|
|
|
Disabling is needed for some APs, which do not support QoS, such
|
|
|
|
we should send QoS frames to them.
|
|
|
|
|
|
|
|
Signed-off-by: Stanislaw Gruszka <sgruszka@redhat.com>
|
|
|
|
---
|
|
|
|
include/net/mac80211.h | 5 +++++
|
|
|
|
net/mac80211/mlme.c | 9 ++++++++-
|
|
|
|
net/mac80211/util.c | 5 +++++
|
|
|
|
3 files changed, 18 insertions(+), 1 deletions(-)
|
|
|
|
|
|
|
|
diff --git a/include/net/mac80211.h b/include/net/mac80211.h
|
2010-08-15 02:13:27 +00:00
|
|
|
index f39b303..8c1f0ee 100644
|
2010-07-30 00:19:53 +00:00
|
|
|
--- a/include/net/mac80211.h
|
|
|
|
+++ b/include/net/mac80211.h
|
2010-08-15 02:13:27 +00:00
|
|
|
@@ -577,11 +577,15 @@ struct ieee80211_rx_status {
|
2010-07-30 00:19:53 +00:00
|
|
|
* may turn the device off as much as possible. Typically, this flag will
|
|
|
|
* be set when an interface is set UP but not associated or scanning, but
|
|
|
|
* it can also be unset in that case when monitor interfaces are active.
|
|
|
|
+ * @IEEE80211_CONF_QOS: Enable 802.11e QoS also know as WMM (Wireless
|
|
|
|
+ * Multimedia). On some drivers (iwlwifi is one of know) we have
|
|
|
|
+ * to enable/disable QoS explicitly.
|
|
|
|
*/
|
|
|
|
enum ieee80211_conf_flags {
|
|
|
|
IEEE80211_CONF_MONITOR = (1<<0),
|
|
|
|
IEEE80211_CONF_PS = (1<<1),
|
|
|
|
IEEE80211_CONF_IDLE = (1<<2),
|
|
|
|
+ IEEE80211_CONF_QOS = (1<<3),
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2010-08-15 02:13:27 +00:00
|
|
|
@@ -604,6 +608,7 @@ enum ieee80211_conf_changed {
|
2010-07-30 00:19:53 +00:00
|
|
|
IEEE80211_CONF_CHANGE_CHANNEL = BIT(6),
|
|
|
|
IEEE80211_CONF_CHANGE_RETRY_LIMITS = BIT(7),
|
|
|
|
IEEE80211_CONF_CHANGE_IDLE = BIT(8),
|
|
|
|
+ IEEE80211_CONF_CHANGE_QOS = BIT(9),
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
diff --git a/net/mac80211/mlme.c b/net/mac80211/mlme.c
|
2010-08-15 02:13:27 +00:00
|
|
|
index 1a209ac..950088d 100644
|
2010-07-30 00:19:53 +00:00
|
|
|
--- a/net/mac80211/mlme.c
|
|
|
|
+++ b/net/mac80211/mlme.c
|
2010-08-15 02:13:27 +00:00
|
|
|
@@ -798,6 +798,9 @@ static void ieee80211_sta_wmm_params(struct ieee80211_local *local,
|
2010-07-30 00:19:53 +00:00
|
|
|
int count;
|
2010-08-15 02:13:27 +00:00
|
|
|
u8 *pos;
|
2010-07-30 00:19:53 +00:00
|
|
|
|
|
|
|
+ if (!local->ops->conf_tx)
|
|
|
|
+ return;
|
|
|
|
+
|
2010-08-15 02:13:27 +00:00
|
|
|
if (!(ifmgd->flags & IEEE80211_STA_WMM_ENABLED))
|
2010-07-30 00:19:53 +00:00
|
|
|
return;
|
|
|
|
|
2010-08-15 02:13:27 +00:00
|
|
|
@@ -856,11 +859,15 @@ static void ieee80211_sta_wmm_params(struct ieee80211_local *local,
|
|
|
|
wiphy_name(local->hw.wiphy), queue, aci, acm,
|
|
|
|
params.aifs, params.cw_min, params.cw_max, params.txop);
|
2010-07-30 00:19:53 +00:00
|
|
|
#endif
|
|
|
|
- if (drv_conf_tx(local, queue, ¶ms) && local->ops->conf_tx)
|
|
|
|
+ if (drv_conf_tx(local, queue, ¶ms))
|
|
|
|
printk(KERN_DEBUG "%s: failed to set TX queue "
|
|
|
|
"parameters for queue %d\n",
|
|
|
|
wiphy_name(local->hw.wiphy), queue);
|
|
|
|
}
|
|
|
|
+
|
|
|
|
+ /* enable WMM or activate new settings */
|
|
|
|
+ local->hw.conf.flags |= IEEE80211_CONF_QOS;
|
|
|
|
+ drv_config(local, IEEE80211_CONF_CHANGE_QOS);
|
|
|
|
}
|
|
|
|
|
|
|
|
static u32 ieee80211_handle_bss_capability(struct ieee80211_sub_if_data *sdata,
|
|
|
|
diff --git a/net/mac80211/util.c b/net/mac80211/util.c
|
2010-08-15 02:13:27 +00:00
|
|
|
index 27212e8..9e35dcb 100644
|
2010-07-30 00:19:53 +00:00
|
|
|
--- a/net/mac80211/util.c
|
|
|
|
+++ b/net/mac80211/util.c
|
2010-08-15 02:13:27 +00:00
|
|
|
@@ -795,6 +795,11 @@ void ieee80211_set_wmm_default(struct ieee80211_sub_if_data *sdata)
|
2010-07-30 00:19:53 +00:00
|
|
|
|
|
|
|
drv_conf_tx(local, queue, &qparam);
|
|
|
|
}
|
|
|
|
+
|
|
|
|
+ /* after reinitialize QoS TX queues setting to default,
|
|
|
|
+ * disable QoS at all */
|
|
|
|
+ local->hw.conf.flags &= ~IEEE80211_CONF_QOS;
|
|
|
|
+ drv_config(local, IEEE80211_CONF_CHANGE_QOS);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ieee80211_sta_def_wmm_params(struct ieee80211_sub_if_data *sdata,
|
|
|
|
--
|
|
|
|
1.6.2.5
|
|
|
|
|
|
|
|
_______________________________________________
|
|
|
|
kernel mailing list
|
|
|
|
kernel@lists.fedoraproject.org
|
|
|
|
https://admin.fedoraproject.org/mailman/listinfo/kernel
|
|
|
|
|