hc
2024-05-08 f309769f8af08599af39b6de4f675784ce76530d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
/******************************************************************************
 *
 * Copyright(c) 2007 - 2017 Realtek Corporation.
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of version 2 of the GNU General Public License as
 * published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
 * more details.
 *
 *****************************************************************************/
#define _RECV_OSDEP_C_
 
#include <drv_types.h>
 
int rtw_os_recvframe_duplicate_skb(_adapter *padapter, union recv_frame *pcloneframe, _pkt *pskb)
{
   int res = _SUCCESS;
   _pkt    *pkt_copy = NULL;
 
   if (pskb == NULL) {
       RTW_INFO("%s [WARN] skb == NULL, drop frag frame\n", __func__);
       return _FAIL;
   }
#if 1
   pkt_copy = rtw_skb_copy(pskb);
 
   if (pkt_copy == NULL) {
       RTW_INFO("%s [WARN] rtw_skb_copy fail , drop frag frame\n", __func__);
       return _FAIL;
   }
#else
   pkt_copy = rtw_skb_clone(pskb);
 
   if (pkt_copy == NULL) {
       RTW_INFO("%s [WARN] rtw_skb_clone fail , drop frag frame\n", __func__);
       return _FAIL;
   }
#endif
   pkt_copy->dev = padapter->pnetdev;
 
   pcloneframe->u.hdr.pkt = pkt_copy;
   pcloneframe->u.hdr.rx_head = pkt_copy->head;
   pcloneframe->u.hdr.rx_data = pkt_copy->data;
   pcloneframe->u.hdr.rx_end = skb_end_pointer(pkt_copy);
   pcloneframe->u.hdr.rx_tail = skb_tail_pointer(pkt_copy);
   pcloneframe->u.hdr.len = pkt_copy->len;
 
   return res;
}
 
int rtw_os_alloc_recvframe(_adapter *padapter, union recv_frame *precvframe, u8 *pdata, _pkt *pskb)
{
   int res = _SUCCESS;
   u8    shift_sz = 0;
   u32    skb_len, alloc_sz;
   _pkt    *pkt_copy = NULL;
   struct rx_pkt_attrib *pattrib = &precvframe->u.hdr.attrib;
 
 
   if (pdata == NULL) {
       precvframe->u.hdr.pkt = NULL;
       res = _FAIL;
       return res;
   }
 
 
   /*    Modified by Albert 20101213 */
   /*    For 8 bytes IP header alignment. */
   shift_sz = pattrib->qos ? 6 : 0; /*    Qos data, wireless lan header length is 26 */
 
   skb_len = pattrib->pkt_len;
 
   /* for first fragment packet, driver need allocate 1536+drvinfo_sz+RXDESC_SIZE to defrag packet. */
   /* modify alloc_sz for recvive crc error packet by thomas 2011-06-02 */
   if ((pattrib->mfrag == 1) && (pattrib->frag_num == 0)) {
       /* alloc_sz = 1664;     */ /* 1664 is 128 alignment. */
       alloc_sz = (skb_len <= 1650) ? 1664 : (skb_len + 14);
   } else {
       alloc_sz = skb_len;
       /*    6 is for IP header 8 bytes alignment in QoS packet case. */
       /*    8 is for skb->data 4 bytes alignment. */
       alloc_sz += 14;
   }
 
   pkt_copy = rtw_skb_alloc(alloc_sz);
 
   if (pkt_copy) {
       pkt_copy->dev = padapter->pnetdev;
       pkt_copy->len = skb_len;
       precvframe->u.hdr.pkt = pkt_copy;
       precvframe->u.hdr.rx_head = pkt_copy->head;
       precvframe->u.hdr.rx_end = pkt_copy->data + alloc_sz;
       skb_reserve(pkt_copy, 8 - ((SIZE_PTR)(pkt_copy->data) & 7));  /* force pkt_copy->data at 8-byte alignment address */
       skb_reserve(pkt_copy, shift_sz);/* force ip_hdr at 8-byte alignment address according to shift_sz. */
       _rtw_memcpy(pkt_copy->data, pdata, skb_len);
       precvframe->u.hdr.rx_data = precvframe->u.hdr.rx_tail = pkt_copy->data;
   } else {
#if 0
       {
           rtw_free_recvframe(precvframe_if2, &precvpriv->free_recv_queue);
           rtw_enqueue_recvbuf_to_head(precvbuf, &precvpriv->recv_buf_pending_queue);
 
           /* The case of can't allocate skb is serious and may never be recovered,
            once bDriverStopped is enable, this task should be stopped.*/
           if (!rtw_is_drv_stopped(secondary_padapter))
#ifdef PLATFORM_LINUX
               tasklet_schedule(&precvpriv->recv_tasklet);
#endif
           return ret;
       }
 
#endif
 
#ifdef CONFIG_USE_USB_BUFFER_ALLOC_RX
       RTW_INFO("%s:can not allocate memory for skb copy\n", __func__);
 
       precvframe->u.hdr.pkt = NULL;
 
       /* rtw_free_recvframe(precvframe, pfree_recv_queue); */
       /*exit_rtw_os_recv_resource_alloc;*/
 
       res = _FAIL;
#else
       if ((pattrib->mfrag == 1) && (pattrib->frag_num == 0)) {
           RTW_INFO("%s: alloc_skb fail , drop frag frame\n", __FUNCTION__);
           /* rtw_free_recvframe(precvframe, pfree_recv_queue); */
           res = _FAIL;
           goto exit_rtw_os_recv_resource_alloc;
       }
 
       if (pskb == NULL) {
           res = _FAIL;
           goto exit_rtw_os_recv_resource_alloc;
       }
 
       precvframe->u.hdr.pkt = rtw_skb_clone(pskb);
       if (precvframe->u.hdr.pkt) {
           RTW_INFO("%s: rtw_skb_clone success, RX throughput may be low!\n", __FUNCTION__);
           precvframe->u.hdr.pkt->dev = padapter->pnetdev;
           precvframe->u.hdr.rx_head = precvframe->u.hdr.rx_data = precvframe->u.hdr.rx_tail = pdata;
           precvframe->u.hdr.rx_end =  pdata + alloc_sz;
       } else {
           RTW_INFO("%s: rtw_skb_clone fail\n", __FUNCTION__);
           /* rtw_free_recvframe(precvframe, pfree_recv_queue); */
           /*exit_rtw_os_recv_resource_alloc;*/
           res = _FAIL;
       }
#endif
   }
 
exit_rtw_os_recv_resource_alloc:
 
   return res;
 
}
 
void rtw_os_free_recvframe(union recv_frame *precvframe)
{
   if (precvframe->u.hdr.pkt) {
       rtw_os_pkt_free(precvframe->u.hdr.pkt);
       precvframe->u.hdr.pkt = NULL;
   }
}
 
/* init os related resource in struct recv_priv */
int rtw_os_recv_resource_init(struct recv_priv *precvpriv, _adapter *padapter)
{
   int    res = _SUCCESS;
 
 
#ifdef CONFIG_RTW_NAPI
   skb_queue_head_init(&precvpriv->rx_napi_skb_queue);
#endif /* CONFIG_RTW_NAPI */
 
   return res;
}
 
/* alloc os related resource in union recv_frame */
int rtw_os_recv_resource_alloc(_adapter *padapter, union recv_frame *precvframe)
{
   int    res = _SUCCESS;
 
   precvframe->u.hdr.pkt = NULL;
 
   return res;
}
 
/* free os related resource in union recv_frame */
void rtw_os_recv_resource_free(struct recv_priv *precvpriv)
{
   sint i;
   union recv_frame *precvframe;
   precvframe = (union recv_frame *) precvpriv->precv_frame_buf;
 
 
#ifdef CONFIG_RTW_NAPI
   if (skb_queue_len(&precvpriv->rx_napi_skb_queue))
       RTW_WARN("rx_napi_skb_queue not empty\n");
   rtw_skb_queue_purge(&precvpriv->rx_napi_skb_queue);
#endif /* CONFIG_RTW_NAPI */
 
   for (i = 0; i < NR_RECVFRAME; i++) {
       rtw_os_free_recvframe(precvframe);
       precvframe++;
   }
}
 
#if defined(CONFIG_SDIO_HCI) || defined(CONFIG_GSPI_HCI)
#if !defined(CONFIG_RTL8822B) && !defined(CONFIG_RTL8822C) && !defined(CONFIG_RTL8723F)
#ifdef CONFIG_SDIO_RX_COPY
static int sdio_init_recvbuf_with_skb(struct recv_priv *recvpriv, struct recv_buf *rbuf, u32 size)
{
#ifdef CONFIG_PREALLOC_RX_SKB_BUFFER
   if (RBUF_IS_PREALLOC(rbuf)) {
       rbuf->pskb = rtw_alloc_skb_premem(size);
       if (!rbuf->pskb) {
           RTW_WARN("%s: Fail to get pre-alloc skb! size=%d\n", __func__, size);
           return _FAIL;
       }
       skb_set_tail_pointer(rbuf->pskb, 0); /* TODO: do this in RTKM */
   } else
#else
   {
       SIZE_PTR tmpaddr = 0;
       SIZE_PTR alignment = 0;
 
       rbuf->pskb = rtw_skb_alloc(size + RECVBUFF_ALIGN_SZ);
       if (!rbuf->pskb)
           return _FAIL;
 
       tmpaddr = (SIZE_PTR)rbuf->pskb->data;
       alignment = tmpaddr & (RECVBUFF_ALIGN_SZ - 1);
       skb_reserve(rbuf->pskb, (RECVBUFF_ALIGN_SZ - alignment));
   }
#endif
 
   rbuf->pskb->dev = recvpriv->adapter->pnetdev;
 
   /* init recvbuf */
   rbuf->phead = rbuf->pskb->head;
   rbuf->pdata = rbuf->pskb->data;
   rbuf->ptail = skb_tail_pointer(rbuf->pskb);
   rbuf->pend = skb_end_pointer(rbuf->pskb);
   rbuf->len = 0;
 
   return _SUCCESS;
}
#endif /* CONFIG_SDIO_RX_COPY */
#endif /* !defined(CONFIG_RTL8822B) && !defined(CONFIG_RTL8822C) && !defined(CONFIG_RTL8723F) */
#endif /* defined(CONFIG_SDIO_HCI) || defined(CONFIG_GSPI_HCI) */
 
/* alloc os related resource in struct recv_buf */
int rtw_os_recvbuf_resource_alloc(_adapter *padapter, struct recv_buf *precvbuf, u32 size)
{
   int res = _SUCCESS;
 
#ifdef CONFIG_USB_HCI
#ifdef CONFIG_USE_USB_BUFFER_ALLOC_RX
   struct dvobj_priv    *pdvobjpriv = adapter_to_dvobj(padapter);
   struct usb_device    *pusbd = pdvobjpriv->pusbdev;
#endif
 
   precvbuf->irp_pending = _FALSE;
   precvbuf->purb = usb_alloc_urb(0, GFP_KERNEL);
   if (precvbuf->purb == NULL)
       res = _FAIL;
 
   precvbuf->pskb = NULL;
 
   precvbuf->pallocated_buf  = precvbuf->pbuf = NULL;
 
   precvbuf->pdata = precvbuf->phead = precvbuf->ptail = precvbuf->pend = NULL;
 
   precvbuf->transfer_len = 0;
 
   precvbuf->len = 0;
 
#ifdef CONFIG_USE_USB_BUFFER_ALLOC_RX
   precvbuf->pallocated_buf = rtw_usb_buffer_alloc(pusbd, (size_t)size, &precvbuf->dma_transfer_addr);
   precvbuf->pbuf = precvbuf->pallocated_buf;
   if (precvbuf->pallocated_buf == NULL)
       return _FAIL;
#endif /* CONFIG_USE_USB_BUFFER_ALLOC_RX */
 
#elif defined(CONFIG_SDIO_HCI) || defined(CONFIG_GSPI_HCI)
   #if !defined(CONFIG_RTL8822B) && !defined(CONFIG_RTL8822C) && !defined(CONFIG_RTL8723F)
   #ifdef CONFIG_SDIO_RX_COPY
   res = sdio_init_recvbuf_with_skb(&padapter->recvpriv, precvbuf, size);
   #endif
   #endif
 
#endif /* CONFIG_XXX_HCI */
 
   return res;
}
 
/* free os related resource in struct recv_buf */
int rtw_os_recvbuf_resource_free(_adapter *padapter, struct recv_buf *precvbuf)
{
   int ret = _SUCCESS;
 
#ifdef CONFIG_USB_HCI
 
#ifdef CONFIG_USE_USB_BUFFER_ALLOC_RX
 
   struct dvobj_priv    *pdvobjpriv = adapter_to_dvobj(padapter);
   struct usb_device    *pusbd = pdvobjpriv->pusbdev;
 
   rtw_usb_buffer_free(pusbd, (size_t)precvbuf->alloc_sz, precvbuf->pallocated_buf, precvbuf->dma_transfer_addr);
   precvbuf->pallocated_buf =  NULL;
   precvbuf->dma_transfer_addr = 0;
 
#endif /* CONFIG_USE_USB_BUFFER_ALLOC_RX */
 
   if (precvbuf->purb) {
       /* usb_kill_urb(precvbuf->purb); */
       usb_free_urb(precvbuf->purb);
   }
 
#endif /* CONFIG_USB_HCI */
 
 
   if (precvbuf->pskb) {
#ifdef CONFIG_PREALLOC_RX_SKB_BUFFER
       if (rtw_free_skb_premem(precvbuf->pskb) != 0)
#endif
           rtw_skb_free(precvbuf->pskb);
   }
   return ret;
 
}
 
_pkt *rtw_os_alloc_msdu_pkt(union recv_frame *prframe, const u8 *da, const u8 *sa
   , u8 *msdu ,u16 msdu_len, enum rtw_rx_llc_hdl llc_hdl)
{
   u8    *data_ptr;
   _pkt *sub_skb;
   struct rx_pkt_attrib *pattrib;
 
   pattrib = &prframe->u.hdr.attrib;
 
#ifdef CONFIG_SKB_COPY
   sub_skb = rtw_skb_alloc(msdu_len + 14);
   if (sub_skb) {
       skb_reserve(sub_skb, 14);
       data_ptr = (u8 *)skb_put(sub_skb, msdu_len);
       _rtw_memcpy(data_ptr, msdu, msdu_len);
   } else
#endif /* CONFIG_SKB_COPY */
   {
       sub_skb = rtw_skb_clone(prframe->u.hdr.pkt);
       if (sub_skb) {
           sub_skb->data = msdu;
           sub_skb->len = msdu_len;
           skb_set_tail_pointer(sub_skb, msdu_len);
       } else {
           RTW_INFO("%s(): rtw_skb_clone() Fail!!!\n", __FUNCTION__);
           return NULL;
       }
   }
 
   if (llc_hdl) {
       /* remove RFC1042 or Bridge-Tunnel encapsulation and replace EtherType */
       skb_pull(sub_skb, SNAP_SIZE);
       _rtw_memcpy(skb_push(sub_skb, ETH_ALEN), sa, ETH_ALEN);
       _rtw_memcpy(skb_push(sub_skb, ETH_ALEN), da, ETH_ALEN);
   } else {
       /* Leave Ethernet header part of hdr and full payload */
       u16 len;
 
       len = htons(sub_skb->len);
       _rtw_memcpy(skb_push(sub_skb, 2), &len, 2);
       _rtw_memcpy(skb_push(sub_skb, ETH_ALEN), sa, ETH_ALEN);
       _rtw_memcpy(skb_push(sub_skb, ETH_ALEN), da, ETH_ALEN);
   }
 
   return sub_skb;
}
 
#ifdef CONFIG_RTW_NAPI
static int napi_recv(_adapter *padapter, int budget)
{
   _pkt *pskb;
   struct recv_priv *precvpriv = &padapter->recvpriv;
   int work_done = 0;
   struct registry_priv *pregistrypriv = &padapter->registrypriv;
   u8 rx_ok;
 
 
   while ((work_done < budget) &&
          (!skb_queue_empty(&precvpriv->rx_napi_skb_queue))) {
       pskb = skb_dequeue(&precvpriv->rx_napi_skb_queue);
       if (!pskb)
           break;
 
       rx_ok = _FALSE;
 
#ifdef CONFIG_RTW_GRO
       /*
           cloned SKB use dataref to avoid kernel release it.
           But dataref changed in napi_gro_receive.
           So, we should prevent cloned SKB go into napi_gro_receive.
       */
       if (pregistrypriv->en_gro && !skb_cloned(pskb)) {
#if (LINUX_VERSION_CODE >= KERNEL_VERSION(5, 12, 0))
           rtw_napi_gro_receive(&padapter->napi, pskb);
           rx_ok = _TRUE;
#else
           if (rtw_napi_gro_receive(&padapter->napi, pskb) != GRO_DROP)
               rx_ok = _TRUE;
#endif
           goto next;
       }
#endif /* CONFIG_RTW_GRO */
 
       if (rtw_netif_receive_skb(padapter->pnetdev, pskb) == NET_RX_SUCCESS)
           rx_ok = _TRUE;
 
next:
       if (rx_ok == _TRUE) {
           work_done++;
           DBG_COUNTER(padapter->rx_logs.os_netif_ok);
       } else {
           DBG_COUNTER(padapter->rx_logs.os_netif_err);
       }
   }
 
   return work_done;
}
 
int rtw_recv_napi_poll(struct napi_struct *napi, int budget)
{
   _adapter *padapter = container_of(napi, _adapter, napi);
   int work_done = 0;
   struct recv_priv *precvpriv = &padapter->recvpriv;
 
 
   work_done = napi_recv(padapter, budget);
   if (work_done < budget) {
#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 19, 0)) && defined(CONFIG_PCI_HCI)
       napi_complete_done(napi, work_done);
#else
       napi_complete(napi);
#endif
       if (!skb_queue_empty(&precvpriv->rx_napi_skb_queue))
           napi_schedule(napi);
   }
 
   return work_done;
}
 
#ifdef CONFIG_RTW_NAPI_DYNAMIC
void dynamic_napi_th_chk (_adapter *adapter)
{
 
   if (adapter->registrypriv.en_napi) {
       struct dvobj_priv *dvobj;
       struct registry_priv *registry;
   
       dvobj = adapter_to_dvobj(adapter);
       registry = &adapter->registrypriv;
       if (dvobj->traffic_stat.cur_rx_tp > registry->napi_threshold)
           dvobj->en_napi_dynamic = 1;
       else
           dvobj->en_napi_dynamic = 0;
   }
 
}
#endif /* CONFIG_RTW_NAPI_DYNAMIC */
#endif /* CONFIG_RTW_NAPI */
 
void rtw_os_recv_indicate_pkt(_adapter *padapter, _pkt *pkt, union recv_frame *rframe)
{
   struct mlme_priv *pmlmepriv = &padapter->mlmepriv;
   struct recv_priv *precvpriv = &(padapter->recvpriv);
   struct registry_priv    *pregistrypriv = &padapter->registrypriv;
#ifdef CONFIG_BR_EXT
   void *br_port = NULL;
#endif
   int ret;
 
   /* Indicat the packets to upper layer */
   if (pkt) {
       struct ethhdr *ehdr = (struct ethhdr *)pkt->data;
 
       DBG_COUNTER(padapter->rx_logs.os_indicate);
 
#ifdef CONFIG_BR_EXT
       if (!adapter_use_wds(padapter) && check_fwstate(pmlmepriv, WIFI_STATION_STATE | WIFI_ADHOC_STATE) == _TRUE) {
           /* Insert NAT2.5 RX here! */
           #if (LINUX_VERSION_CODE <= KERNEL_VERSION(2, 6, 35))
           br_port = padapter->pnetdev->br_port;
           #else
           rcu_read_lock();
           br_port = rcu_dereference(padapter->pnetdev->rx_handler_data);
           rcu_read_unlock();
           #endif
 
           if (br_port) {
               int nat25_handle_frame(_adapter *priv, struct sk_buff *skb);
 
               if (nat25_handle_frame(padapter, pkt) == -1) {
                   /* priv->ext_stats.rx_data_drops++; */
                   /* DEBUG_ERR("RX DROP: nat25_handle_frame fail!\n"); */
                   /* return FAIL; */
 
                   #if 1
                   /* bypass this frame to upper layer!! */
                   #else
                   rtw_skb_free(sub_skb);
                   continue;
                   #endif
               }
           }
       }
#endif /* CONFIG_BR_EXT */
 
       /* After eth_type_trans process , pkt->data pointer will move from ethrnet header to ip header */
       pkt->protocol = eth_type_trans(pkt, padapter->pnetdev);
       pkt->dev = padapter->pnetdev;
       pkt->ip_summed = CHECKSUM_NONE; /* CONFIG_TCP_CSUM_OFFLOAD_RX */
 
       if (padapter->recvpriv.ip_statistic.enabled)
           rtw_rx_dbg_monitor_ip_statistic(padapter, pkt);
 
#ifdef CONFIG_TCP_CSUM_OFFLOAD_RX
       if ((rframe->u.hdr.attrib.csum_valid == 1)
           && (rframe->u.hdr.attrib.csum_err == 0))
           pkt->ip_summed = CHECKSUM_UNNECESSARY;
#endif /* CONFIG_TCP_CSUM_OFFLOAD_RX */
 
#ifdef CONFIG_RTW_NAPI
#ifdef CONFIG_RTW_NAPI_DYNAMIC
       if (!skb_queue_empty(&precvpriv->rx_napi_skb_queue)
           && !adapter_to_dvobj(padapter)->en_napi_dynamic            
           )
           napi_recv(padapter, RTL_NAPI_WEIGHT);
#endif
 
       if (pregistrypriv->en_napi
           #ifdef CONFIG_RTW_NAPI_DYNAMIC
           && adapter_to_dvobj(padapter)->en_napi_dynamic
           #endif
       ) {
           skb_queue_tail(&precvpriv->rx_napi_skb_queue, pkt);
           #ifndef CONFIG_RTW_NAPI_V2
           napi_schedule(&padapter->napi);
           #endif
           return;
       }
#endif /* CONFIG_RTW_NAPI */
 
       ret = rtw_netif_rx(padapter->pnetdev, pkt);
       if (ret == NET_RX_SUCCESS)
           DBG_COUNTER(padapter->rx_logs.os_netif_ok);
       else
           DBG_COUNTER(padapter->rx_logs.os_netif_err);
   }
}
 
void rtw_handle_tkip_mic_err(_adapter *padapter, struct sta_info *sta, u8 bgroup)
{
#ifdef CONFIG_IOCTL_CFG80211
   enum nl80211_key_type key_type = 0;
#endif
   union iwreq_data wrqu;
   struct iw_michaelmicfailure    ev;
   struct security_priv    *psecuritypriv = &padapter->securitypriv;
   systime cur_time = 0;
 
   if (psecuritypriv->last_mic_err_time == 0)
       psecuritypriv->last_mic_err_time = rtw_get_current_time();
   else {
       cur_time = rtw_get_current_time();
 
       if (cur_time - psecuritypriv->last_mic_err_time < 60 * HZ) {
           psecuritypriv->btkip_countermeasure = _TRUE;
           psecuritypriv->last_mic_err_time = 0;
           psecuritypriv->btkip_countermeasure_time = cur_time;
       } else
           psecuritypriv->last_mic_err_time = rtw_get_current_time();
   }
 
#ifdef CONFIG_IOCTL_CFG80211
   if (bgroup)
       key_type |= NL80211_KEYTYPE_GROUP;
   else
       key_type |= NL80211_KEYTYPE_PAIRWISE;
 
   cfg80211_michael_mic_failure(padapter->pnetdev, sta->cmn.mac_addr, key_type, -1, NULL, GFP_ATOMIC);
#endif
 
   _rtw_memset(&ev, 0x00, sizeof(ev));
   if (bgroup)
       ev.flags |= IW_MICFAILURE_GROUP;
   else
       ev.flags |= IW_MICFAILURE_PAIRWISE;
 
   ev.src_addr.sa_family = ARPHRD_ETHER;
   _rtw_memcpy(ev.src_addr.sa_data, sta->cmn.mac_addr, ETH_ALEN);
 
   _rtw_memset(&wrqu, 0x00, sizeof(wrqu));
   wrqu.data.length = sizeof(ev);
 
#ifndef CONFIG_IOCTL_CFG80211
   wireless_send_event(padapter->pnetdev, IWEVMICHAELMICFAILURE, &wrqu, (char *) &ev);
#endif
}
 
#ifdef CONFIG_HOSTAPD_MLME
void rtw_hostapd_mlme_rx(_adapter *padapter, union recv_frame *precv_frame)
{
   _pkt *skb;
   struct hostapd_priv *phostapdpriv  = padapter->phostapdpriv;
   struct net_device *pmgnt_netdev = phostapdpriv->pmgnt_netdev;
 
 
   skb = precv_frame->u.hdr.pkt;
 
   if (skb == NULL)
       return;
 
   skb->data = precv_frame->u.hdr.rx_data;
   skb->tail = precv_frame->u.hdr.rx_tail;
   skb->len = precv_frame->u.hdr.len;
 
   /* pskb_copy = rtw_skb_copy(skb);
   *    if(skb == NULL) goto _exit; */
 
   skb->dev = pmgnt_netdev;
   skb->ip_summed = CHECKSUM_NONE;
   skb->pkt_type = PACKET_OTHERHOST;
   /* skb->protocol = __constant_htons(0x0019); ETH_P_80211_RAW */
   skb->protocol = __constant_htons(0x0003); /*ETH_P_80211_RAW*/
 
   /* RTW_INFO("(1)data=0x%x, head=0x%x, tail=0x%x, mac_header=0x%x, len=%d\n", skb->data, skb->head, skb->tail, skb->mac_header, skb->len); */
 
   /* skb->mac.raw = skb->data; */
   skb_reset_mac_header(skb);
 
   /* skb_pull(skb, 24); */
   _rtw_memset(skb->cb, 0, sizeof(skb->cb));
 
   rtw_netif_rx(pmgnt_netdev, skb);
 
   precv_frame->u.hdr.pkt = NULL; /* set pointer to NULL before rtw_free_recvframe() if call rtw_netif_rx() */
}
#endif /* CONFIG_HOSTAPD_MLME */
 
#ifdef CONFIG_WIFI_MONITOR
/* 
   precv_frame: impossible to be NULL
   precv_frame: free by caller
 */
int rtw_recv_monitor(_adapter *padapter, union recv_frame *precv_frame)
{
   int ret = _FAIL;
   _pkt *skb;
 
   skb = precv_frame->u.hdr.pkt;
   if (skb == NULL) {
       RTW_INFO("%s :skb==NULL something wrong!!!!\n", __func__);
       goto _recv_drop;
   }
 
   skb->data = precv_frame->u.hdr.rx_data;
   skb_set_tail_pointer(skb, precv_frame->u.hdr.len);
   skb->len = precv_frame->u.hdr.len;
   skb->ip_summed = CHECKSUM_NONE;
   skb->pkt_type = PACKET_OTHERHOST;
   skb->protocol = htons(0x0019); /* ETH_P_80211_RAW */
 
   /* send to kernel */
   rtw_netif_rx(padapter->pnetdev, skb);
 
   /* pointers to NULL before rtw_free_recvframe() */
   precv_frame->u.hdr.pkt = NULL;
 
   ret = _SUCCESS;
 
_recv_drop:
   return ret;
}
#endif /* CONFIG_WIFI_MONITOR */
 
inline void rtw_rframe_set_os_pkt(union recv_frame *rframe)
{
   _pkt *skb = rframe->u.hdr.pkt;
 
   skb->data = rframe->u.hdr.rx_data;
   skb_set_tail_pointer(skb, rframe->u.hdr.len);
   skb->len = rframe->u.hdr.len;
}
 
int rtw_recv_indicatepkt(_adapter *padapter, union recv_frame *precv_frame)
{
   struct recv_priv *precvpriv;
   _queue    *pfree_recv_queue;
 
   precvpriv = &(padapter->recvpriv);
   pfree_recv_queue = &(precvpriv->free_recv_queue);
 
   if (precv_frame->u.hdr.pkt == NULL)
       goto _recv_indicatepkt_drop;
 
   rtw_os_recv_indicate_pkt(padapter, precv_frame->u.hdr.pkt, precv_frame);
 
   precv_frame->u.hdr.pkt = NULL;
   rtw_free_recvframe(precv_frame, pfree_recv_queue);
   return _SUCCESS;
 
_recv_indicatepkt_drop:
   rtw_free_recvframe(precv_frame, pfree_recv_queue);
   DBG_COUNTER(padapter->rx_logs.os_indicate_err);
   return _FAIL;
}
 
void rtw_os_read_port(_adapter *padapter, struct recv_buf *precvbuf)
{
#ifdef CONFIG_USB_HCI
   struct recv_priv *precvpriv = &padapter->recvpriv;
 
   precvbuf->ref_cnt--;
 
   /* free skb in recv_buf */
   rtw_skb_free(precvbuf->pskb);
 
   precvbuf->pskb = NULL;
 
   if (precvbuf->irp_pending == _FALSE)
       rtw_read_port(padapter, precvpriv->ff_hwaddr, 0, (unsigned char *)precvbuf);
 
 
#endif
#if defined(CONFIG_SDIO_HCI) || defined(CONFIG_GSPI_HCI)
   precvbuf->pskb = NULL;
#endif
 
}