[PATCH] ipw2200: Fix TX QoS enabled frames problem

This patch works with the ieee80211 stack to set the correct QoS bit to the
ipw2200 card. It fixed the TX failure problem for using WPA with QoS.

Signed-off-by: Hong Liu <hong.liu@intel.com>
Signed-off-by: Zhu Yi <yi.zhu@intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
Zhu Yi 2006-04-13 17:19:11 +08:00 committed by John W. Linville
parent 00d21de5c6
commit a5cf4fe651

View file

@ -6859,61 +6859,55 @@ static int ipw_get_tx_queue_number(struct ipw_priv *priv, u16 priority)
return from_priority_to_tx_queue[priority] - 1; return from_priority_to_tx_queue[priority] - 1;
} }
/* static int ipw_is_qos_active(struct net_device *dev,
* add QoS parameter to the TX command struct sk_buff *skb)
*/
static int ipw_qos_set_tx_queue_command(struct ipw_priv *priv,
u16 priority,
struct tfd_data *tfd, u8 unicast)
{ {
int ret = 0; struct ipw_priv *priv = ieee80211_priv(dev);
int tx_queue_id = 0;
struct ieee80211_qos_data *qos_data = NULL; struct ieee80211_qos_data *qos_data = NULL;
int active, supported; int active, supported;
unsigned long flags; u8 *daddr = skb->data + ETH_ALEN;
int unicast = !is_multicast_ether_addr(daddr);
if (!(priv->status & STATUS_ASSOCIATED)) if (!(priv->status & STATUS_ASSOCIATED))
return 0; return 0;
qos_data = &priv->assoc_network->qos_data; qos_data = &priv->assoc_network->qos_data;
spin_lock_irqsave(&priv->ieee->lock, flags);
if (priv->ieee->iw_mode == IW_MODE_ADHOC) { if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
if (unicast == 0) if (unicast == 0)
qos_data->active = 0; qos_data->active = 0;
else else
qos_data->active = qos_data->supported; qos_data->active = qos_data->supported;
} }
active = qos_data->active; active = qos_data->active;
supported = qos_data->supported; supported = qos_data->supported;
spin_unlock_irqrestore(&priv->ieee->lock, flags);
IPW_DEBUG_QOS("QoS %d network is QoS active %d supported %d " IPW_DEBUG_QOS("QoS %d network is QoS active %d supported %d "
"unicast %d\n", "unicast %d\n",
priv->qos_data.qos_enable, active, supported, unicast); priv->qos_data.qos_enable, active, supported, unicast);
if (active && priv->qos_data.qos_enable) { if (active && priv->qos_data.qos_enable)
ret = from_priority_to_tx_queue[priority]; return 1;
tx_queue_id = ret - 1;
IPW_DEBUG_QOS("QoS packet priority is %d \n", priority); return 0;
if (priority <= 7) {
}
/*
* add QoS parameter to the TX command
*/
static int ipw_qos_set_tx_queue_command(struct ipw_priv *priv,
u16 priority,
struct tfd_data *tfd)
{
int tx_queue_id = 0;
tx_queue_id = from_priority_to_tx_queue[priority] - 1;
tfd->tx_flags_ext |= DCT_FLAG_EXT_QOS_ENABLED; tfd->tx_flags_ext |= DCT_FLAG_EXT_QOS_ENABLED;
tfd->tfd.tfd_26.mchdr.qos_ctrl = priority;
tfd->tfd.tfd_26.mchdr.frame_ctl |=
IEEE80211_STYPE_QOS_DATA;
if (priv->qos_data.qos_no_ack_mask & if (priv->qos_data.qos_no_ack_mask & (1UL << tx_queue_id)) {
(1UL << tx_queue_id)) {
tfd->tx_flags &= ~DCT_FLAG_ACK_REQD; tfd->tx_flags &= ~DCT_FLAG_ACK_REQD;
tfd->tfd.tfd_26.mchdr.qos_ctrl |= tfd->tfd.tfd_26.mchdr.qos_ctrl |= CTRL_QOS_NO_ACK;
CTRL_QOS_NO_ACK;
} }
} return 0;
}
return ret;
} }
/* /*
@ -9653,7 +9647,7 @@ we need to heavily modify the ieee80211_skb_to_txb.
static int ipw_tx_skb(struct ipw_priv *priv, struct ieee80211_txb *txb, static int ipw_tx_skb(struct ipw_priv *priv, struct ieee80211_txb *txb,
int pri) int pri)
{ {
struct ieee80211_hdr_3addr *hdr = (struct ieee80211_hdr_3addr *) struct ieee80211_hdr_3addrqos *hdr = (struct ieee80211_hdr_3addrqos *)
txb->fragments[0]->data; txb->fragments[0]->data;
int i = 0; int i = 0;
struct tfd_frame *tfd; struct tfd_frame *tfd;
@ -9668,9 +9662,9 @@ static int ipw_tx_skb(struct ipw_priv *priv, struct ieee80211_txb *txb,
u16 remaining_bytes; u16 remaining_bytes;
int fc; int fc;
hdr_len = ieee80211_get_hdrlen(le16_to_cpu(hdr->frame_ctl));
switch (priv->ieee->iw_mode) { switch (priv->ieee->iw_mode) {
case IW_MODE_ADHOC: case IW_MODE_ADHOC:
hdr_len = IEEE80211_3ADDR_LEN;
unicast = !is_multicast_ether_addr(hdr->addr1); unicast = !is_multicast_ether_addr(hdr->addr1);
id = ipw_find_station(priv, hdr->addr1); id = ipw_find_station(priv, hdr->addr1);
if (id == IPW_INVALID_STATION) { if (id == IPW_INVALID_STATION) {
@ -9687,7 +9681,6 @@ static int ipw_tx_skb(struct ipw_priv *priv, struct ieee80211_txb *txb,
case IW_MODE_INFRA: case IW_MODE_INFRA:
default: default:
unicast = !is_multicast_ether_addr(hdr->addr3); unicast = !is_multicast_ether_addr(hdr->addr3);
hdr_len = IEEE80211_3ADDR_LEN;
id = 0; id = 0;
break; break;
} }
@ -9766,7 +9759,8 @@ static int ipw_tx_skb(struct ipw_priv *priv, struct ieee80211_txb *txb,
tfd->u.data.tx_flags |= DCT_FLAG_NO_WEP; tfd->u.data.tx_flags |= DCT_FLAG_NO_WEP;
#ifdef CONFIG_IPW_QOS #ifdef CONFIG_IPW_QOS
ipw_qos_set_tx_queue_command(priv, pri, &(tfd->u.data), unicast); if (fc & IEEE80211_STYPE_QOS_DATA)
ipw_qos_set_tx_queue_command(priv, pri, &(tfd->u.data));
#endif /* CONFIG_IPW_QOS */ #endif /* CONFIG_IPW_QOS */
/* payload */ /* payload */
@ -10966,6 +10960,7 @@ static int ipw_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
priv->ieee->is_queue_full = ipw_net_is_queue_full; priv->ieee->is_queue_full = ipw_net_is_queue_full;
#ifdef CONFIG_IPW_QOS #ifdef CONFIG_IPW_QOS
priv->ieee->is_qos_active = ipw_is_qos_active;
priv->ieee->handle_probe_response = ipw_handle_beacon; priv->ieee->handle_probe_response = ipw_handle_beacon;
priv->ieee->handle_beacon = ipw_handle_probe_response; priv->ieee->handle_beacon = ipw_handle_probe_response;
priv->ieee->handle_assoc_response = ipw_handle_assoc_response; priv->ieee->handle_assoc_response = ipw_handle_assoc_response;