aboutsummaryrefslogtreecommitdiffstats
path: root/net/ieee80211
diff options
context:
space:
mode:
authorJames Ketrenos <jketreno@linux.intel.com>2005-09-21 12:54:36 -0400
committerJeff Garzik <jgarzik@pobox.com>2005-09-21 23:02:30 -0400
commitee34af37c095482b9dba254b9cd7cb5e65e9a25e (patch)
treeeed75aee11663053e658d839fb91bc8dfae56ecb /net/ieee80211
parente0d369d1d969fc9e4fd08a20f6dad04d369aceea (diff)
[PATCH] ieee80211: Renamed ieee80211_hdr to ieee80211_hdr_3addr
tree e9c18b2c8e5ad446a4d213243c2dcf9fd1652a7b parent 4e97ad6ae7084a4f741e94e76c41c68bc7c5a76a author James Ketrenos <jketreno@linux.intel.com> 1124444315 -0500 committer James Ketrenos <jketreno@linux.intel.com> 1127312922 -0500 Renamed ieee80211_hdr to ieee80211_hdr_3addr and modified ieee80211_hdr to just contain the frame_ctrl and duration_id. Changed uses of ieee80211_hdr to ieee80211_hdr_4addr or ieee80211_hdr_3addr based on what was expected for that portion of code. NOTE: This requires changes to ipw2100, ipw2200, hostap, and atmel drivers. Signed-off-by: James Ketrenos <jketreno@linux.intel.com> Signed-off-by: Jeff Garzik <jgarzik@pobox.com>
Diffstat (limited to 'net/ieee80211')
-rw-r--r--net/ieee80211/ieee80211_crypt_ccmp.c10
-rw-r--r--net/ieee80211/ieee80211_crypt_tkip.c27
-rw-r--r--net/ieee80211/ieee80211_rx.c32
-rw-r--r--net/ieee80211/ieee80211_tx.c7
4 files changed, 39 insertions, 37 deletions
diff --git a/net/ieee80211/ieee80211_crypt_ccmp.c b/net/ieee80211/ieee80211_crypt_ccmp.c
index 1e6644b133dc..d3b5cdee69ef 100644
--- a/net/ieee80211/ieee80211_crypt_ccmp.c
+++ b/net/ieee80211/ieee80211_crypt_ccmp.c
@@ -119,7 +119,7 @@ static inline void xor_block(u8 * b, u8 * a, size_t len)
119} 119}
120 120
121static void ccmp_init_blocks(struct crypto_tfm *tfm, 121static void ccmp_init_blocks(struct crypto_tfm *tfm,
122 struct ieee80211_hdr *hdr, 122 struct ieee80211_hdr_4addr *hdr,
123 u8 * pn, size_t dlen, u8 * b0, u8 * auth, u8 * s0) 123 u8 * pn, size_t dlen, u8 * b0, u8 * auth, u8 * s0)
124{ 124{
125 u8 *pos, qc = 0; 125 u8 *pos, qc = 0;
@@ -196,7 +196,7 @@ static int ieee80211_ccmp_encrypt(struct sk_buff *skb, int hdr_len, void *priv)
196 struct ieee80211_ccmp_data *key = priv; 196 struct ieee80211_ccmp_data *key = priv;
197 int data_len, i, blocks, last, len; 197 int data_len, i, blocks, last, len;
198 u8 *pos, *mic; 198 u8 *pos, *mic;
199 struct ieee80211_hdr *hdr; 199 struct ieee80211_hdr_4addr *hdr;
200 u8 *b0 = key->tx_b0; 200 u8 *b0 = key->tx_b0;
201 u8 *b = key->tx_b; 201 u8 *b = key->tx_b;
202 u8 *e = key->tx_e; 202 u8 *e = key->tx_e;
@@ -229,7 +229,7 @@ static int ieee80211_ccmp_encrypt(struct sk_buff *skb, int hdr_len, void *priv)
229 *pos++ = key->tx_pn[1]; 229 *pos++ = key->tx_pn[1];
230 *pos++ = key->tx_pn[0]; 230 *pos++ = key->tx_pn[0];
231 231
232 hdr = (struct ieee80211_hdr *)skb->data; 232 hdr = (struct ieee80211_hdr_4addr *)skb->data;
233 ccmp_init_blocks(key->tfm, hdr, key->tx_pn, data_len, b0, b, s0); 233 ccmp_init_blocks(key->tfm, hdr, key->tx_pn, data_len, b0, b, s0);
234 234
235 blocks = (data_len + AES_BLOCK_LEN - 1) / AES_BLOCK_LEN; 235 blocks = (data_len + AES_BLOCK_LEN - 1) / AES_BLOCK_LEN;
@@ -258,7 +258,7 @@ static int ieee80211_ccmp_decrypt(struct sk_buff *skb, int hdr_len, void *priv)
258{ 258{
259 struct ieee80211_ccmp_data *key = priv; 259 struct ieee80211_ccmp_data *key = priv;
260 u8 keyidx, *pos; 260 u8 keyidx, *pos;
261 struct ieee80211_hdr *hdr; 261 struct ieee80211_hdr_4addr *hdr;
262 u8 *b0 = key->rx_b0; 262 u8 *b0 = key->rx_b0;
263 u8 *b = key->rx_b; 263 u8 *b = key->rx_b;
264 u8 *a = key->rx_a; 264 u8 *a = key->rx_a;
@@ -272,7 +272,7 @@ static int ieee80211_ccmp_decrypt(struct sk_buff *skb, int hdr_len, void *priv)
272 return -1; 272 return -1;
273 } 273 }
274 274
275 hdr = (struct ieee80211_hdr *)skb->data; 275 hdr = (struct ieee80211_hdr_4addr *)skb->data;
276 pos = skb->data + hdr_len; 276 pos = skb->data + hdr_len;
277 keyidx = pos[3]; 277 keyidx = pos[3];
278 if (!(keyidx & (1 << 5))) { 278 if (!(keyidx & (1 << 5))) {
diff --git a/net/ieee80211/ieee80211_crypt_tkip.c b/net/ieee80211/ieee80211_crypt_tkip.c
index 0c495f07e718..f091aacd4297 100644
--- a/net/ieee80211/ieee80211_crypt_tkip.c
+++ b/net/ieee80211/ieee80211_crypt_tkip.c
@@ -265,11 +265,11 @@ static int ieee80211_tkip_encrypt(struct sk_buff *skb, int hdr_len, void *priv)
265 struct ieee80211_tkip_data *tkey = priv; 265 struct ieee80211_tkip_data *tkey = priv;
266 int len; 266 int len;
267 u8 rc4key[16], *pos, *icv; 267 u8 rc4key[16], *pos, *icv;
268 struct ieee80211_hdr *hdr; 268 struct ieee80211_hdr_4addr *hdr;
269 u32 crc; 269 u32 crc;
270 struct scatterlist sg; 270 struct scatterlist sg;
271 271
272 hdr = (struct ieee80211_hdr *)skb->data; 272 hdr = (struct ieee80211_hdr_4addr *)skb->data;
273 273
274 if (tkey->ieee->tkip_countermeasures) { 274 if (tkey->ieee->tkip_countermeasures) {
275 if (net_ratelimit()) { 275 if (net_ratelimit()) {
@@ -334,13 +334,13 @@ static int ieee80211_tkip_decrypt(struct sk_buff *skb, int hdr_len, void *priv)
334 u8 keyidx, *pos; 334 u8 keyidx, *pos;
335 u32 iv32; 335 u32 iv32;
336 u16 iv16; 336 u16 iv16;
337 struct ieee80211_hdr *hdr; 337 struct ieee80211_hdr_4addr *hdr;
338 u8 icv[4]; 338 u8 icv[4];
339 u32 crc; 339 u32 crc;
340 struct scatterlist sg; 340 struct scatterlist sg;
341 int plen; 341 int plen;
342 342
343 hdr = (struct ieee80211_hdr *)skb->data; 343 hdr = (struct ieee80211_hdr_4addr *)skb->data;
344 344
345 if (tkey->ieee->tkip_countermeasures) { 345 if (tkey->ieee->tkip_countermeasures) {
346 if (net_ratelimit()) { 346 if (net_ratelimit()) {
@@ -466,9 +466,9 @@ static int michael_mic(struct ieee80211_tkip_data *tkey, u8 * key, u8 * hdr,
466 466
467static void michael_mic_hdr(struct sk_buff *skb, u8 * hdr) 467static void michael_mic_hdr(struct sk_buff *skb, u8 * hdr)
468{ 468{
469 struct ieee80211_hdr *hdr11; 469 struct ieee80211_hdr_4addr *hdr11;
470 470
471 hdr11 = (struct ieee80211_hdr *)skb->data; 471 hdr11 = (struct ieee80211_hdr_4addr *)skb->data;
472 switch (le16_to_cpu(hdr11->frame_ctl) & 472 switch (le16_to_cpu(hdr11->frame_ctl) &
473 (IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS)) { 473 (IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS)) {
474 case IEEE80211_FCTL_TODS: 474 case IEEE80211_FCTL_TODS:
@@ -517,7 +517,8 @@ static int ieee80211_michael_mic_add(struct sk_buff *skb, int hdr_len,
517 517
518#if WIRELESS_EXT >= 18 518#if WIRELESS_EXT >= 18
519static void ieee80211_michael_mic_failure(struct net_device *dev, 519static void ieee80211_michael_mic_failure(struct net_device *dev,
520 struct ieee80211_hdr *hdr, int keyidx) 520 struct ieee80211_hdr_4addr *hdr,
521 int keyidx)
521{ 522{
522 union iwreq_data wrqu; 523 union iwreq_data wrqu;
523 struct iw_michaelmicfailure ev; 524 struct iw_michaelmicfailure ev;
@@ -537,7 +538,8 @@ static void ieee80211_michael_mic_failure(struct net_device *dev,
537} 538}
538#elif WIRELESS_EXT >= 15 539#elif WIRELESS_EXT >= 15
539static void ieee80211_michael_mic_failure(struct net_device *dev, 540static void ieee80211_michael_mic_failure(struct net_device *dev,
540 struct ieee80211_hdr *hdr, int keyidx) 541 struct ieee80211_hdr_4addr *hdr,
542 int keyidx)
541{ 543{
542 union iwreq_data wrqu; 544 union iwreq_data wrqu;
543 char buf[128]; 545 char buf[128];
@@ -551,9 +553,8 @@ static void ieee80211_michael_mic_failure(struct net_device *dev,
551 wireless_send_event(dev, IWEVCUSTOM, &wrqu, buf); 553 wireless_send_event(dev, IWEVCUSTOM, &wrqu, buf);
552} 554}
553#else /* WIRELESS_EXT >= 15 */ 555#else /* WIRELESS_EXT >= 15 */
554static inline void ieee80211_michael_mic_failure(struct net_device *dev, 556static inline void ieee80211_michael_mic_failure(struct net_device *dev, struct ieee80211_hdr_4addr
555 struct ieee80211_hdr *hdr, 557 *hdr, int keyidx)
556 int keyidx)
557{ 558{
558} 559}
559#endif /* WIRELESS_EXT >= 15 */ 560#endif /* WIRELESS_EXT >= 15 */
@@ -572,8 +573,8 @@ static int ieee80211_michael_mic_verify(struct sk_buff *skb, int keyidx,
572 skb->data + hdr_len, skb->len - 8 - hdr_len, mic)) 573 skb->data + hdr_len, skb->len - 8 - hdr_len, mic))
573 return -1; 574 return -1;
574 if (memcmp(mic, skb->data + skb->len - 8, 8) != 0) { 575 if (memcmp(mic, skb->data + skb->len - 8, 8) != 0) {
575 struct ieee80211_hdr *hdr; 576 struct ieee80211_hdr_4addr *hdr;
576 hdr = (struct ieee80211_hdr *)skb->data; 577 hdr = (struct ieee80211_hdr_4addr *)skb->data;
577 printk(KERN_DEBUG "%s: Michael MIC verification failed for " 578 printk(KERN_DEBUG "%s: Michael MIC verification failed for "
578 "MSDU from " MAC_FMT " keyidx=%d\n", 579 "MSDU from " MAC_FMT " keyidx=%d\n",
579 skb->dev ? skb->dev->name : "N/A", MAC_ARG(hdr->addr2), 580 skb->dev ? skb->dev->name : "N/A", MAC_ARG(hdr->addr2),
diff --git a/net/ieee80211/ieee80211_rx.c b/net/ieee80211/ieee80211_rx.c
index 9a125d45289a..71d14c7d915c 100644
--- a/net/ieee80211/ieee80211_rx.c
+++ b/net/ieee80211/ieee80211_rx.c
@@ -87,7 +87,7 @@ static struct ieee80211_frag_entry *ieee80211_frag_cache_find(struct
87 87
88/* Called only as a tasklet (software IRQ) */ 88/* Called only as a tasklet (software IRQ) */
89static struct sk_buff *ieee80211_frag_cache_get(struct ieee80211_device *ieee, 89static struct sk_buff *ieee80211_frag_cache_get(struct ieee80211_device *ieee,
90 struct ieee80211_hdr *hdr) 90 struct ieee80211_hdr_4addr *hdr)
91{ 91{
92 struct sk_buff *skb = NULL; 92 struct sk_buff *skb = NULL;
93 u16 sc; 93 u16 sc;
@@ -101,7 +101,7 @@ static struct sk_buff *ieee80211_frag_cache_get(struct ieee80211_device *ieee,
101 if (frag == 0) { 101 if (frag == 0) {
102 /* Reserve enough space to fit maximum frame length */ 102 /* Reserve enough space to fit maximum frame length */
103 skb = dev_alloc_skb(ieee->dev->mtu + 103 skb = dev_alloc_skb(ieee->dev->mtu +
104 sizeof(struct ieee80211_hdr) + 104 sizeof(struct ieee80211_hdr_4addr) +
105 8 /* LLC */ + 105 8 /* LLC */ +
106 2 /* alignment */ + 106 2 /* alignment */ +
107 8 /* WEP */ + ETH_ALEN /* WDS */ ); 107 8 /* WEP */ + ETH_ALEN /* WDS */ );
@@ -138,7 +138,7 @@ static struct sk_buff *ieee80211_frag_cache_get(struct ieee80211_device *ieee,
138 138
139/* Called only as a tasklet (software IRQ) */ 139/* Called only as a tasklet (software IRQ) */
140static int ieee80211_frag_cache_invalidate(struct ieee80211_device *ieee, 140static int ieee80211_frag_cache_invalidate(struct ieee80211_device *ieee,
141 struct ieee80211_hdr *hdr) 141 struct ieee80211_hdr_4addr *hdr)
142{ 142{
143 u16 sc; 143 u16 sc;
144 unsigned int seq; 144 unsigned int seq;
@@ -176,7 +176,7 @@ ieee80211_rx_frame_mgmt(struct ieee80211_device *ieee, struct sk_buff *skb,
176 ieee->dev->name); 176 ieee->dev->name);
177 return 0; 177 return 0;
178/* 178/*
179 hostap_update_sta_ps(ieee, (struct hostap_ieee80211_hdr *) 179 hostap_update_sta_ps(ieee, (struct hostap_ieee80211_hdr_4addr *)
180 skb->data);*/ 180 skb->data);*/
181 } 181 }
182 182
@@ -232,13 +232,13 @@ static int ieee80211_is_eapol_frame(struct ieee80211_device *ieee,
232{ 232{
233 struct net_device *dev = ieee->dev; 233 struct net_device *dev = ieee->dev;
234 u16 fc, ethertype; 234 u16 fc, ethertype;
235 struct ieee80211_hdr *hdr; 235 struct ieee80211_hdr_3addr *hdr;
236 u8 *pos; 236 u8 *pos;
237 237
238 if (skb->len < 24) 238 if (skb->len < 24)
239 return 0; 239 return 0;
240 240
241 hdr = (struct ieee80211_hdr *)skb->data; 241 hdr = (struct ieee80211_hdr_3addr *)skb->data;
242 fc = le16_to_cpu(hdr->frame_ctl); 242 fc = le16_to_cpu(hdr->frame_ctl);
243 243
244 /* check that the frame is unicast frame to us */ 244 /* check that the frame is unicast frame to us */
@@ -271,13 +271,13 @@ static inline int
271ieee80211_rx_frame_decrypt(struct ieee80211_device *ieee, struct sk_buff *skb, 271ieee80211_rx_frame_decrypt(struct ieee80211_device *ieee, struct sk_buff *skb,
272 struct ieee80211_crypt_data *crypt) 272 struct ieee80211_crypt_data *crypt)
273{ 273{
274 struct ieee80211_hdr *hdr; 274 struct ieee80211_hdr_3addr *hdr;
275 int res, hdrlen; 275 int res, hdrlen;
276 276
277 if (crypt == NULL || crypt->ops->decrypt_mpdu == NULL) 277 if (crypt == NULL || crypt->ops->decrypt_mpdu == NULL)
278 return 0; 278 return 0;
279 279
280 hdr = (struct ieee80211_hdr *)skb->data; 280 hdr = (struct ieee80211_hdr_3addr *)skb->data;
281 hdrlen = ieee80211_get_hdrlen(le16_to_cpu(hdr->frame_ctl)); 281 hdrlen = ieee80211_get_hdrlen(le16_to_cpu(hdr->frame_ctl));
282 282
283 atomic_inc(&crypt->refcnt); 283 atomic_inc(&crypt->refcnt);
@@ -303,13 +303,13 @@ ieee80211_rx_frame_decrypt_msdu(struct ieee80211_device *ieee,
303 struct sk_buff *skb, int keyidx, 303 struct sk_buff *skb, int keyidx,
304 struct ieee80211_crypt_data *crypt) 304 struct ieee80211_crypt_data *crypt)
305{ 305{
306 struct ieee80211_hdr *hdr; 306 struct ieee80211_hdr_3addr *hdr;
307 int res, hdrlen; 307 int res, hdrlen;
308 308
309 if (crypt == NULL || crypt->ops->decrypt_msdu == NULL) 309 if (crypt == NULL || crypt->ops->decrypt_msdu == NULL)
310 return 0; 310 return 0;
311 311
312 hdr = (struct ieee80211_hdr *)skb->data; 312 hdr = (struct ieee80211_hdr_3addr *)skb->data;
313 hdrlen = ieee80211_get_hdrlen(le16_to_cpu(hdr->frame_ctl)); 313 hdrlen = ieee80211_get_hdrlen(le16_to_cpu(hdr->frame_ctl));
314 314
315 atomic_inc(&crypt->refcnt); 315 atomic_inc(&crypt->refcnt);
@@ -332,7 +332,7 @@ int ieee80211_rx(struct ieee80211_device *ieee, struct sk_buff *skb,
332 struct ieee80211_rx_stats *rx_stats) 332 struct ieee80211_rx_stats *rx_stats)
333{ 333{
334 struct net_device *dev = ieee->dev; 334 struct net_device *dev = ieee->dev;
335 struct ieee80211_hdr *hdr; 335 struct ieee80211_hdr_4addr *hdr;
336 size_t hdrlen; 336 size_t hdrlen;
337 u16 fc, type, stype, sc; 337 u16 fc, type, stype, sc;
338 struct net_device_stats *stats; 338 struct net_device_stats *stats;
@@ -352,7 +352,7 @@ int ieee80211_rx(struct ieee80211_device *ieee, struct sk_buff *skb,
352 struct ieee80211_crypt_data *crypt = NULL; 352 struct ieee80211_crypt_data *crypt = NULL;
353 int keyidx = 0; 353 int keyidx = 0;
354 354
355 hdr = (struct ieee80211_hdr *)skb->data; 355 hdr = (struct ieee80211_hdr_4addr *)skb->data;
356 stats = &ieee->stats; 356 stats = &ieee->stats;
357 357
358 if (skb->len < 10) { 358 if (skb->len < 10) {
@@ -552,7 +552,7 @@ int ieee80211_rx(struct ieee80211_device *ieee, struct sk_buff *skb,
552 (keyidx = ieee80211_rx_frame_decrypt(ieee, skb, crypt)) < 0) 552 (keyidx = ieee80211_rx_frame_decrypt(ieee, skb, crypt)) < 0)
553 goto rx_dropped; 553 goto rx_dropped;
554 554
555 hdr = (struct ieee80211_hdr *)skb->data; 555 hdr = (struct ieee80211_hdr_4addr *)skb->data;
556 556
557 /* skb: hdr + (possibly fragmented) plaintext payload */ 557 /* skb: hdr + (possibly fragmented) plaintext payload */
558 // PR: FIXME: hostap has additional conditions in the "if" below: 558 // PR: FIXME: hostap has additional conditions in the "if" below:
@@ -606,7 +606,7 @@ int ieee80211_rx(struct ieee80211_device *ieee, struct sk_buff *skb,
606 /* this was the last fragment and the frame will be 606 /* this was the last fragment and the frame will be
607 * delivered, so remove skb from fragment cache */ 607 * delivered, so remove skb from fragment cache */
608 skb = frag_skb; 608 skb = frag_skb;
609 hdr = (struct ieee80211_hdr *)skb->data; 609 hdr = (struct ieee80211_hdr_4addr *)skb->data;
610 ieee80211_frag_cache_invalidate(ieee, hdr); 610 ieee80211_frag_cache_invalidate(ieee, hdr);
611 } 611 }
612 612
@@ -616,7 +616,7 @@ int ieee80211_rx(struct ieee80211_device *ieee, struct sk_buff *skb,
616 ieee80211_rx_frame_decrypt_msdu(ieee, skb, keyidx, crypt)) 616 ieee80211_rx_frame_decrypt_msdu(ieee, skb, keyidx, crypt))
617 goto rx_dropped; 617 goto rx_dropped;
618 618
619 hdr = (struct ieee80211_hdr *)skb->data; 619 hdr = (struct ieee80211_hdr_4addr *)skb->data;
620 if (crypt && !(fc & IEEE80211_FCTL_PROTECTED) && !ieee->open_wep) { 620 if (crypt && !(fc & IEEE80211_FCTL_PROTECTED) && !ieee->open_wep) {
621 if ( /*ieee->ieee802_1x && */ 621 if ( /*ieee->ieee802_1x && */
622 ieee80211_is_eapol_frame(ieee, skb)) { 622 ieee80211_is_eapol_frame(ieee, skb)) {
@@ -1148,7 +1148,7 @@ static inline void ieee80211_process_probe_response(struct ieee80211_device
1148} 1148}
1149 1149
1150void ieee80211_rx_mgt(struct ieee80211_device *ieee, 1150void ieee80211_rx_mgt(struct ieee80211_device *ieee,
1151 struct ieee80211_hdr *header, 1151 struct ieee80211_hdr_4addr *header,
1152 struct ieee80211_rx_stats *stats) 1152 struct ieee80211_rx_stats *stats)
1153{ 1153{
1154 switch (WLAN_FC_GET_STYPE(le16_to_cpu(header->frame_ctl))) { 1154 switch (WLAN_FC_GET_STYPE(le16_to_cpu(header->frame_ctl))) {
diff --git a/net/ieee80211/ieee80211_tx.c b/net/ieee80211/ieee80211_tx.c
index 785e76f7e4e9..29770cfefc3d 100644
--- a/net/ieee80211/ieee80211_tx.c
+++ b/net/ieee80211/ieee80211_tx.c
@@ -227,14 +227,14 @@ int ieee80211_xmit(struct sk_buff *skb, struct net_device *dev)
227{ 227{
228 struct ieee80211_device *ieee = netdev_priv(dev); 228 struct ieee80211_device *ieee = netdev_priv(dev);
229 struct ieee80211_txb *txb = NULL; 229 struct ieee80211_txb *txb = NULL;
230 struct ieee80211_hdr *frag_hdr; 230 struct ieee80211_hdr_3addr *frag_hdr;
231 int i, bytes_per_frag, nr_frags, bytes_last_frag, frag_size; 231 int i, bytes_per_frag, nr_frags, bytes_last_frag, frag_size;
232 unsigned long flags; 232 unsigned long flags;
233 struct net_device_stats *stats = &ieee->stats; 233 struct net_device_stats *stats = &ieee->stats;
234 int ether_type, encrypt, host_encrypt; 234 int ether_type, encrypt, host_encrypt;
235 int bytes, fc, hdr_len; 235 int bytes, fc, hdr_len;
236 struct sk_buff *skb_frag; 236 struct sk_buff *skb_frag;
237 struct ieee80211_hdr header = { /* Ensure zero initialized */ 237 struct ieee80211_hdr_3addr header = { /* Ensure zero initialized */
238 .duration_id = 0, 238 .duration_id = 0,
239 .seq_ctl = 0 239 .seq_ctl = 0
240 }; 240 };
@@ -352,7 +352,8 @@ int ieee80211_xmit(struct sk_buff *skb, struct net_device *dev)
352 if (host_encrypt) 352 if (host_encrypt)
353 skb_reserve(skb_frag, crypt->ops->extra_prefix_len); 353 skb_reserve(skb_frag, crypt->ops->extra_prefix_len);
354 354
355 frag_hdr = (struct ieee80211_hdr *)skb_put(skb_frag, hdr_len); 355 frag_hdr =
356 (struct ieee80211_hdr_3addr *)skb_put(skb_frag, hdr_len);
356 memcpy(frag_hdr, &header, hdr_len); 357 memcpy(frag_hdr, &header, hdr_len);
357 358
358 /* If this is not the last fragment, then add the MOREFRAGS 359 /* If this is not the last fragment, then add the MOREFRAGS