Commit 726f11e8 authored by Bartlomiej Zolnierkiewicz's avatar Bartlomiej Zolnierkiewicz Committed by Greg Kroah-Hartman

Staging: rtl8187se: rename struct ieee80211_hdr_3addr_qos to struct ieee80211_hdr_3addrqos

Rename struct ieee80211_hdr_3addr_QOS to struct ieee80211_hdr_3addrqos
and QOS_ctl field to qos_ctl (to match the naming used by rtl8192su).
Signed-off-by: default avatarBartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 0604384d
TODO: TODO:
- prepare private ieee80211 stack for merge with rtl8192su's version: - prepare private ieee80211 stack for merge with rtl8192su's version:
- rename struct ieee80211_hdr_3addr_QOS to struct ieee80211_hdr_3addrqos
- rename struct ieee80211_hdr_QOS to struct ieee80211_hdr_4addrqos - rename struct ieee80211_hdr_QOS to struct ieee80211_hdr_4addrqos
- add hwsec_active flag to struct ieee80211_device - add hwsec_active flag to struct ieee80211_device
- add bHwSec flag to cb_desc structure - add bHwSec flag to cb_desc structure
......
...@@ -200,14 +200,14 @@ struct ieee80211_hdr_3addr { ...@@ -200,14 +200,14 @@ struct ieee80211_hdr_3addr {
u16 seq_ctl; u16 seq_ctl;
} __attribute__ ((packed)); } __attribute__ ((packed));
struct ieee80211_hdr_3addr_QOS { struct ieee80211_hdr_3addrqos {
u16 frame_ctl; u16 frame_ctl;
u16 duration_id; u16 duration_id;
u8 addr1[ETH_ALEN]; u8 addr1[ETH_ALEN];
u8 addr2[ETH_ALEN]; u8 addr2[ETH_ALEN];
u8 addr3[ETH_ALEN]; u8 addr3[ETH_ALEN];
u16 seq_ctl; u16 seq_ctl;
u16 QOS_ctl; u16 qos_ctl;
} __attribute__ ((packed)); } __attribute__ ((packed));
enum eap_type { enum eap_type {
......
...@@ -104,7 +104,7 @@ ieee80211_frag_cache_get(struct ieee80211_device *ieee, ...@@ -104,7 +104,7 @@ ieee80211_frag_cache_get(struct ieee80211_device *ieee,
unsigned int frag = WLAN_GET_SEQ_FRAG(sc); unsigned int frag = WLAN_GET_SEQ_FRAG(sc);
unsigned int seq = WLAN_GET_SEQ_SEQ(sc); unsigned int seq = WLAN_GET_SEQ_SEQ(sc);
struct ieee80211_frag_entry *entry; struct ieee80211_frag_entry *entry;
struct ieee80211_hdr_3addr_QOS *hdr_3addr_QoS; struct ieee80211_hdr_3addrqos *hdr_3addrqos;
struct ieee80211_hdr_QOS *hdr_4addr_QoS; struct ieee80211_hdr_QOS *hdr_4addr_QoS;
u8 tid; u8 tid;
...@@ -114,8 +114,8 @@ ieee80211_frag_cache_get(struct ieee80211_device *ieee, ...@@ -114,8 +114,8 @@ ieee80211_frag_cache_get(struct ieee80211_device *ieee,
tid = UP2AC(tid); tid = UP2AC(tid);
tid ++; tid ++;
} else if (IEEE80211_QOS_HAS_SEQ(fc)) { } else if (IEEE80211_QOS_HAS_SEQ(fc)) {
hdr_3addr_QoS = (struct ieee80211_hdr_3addr_QOS *)hdr; hdr_3addrqos = (struct ieee80211_hdr_3addrqos *)hdr;
tid = le16_to_cpu(hdr_3addr_QoS->QOS_ctl) & IEEE80211_QOS_TID; tid = le16_to_cpu(hdr_3addrqos->qos_ctl) & IEEE80211_QOS_TID;
tid = UP2AC(tid); tid = UP2AC(tid);
tid ++; tid ++;
} else { } else {
...@@ -171,7 +171,7 @@ static int ieee80211_frag_cache_invalidate(struct ieee80211_device *ieee, ...@@ -171,7 +171,7 @@ static int ieee80211_frag_cache_invalidate(struct ieee80211_device *ieee,
u16 sc = le16_to_cpu(hdr->seq_ctl); u16 sc = le16_to_cpu(hdr->seq_ctl);
unsigned int seq = WLAN_GET_SEQ_SEQ(sc); unsigned int seq = WLAN_GET_SEQ_SEQ(sc);
struct ieee80211_frag_entry *entry; struct ieee80211_frag_entry *entry;
struct ieee80211_hdr_3addr_QOS *hdr_3addr_QoS; struct ieee80211_hdr_3addrqos *hdr_3addrqos;
struct ieee80211_hdr_QOS *hdr_4addr_QoS; struct ieee80211_hdr_QOS *hdr_4addr_QoS;
u8 tid; u8 tid;
...@@ -181,8 +181,8 @@ static int ieee80211_frag_cache_invalidate(struct ieee80211_device *ieee, ...@@ -181,8 +181,8 @@ static int ieee80211_frag_cache_invalidate(struct ieee80211_device *ieee,
tid = UP2AC(tid); tid = UP2AC(tid);
tid ++; tid ++;
} else if (IEEE80211_QOS_HAS_SEQ(fc)) { } else if (IEEE80211_QOS_HAS_SEQ(fc)) {
hdr_3addr_QoS = (struct ieee80211_hdr_3addr_QOS *)hdr; hdr_3addrqos = (struct ieee80211_hdr_3addrqos *)hdr;
tid = le16_to_cpu(hdr_3addr_QoS->QOS_ctl) & IEEE80211_QOS_TID; tid = le16_to_cpu(hdr_3addrqos->qos_ctl) & IEEE80211_QOS_TID;
tid = UP2AC(tid); tid = UP2AC(tid);
tid ++; tid ++;
} else { } else {
...@@ -377,7 +377,7 @@ static int is_duplicate_packet(struct ieee80211_device *ieee, ...@@ -377,7 +377,7 @@ static int is_duplicate_packet(struct ieee80211_device *ieee,
u16 frag = WLAN_GET_SEQ_FRAG(sc); u16 frag = WLAN_GET_SEQ_FRAG(sc);
u16 *last_seq, *last_frag; u16 *last_seq, *last_frag;
unsigned long *last_time; unsigned long *last_time;
struct ieee80211_hdr_3addr_QOS *hdr_3addr_QoS; struct ieee80211_hdr_3addrqos *hdr_3addrqos;
struct ieee80211_hdr_QOS *hdr_4addr_QoS; struct ieee80211_hdr_QOS *hdr_4addr_QoS;
u8 tid; u8 tid;
...@@ -388,8 +388,8 @@ static int is_duplicate_packet(struct ieee80211_device *ieee, ...@@ -388,8 +388,8 @@ static int is_duplicate_packet(struct ieee80211_device *ieee,
tid = UP2AC(tid); tid = UP2AC(tid);
tid ++; tid ++;
} else if(IEEE80211_QOS_HAS_SEQ(fc)) { //QoS } else if(IEEE80211_QOS_HAS_SEQ(fc)) { //QoS
hdr_3addr_QoS = (struct ieee80211_hdr_3addr_QOS*)header; hdr_3addrqos = (struct ieee80211_hdr_3addrqos *)header;
tid = le16_to_cpu(hdr_3addr_QoS->QOS_ctl) & IEEE80211_QOS_TID; tid = le16_to_cpu(hdr_3addrqos->qos_ctl) & IEEE80211_QOS_TID;
tid = UP2AC(tid); tid = UP2AC(tid);
tid ++; tid ++;
} else { // no QoS } else { // no QoS
...@@ -476,7 +476,6 @@ int ieee80211_rx(struct ieee80211_device *ieee, struct sk_buff *skb, ...@@ -476,7 +476,6 @@ int ieee80211_rx(struct ieee80211_device *ieee, struct sk_buff *skb,
struct net_device *dev = ieee->dev; struct net_device *dev = ieee->dev;
//struct r8180_priv *priv = (struct r8180_priv *)ieee80211_priv(dev); //struct r8180_priv *priv = (struct r8180_priv *)ieee80211_priv(dev);
struct ieee80211_hdr_4addr *hdr; struct ieee80211_hdr_4addr *hdr;
//struct ieee80211_hdr_3addr_QOS *hdr;
size_t hdrlen; size_t hdrlen;
u16 fc, type, stype, sc; u16 fc, type, stype, sc;
...@@ -484,7 +483,6 @@ int ieee80211_rx(struct ieee80211_device *ieee, struct sk_buff *skb, ...@@ -484,7 +483,6 @@ int ieee80211_rx(struct ieee80211_device *ieee, struct sk_buff *skb,
unsigned int frag; unsigned int frag;
u8 *payload; u8 *payload;
u16 ethertype; u16 ethertype;
// u16 QOS_ctl = 0;
u8 dst[ETH_ALEN]; u8 dst[ETH_ALEN];
u8 src[ETH_ALEN]; u8 src[ETH_ALEN];
u8 bssid[ETH_ALEN]; u8 bssid[ETH_ALEN];
......
...@@ -310,17 +310,17 @@ int ieee80211_xmit(struct sk_buff *skb, ...@@ -310,17 +310,17 @@ int ieee80211_xmit(struct sk_buff *skb,
{ {
struct ieee80211_device *ieee = netdev_priv(dev); struct ieee80211_device *ieee = netdev_priv(dev);
struct ieee80211_txb *txb = NULL; struct ieee80211_txb *txb = NULL;
struct ieee80211_hdr_3addr_QOS *frag_hdr; struct ieee80211_hdr_3addrqos *frag_hdr;
int i, bytes_per_frag, nr_frags, bytes_last_frag, frag_size; int i, bytes_per_frag, nr_frags, bytes_last_frag, frag_size;
unsigned long flags; unsigned long flags;
struct net_device_stats *stats = &ieee->stats; struct net_device_stats *stats = &ieee->stats;
int ether_type, encrypt; int ether_type, encrypt;
int bytes, fc, QOS_ctl, hdr_len; int bytes, fc, qos_ctl, hdr_len;
struct sk_buff *skb_frag; struct sk_buff *skb_frag;
struct ieee80211_hdr_3addr_QOS header = { /* Ensure zero initialized */ struct ieee80211_hdr_3addrqos header = { /* Ensure zero initialized */
.duration_id = 0, .duration_id = 0,
.seq_ctl = 0, .seq_ctl = 0,
.QOS_ctl = 0 .qos_ctl = 0
}; };
u8 dest[ETH_ALEN], src[ETH_ALEN]; u8 dest[ETH_ALEN], src[ETH_ALEN];
...@@ -419,22 +419,23 @@ int ieee80211_xmit(struct sk_buff *skb, ...@@ -419,22 +419,23 @@ int ieee80211_xmit(struct sk_buff *skb,
if (is_multicast_ether_addr(header.addr1) || if (is_multicast_ether_addr(header.addr1) ||
is_broadcast_ether_addr(header.addr1)) { is_broadcast_ether_addr(header.addr1)) {
frag_size = MAX_FRAG_THRESHOLD; frag_size = MAX_FRAG_THRESHOLD;
QOS_ctl = QOS_CTL_NOTCONTAIN_ACK; qos_ctl = QOS_CTL_NOTCONTAIN_ACK;
} }
else { else {
//printk(KERN_WARNING "&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&frag_size = %d\n", frag_size); //printk(KERN_WARNING "&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&frag_size = %d\n", frag_size);
frag_size = ieee->fts;//default:392 frag_size = ieee->fts;//default:392
QOS_ctl = 0; qos_ctl = 0;
} }
if (ieee->current_network.QoS_Enable) { if (ieee->current_network.QoS_Enable) {
hdr_len = IEEE80211_3ADDR_LEN + 2; hdr_len = IEEE80211_3ADDR_LEN + 2;
QOS_ctl |= skb->priority; //set in the ieee80211_classify /* skb->priority is set in the ieee80211_classify() */
header.QOS_ctl = cpu_to_le16(QOS_ctl); qos_ctl |= skb->priority;
header.qos_ctl = cpu_to_le16(qos_ctl);
} else { } else {
hdr_len = IEEE80211_3ADDR_LEN; hdr_len = IEEE80211_3ADDR_LEN;
} }
//printk(KERN_WARNING "header size = %d, QOS_ctl = %x\n", hdr_len,QOS_ctl);
/* Determine amount of payload per fragment. Regardless of if /* Determine amount of payload per fragment. Regardless of if
* this stack is providing the full 802.11 header, one will * this stack is providing the full 802.11 header, one will
* eventually be affixed to this fragment -- so we must account for * eventually be affixed to this fragment -- so we must account for
...@@ -477,7 +478,7 @@ int ieee80211_xmit(struct sk_buff *skb, ...@@ -477,7 +478,7 @@ int ieee80211_xmit(struct sk_buff *skb,
if (encrypt) if (encrypt)
skb_reserve(skb_frag, crypt->ops->extra_prefix_len); skb_reserve(skb_frag, crypt->ops->extra_prefix_len);
frag_hdr = (struct ieee80211_hdr_3addr_QOS *)skb_put(skb_frag, hdr_len); frag_hdr = (struct ieee80211_hdr_3addrqos *)skb_put(skb_frag, hdr_len);
memcpy(frag_hdr, &header, hdr_len); memcpy(frag_hdr, &header, hdr_len);
/* If this is not the last fragment, then add the MOREFRAGS /* If this is not the last fragment, then add the MOREFRAGS
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment