| /OK3568_Linux_fs/kernel/drivers/staging/rtl8712/ |
| H A D | rtl8712_recv.c | 434 static int check_indicate_seq(struct recv_reorder_ctrl *preorder_ctrl, in check_indicate_seq() argument 437 u8 wsize = preorder_ctrl->wsize_b; in check_indicate_seq() 438 u16 wend = (preorder_ctrl->indicate_seq + wsize - 1) % 4096; in check_indicate_seq() 441 if (preorder_ctrl->indicate_seq == 0xffff) in check_indicate_seq() 442 preorder_ctrl->indicate_seq = seq_num; in check_indicate_seq() 444 if (SN_LESS(seq_num, preorder_ctrl->indicate_seq)) in check_indicate_seq() 451 if (SN_EQUAL(seq_num, preorder_ctrl->indicate_seq)) in check_indicate_seq() 452 preorder_ctrl->indicate_seq = (preorder_ctrl->indicate_seq + in check_indicate_seq() 456 preorder_ctrl->indicate_seq = seq_num + 1 - wsize; in check_indicate_seq() 458 preorder_ctrl->indicate_seq = 4095 - (wsize - in check_indicate_seq() [all …]
|
| H A D | rtl871x_sta_mgt.c | 95 struct recv_reorder_ctrl *preorder_ctrl; in r8712_alloc_stainfo() local 127 preorder_ctrl = &psta->recvreorder_ctrl[i]; in r8712_alloc_stainfo() 128 preorder_ctrl->padapter = pstapriv->padapter; in r8712_alloc_stainfo() 129 preorder_ctrl->indicate_seq = 0xffff; in r8712_alloc_stainfo() 130 preorder_ctrl->wend_b = 0xffff; in r8712_alloc_stainfo() 131 preorder_ctrl->wsize_b = 64; in r8712_alloc_stainfo() 132 _init_queue(&preorder_ctrl->pending_recvframe_queue); in r8712_alloc_stainfo() 133 r8712_init_recv_timer(preorder_ctrl); in r8712_alloc_stainfo() 147 struct recv_reorder_ctrl *preorder_ctrl; in r8712_free_stainfo() local 181 preorder_ctrl = &psta->recvreorder_ctrl[i]; in r8712_free_stainfo() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/staging/rtl8188eu/core/ |
| H A D | rtw_sta_mgt.c | 135 struct recv_reorder_ctrl *preorder_ctrl; in _rtw_free_sta_priv() local 154 preorder_ctrl = &psta->recvreorder_ctrl[i]; in _rtw_free_sta_priv() 155 del_timer_sync(&preorder_ctrl->reordering_ctrl_timer); in _rtw_free_sta_priv() 172 struct recv_reorder_ctrl *preorder_ctrl; in rtw_alloc_stainfo() local 225 preorder_ctrl = &psta->recvreorder_ctrl[i]; in rtw_alloc_stainfo() 227 preorder_ctrl->padapter = pstapriv->padapter; in rtw_alloc_stainfo() 229 preorder_ctrl->enable = false; in rtw_alloc_stainfo() 231 preorder_ctrl->indicate_seq = 0xffff; in rtw_alloc_stainfo() 232 preorder_ctrl->wend_b = 0xffff; in rtw_alloc_stainfo() 233 preorder_ctrl->wsize_b = 64;/* 64; */ in rtw_alloc_stainfo() [all …]
|
| H A D | rtw_recv.c | 1107 precv_frame->preorder_ctrl = &psta->recvreorder_ctrl[pattrib->priority]; in validate_recv_data_frame() 1586 static int check_indicate_seq(struct recv_reorder_ctrl *preorder_ctrl, u16 seq_num) in check_indicate_seq() argument 1588 u8 wsize = preorder_ctrl->wsize_b; in check_indicate_seq() 1589 u16 wend = (preorder_ctrl->indicate_seq + wsize - 1) & 0xFFF;/* 4096; */ in check_indicate_seq() 1592 if (preorder_ctrl->indicate_seq == 0xFFFF) in check_indicate_seq() 1593 preorder_ctrl->indicate_seq = seq_num; in check_indicate_seq() 1596 if (SN_LESS(seq_num, preorder_ctrl->indicate_seq)) in check_indicate_seq() 1604 if (SN_EQUAL(seq_num, preorder_ctrl->indicate_seq)) { in check_indicate_seq() 1605 preorder_ctrl->indicate_seq = (preorder_ctrl->indicate_seq + 1) & 0xFFF; in check_indicate_seq() 1608 preorder_ctrl->indicate_seq = seq_num + 1 - wsize; in check_indicate_seq() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/staging/rtl8723bs/core/ |
| H A D | rtw_sta_mgt.c | 153 struct recv_reorder_ctrl *preorder_ctrl; in _rtw_free_sta_priv() local 170 preorder_ctrl = &psta->recvreorder_ctrl[i]; in _rtw_free_sta_priv() 171 del_timer_sync(&preorder_ctrl->reordering_ctrl_timer); in _rtw_free_sta_priv() 194 struct recv_reorder_ctrl *preorder_ctrl; in rtw_alloc_stainfo() local 266 preorder_ctrl = &psta->recvreorder_ctrl[i]; in rtw_alloc_stainfo() 268 preorder_ctrl->padapter = pstapriv->padapter; in rtw_alloc_stainfo() 270 preorder_ctrl->enable = false; in rtw_alloc_stainfo() 272 preorder_ctrl->indicate_seq = 0xffff; in rtw_alloc_stainfo() 275 preorder_ctrl->indicate_seq); in rtw_alloc_stainfo() 277 preorder_ctrl->wend_b = 0xffff; in rtw_alloc_stainfo() [all …]
|
| H A D | rtw_recv.c | 1365 precv_frame->u.hdr.preorder_ctrl = &psta->recvreorder_ctrl[pattrib->priority]; in validate_recv_data_frame() 1966 int check_indicate_seq(struct recv_reorder_ctrl *preorder_ctrl, u16 seq_num); 1967 int check_indicate_seq(struct recv_reorder_ctrl *preorder_ctrl, u16 seq_num) in check_indicate_seq() argument 1969 struct adapter *padapter = preorder_ctrl->padapter; in check_indicate_seq() 1972 u8 wsize = preorder_ctrl->wsize_b; in check_indicate_seq() 1973 u16 wend = (preorder_ctrl->indicate_seq + wsize - 1) & 0xFFF;/* 4096; */ in check_indicate_seq() 1976 if (preorder_ctrl->indicate_seq == 0xFFFF) { in check_indicate_seq() 1977 preorder_ctrl->indicate_seq = seq_num; in check_indicate_seq() 1980 preorder_ctrl->indicate_seq, seq_num); in check_indicate_seq() 1989 if (SN_LESS(seq_num, preorder_ctrl->indicate_seq)) { in check_indicate_seq() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8189es/core/ |
| H A D | rtw_sta_mgt.c | 279 struct recv_reorder_ctrl *preorder_ctrl; in _rtw_free_sta_priv() local 300 preorder_ctrl = &psta->recvreorder_ctrl[i]; in _rtw_free_sta_priv() 301 _cancel_timer_ex(&preorder_ctrl->reordering_ctrl_timer); in _rtw_free_sta_priv() 329 struct recv_reorder_ctrl *preorder_ctrl; in rtw_alloc_stainfo() local 404 preorder_ctrl = &psta->recvreorder_ctrl[i]; in rtw_alloc_stainfo() 406 preorder_ctrl->padapter = pstapriv->padapter; in rtw_alloc_stainfo() 408 preorder_ctrl->enable = _FALSE; in rtw_alloc_stainfo() 410 preorder_ctrl->indicate_seq = 0xffff; in rtw_alloc_stainfo() 413 preorder_ctrl->indicate_seq); in rtw_alloc_stainfo() 415 preorder_ctrl->wend_b= 0xffff; in rtw_alloc_stainfo() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8723bs/core/ |
| H A D | rtw_sta_mgt.c | 370 struct recv_reorder_ctrl *preorder_ctrl; in _rtw_free_sta_priv() local 387 preorder_ctrl = &psta->recvreorder_ctrl[i]; in _rtw_free_sta_priv() 388 _cancel_timer_ex(&preorder_ctrl->reordering_ctrl_timer); in _rtw_free_sta_priv() 413 static void rtw_init_recv_timer(struct recv_reorder_ctrl *preorder_ctrl) in rtw_init_recv_timer() argument 415 _adapter *padapter = preorder_ctrl->padapter; in rtw_init_recv_timer() 417 …rtw_init_timer(&(preorder_ctrl->reordering_ctrl_timer), padapter, rtw_reordering_ctrl_timeout_hand… in rtw_init_recv_timer() 429 struct recv_reorder_ctrl *preorder_ctrl; in rtw_alloc_stainfo() local 491 preorder_ctrl = &psta->recvreorder_ctrl[i]; in rtw_alloc_stainfo() 493 preorder_ctrl->padapter = pstapriv->padapter; in rtw_alloc_stainfo() 495 preorder_ctrl->enable = _FALSE; in rtw_alloc_stainfo() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8822be/core/ |
| H A D | rtw_sta_mgt.c | 412 struct recv_reorder_ctrl *preorder_ctrl; in _rtw_free_sta_priv() local 430 preorder_ctrl = &psta->recvreorder_ctrl[i]; in _rtw_free_sta_priv() 431 _cancel_timer_ex(&preorder_ctrl->reordering_ctrl_timer); in _rtw_free_sta_priv() 462 struct recv_reorder_ctrl *preorder_ctrl; in rtw_alloc_stainfo() local 531 preorder_ctrl = &psta->recvreorder_ctrl[i]; in rtw_alloc_stainfo() 533 preorder_ctrl->padapter = pstapriv->padapter; in rtw_alloc_stainfo() 535 preorder_ctrl->enable = _FALSE; in rtw_alloc_stainfo() 537 preorder_ctrl->indicate_seq = 0xffff; in rtw_alloc_stainfo() 540 preorder_ctrl->indicate_seq); in rtw_alloc_stainfo() 542 preorder_ctrl->wend_b = 0xffff; in rtw_alloc_stainfo() [all …]
|
| H A D | rtw_recv.c | 1949 precv_frame->u.hdr.preorder_ctrl = &psta->recvreorder_ctrl[pattrib->priority]; in validate_recv_data_frame() 2897 int check_indicate_seq(struct recv_reorder_ctrl *preorder_ctrl, u16 seq_num); 2898 int check_indicate_seq(struct recv_reorder_ctrl *preorder_ctrl, u16 seq_num) in check_indicate_seq() argument 2900 PADAPTER padapter = preorder_ctrl->padapter; in check_indicate_seq() 2903 u8 wsize = preorder_ctrl->wsize_b; in check_indicate_seq() 2904 u16 wend = (preorder_ctrl->indicate_seq + wsize - 1) & 0xFFF; /* % 4096; */ in check_indicate_seq() 2907 if (preorder_ctrl->indicate_seq == 0xFFFF) { in check_indicate_seq() 2908 preorder_ctrl->indicate_seq = seq_num; in check_indicate_seq() 2911 preorder_ctrl->indicate_seq, seq_num); in check_indicate_seq() 2920 if (SN_LESS(seq_num, preorder_ctrl->indicate_seq)) { in check_indicate_seq() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8723bu/core/ |
| H A D | rtw_sta_mgt.c | 415 struct recv_reorder_ctrl *preorder_ctrl; in _rtw_free_sta_priv() local 436 preorder_ctrl = &psta->recvreorder_ctrl[i]; in _rtw_free_sta_priv() 437 _cancel_timer_ex(&preorder_ctrl->reordering_ctrl_timer); in _rtw_free_sta_priv() 465 struct recv_reorder_ctrl *preorder_ctrl; in rtw_alloc_stainfo() local 540 preorder_ctrl = &psta->recvreorder_ctrl[i]; in rtw_alloc_stainfo() 542 preorder_ctrl->padapter = pstapriv->padapter; in rtw_alloc_stainfo() 544 preorder_ctrl->enable = _FALSE; in rtw_alloc_stainfo() 546 preorder_ctrl->indicate_seq = 0xffff; in rtw_alloc_stainfo() 549 preorder_ctrl->indicate_seq); in rtw_alloc_stainfo() 551 preorder_ctrl->wend_b= 0xffff; in rtw_alloc_stainfo() [all …]
|
| /OK3568_Linux_fs/external/rkwifibt/drivers/rtl8822cs/core/ |
| H A D | rtw_sta_mgt.c | 451 struct recv_reorder_ctrl *preorder_ctrl; in _rtw_free_sta_priv() local 468 preorder_ctrl = &psta->recvreorder_ctrl[i]; in _rtw_free_sta_priv() 469 _cancel_timer_ex(&preorder_ctrl->reordering_ctrl_timer); in _rtw_free_sta_priv() 506 static void rtw_init_recv_timer(struct recv_reorder_ctrl *preorder_ctrl) in rtw_init_recv_timer() argument 508 _adapter *padapter = preorder_ctrl->padapter; in rtw_init_recv_timer() 511 …rtw_init_timer(&(preorder_ctrl->reordering_ctrl_timer), padapter, rtw_reordering_ctrl_timeout_hand… in rtw_init_recv_timer() 523 struct recv_reorder_ctrl *preorder_ctrl; in rtw_alloc_stainfo() local 588 preorder_ctrl = &psta->recvreorder_ctrl[i]; in rtw_alloc_stainfo() 589 preorder_ctrl->padapter = pstapriv->padapter; in rtw_alloc_stainfo() 590 preorder_ctrl->tid = i; in rtw_alloc_stainfo() [all …]
|
| /OK3568_Linux_fs/external/rkwifibt/drivers/rtl8189fs/core/ |
| H A D | rtw_sta_mgt.c | 444 struct recv_reorder_ctrl *preorder_ctrl; in _rtw_free_sta_priv() local 461 preorder_ctrl = &psta->recvreorder_ctrl[i]; in _rtw_free_sta_priv() 462 _cancel_timer_ex(&preorder_ctrl->reordering_ctrl_timer); in _rtw_free_sta_priv() 497 static void rtw_init_recv_timer(struct recv_reorder_ctrl *preorder_ctrl) in rtw_init_recv_timer() argument 499 _adapter *padapter = preorder_ctrl->padapter; in rtw_init_recv_timer() 502 …rtw_init_timer(&(preorder_ctrl->reordering_ctrl_timer), padapter, rtw_reordering_ctrl_timeout_hand… in rtw_init_recv_timer() 514 struct recv_reorder_ctrl *preorder_ctrl; in rtw_alloc_stainfo() local 579 preorder_ctrl = &psta->recvreorder_ctrl[i]; in rtw_alloc_stainfo() 580 preorder_ctrl->padapter = pstapriv->padapter; in rtw_alloc_stainfo() 581 preorder_ctrl->tid = i; in rtw_alloc_stainfo() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8189fs/core/ |
| H A D | rtw_sta_mgt.c | 443 struct recv_reorder_ctrl *preorder_ctrl; in _rtw_free_sta_priv() local 460 preorder_ctrl = &psta->recvreorder_ctrl[i]; in _rtw_free_sta_priv() 461 _cancel_timer_ex(&preorder_ctrl->reordering_ctrl_timer); in _rtw_free_sta_priv() 496 static void rtw_init_recv_timer(struct recv_reorder_ctrl *preorder_ctrl) in rtw_init_recv_timer() argument 498 _adapter *padapter = preorder_ctrl->padapter; in rtw_init_recv_timer() 501 …rtw_init_timer(&(preorder_ctrl->reordering_ctrl_timer), padapter, rtw_reordering_ctrl_timeout_hand… in rtw_init_recv_timer() 513 struct recv_reorder_ctrl *preorder_ctrl; in rtw_alloc_stainfo() local 576 preorder_ctrl = &psta->recvreorder_ctrl[i]; in rtw_alloc_stainfo() 577 preorder_ctrl->padapter = pstapriv->padapter; in rtw_alloc_stainfo() 578 preorder_ctrl->tid = i; in rtw_alloc_stainfo() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8723ds/core/ |
| H A D | rtw_sta_mgt.c | 446 struct recv_reorder_ctrl *preorder_ctrl; in _rtw_free_sta_priv() local 463 preorder_ctrl = &psta->recvreorder_ctrl[i]; in _rtw_free_sta_priv() 464 _cancel_timer_ex(&preorder_ctrl->reordering_ctrl_timer); in _rtw_free_sta_priv() 499 static void rtw_init_recv_timer(struct recv_reorder_ctrl *preorder_ctrl) in rtw_init_recv_timer() argument 501 _adapter *padapter = preorder_ctrl->padapter; in rtw_init_recv_timer() 504 …rtw_init_timer(&(preorder_ctrl->reordering_ctrl_timer), padapter, rtw_reordering_ctrl_timeout_hand… in rtw_init_recv_timer() 516 struct recv_reorder_ctrl *preorder_ctrl; in rtw_alloc_stainfo() local 579 preorder_ctrl = &psta->recvreorder_ctrl[i]; in rtw_alloc_stainfo() 580 preorder_ctrl->padapter = pstapriv->padapter; in rtw_alloc_stainfo() 581 preorder_ctrl->tid = i; in rtw_alloc_stainfo() [all …]
|
| /OK3568_Linux_fs/external/rkwifibt/drivers/rtl8723ds/core/ |
| H A D | rtw_sta_mgt.c | 449 struct recv_reorder_ctrl *preorder_ctrl; in _rtw_free_sta_priv() local 466 preorder_ctrl = &psta->recvreorder_ctrl[i]; in _rtw_free_sta_priv() 467 _cancel_timer_ex(&preorder_ctrl->reordering_ctrl_timer); in _rtw_free_sta_priv() 502 static void rtw_init_recv_timer(struct recv_reorder_ctrl *preorder_ctrl) in rtw_init_recv_timer() argument 504 _adapter *padapter = preorder_ctrl->padapter; in rtw_init_recv_timer() 507 …rtw_init_timer(&(preorder_ctrl->reordering_ctrl_timer), padapter, rtw_reordering_ctrl_timeout_hand… in rtw_init_recv_timer() 519 struct recv_reorder_ctrl *preorder_ctrl; in rtw_alloc_stainfo() local 584 preorder_ctrl = &psta->recvreorder_ctrl[i]; in rtw_alloc_stainfo() 585 preorder_ctrl->padapter = pstapriv->padapter; in rtw_alloc_stainfo() 586 preorder_ctrl->tid = i; in rtw_alloc_stainfo() [all …]
|
| /OK3568_Linux_fs/external/rkwifibt/drivers/rtl8821cs/core/ |
| H A D | rtw_sta_mgt.c | 451 struct recv_reorder_ctrl *preorder_ctrl; in _rtw_free_sta_priv() local 468 preorder_ctrl = &psta->recvreorder_ctrl[i]; in _rtw_free_sta_priv() 469 _cancel_timer_ex(&preorder_ctrl->reordering_ctrl_timer); in _rtw_free_sta_priv() 506 static void rtw_init_recv_timer(struct recv_reorder_ctrl *preorder_ctrl) in rtw_init_recv_timer() argument 508 _adapter *padapter = preorder_ctrl->padapter; in rtw_init_recv_timer() 511 …rtw_init_timer(&(preorder_ctrl->reordering_ctrl_timer), padapter, rtw_reordering_ctrl_timeout_hand… in rtw_init_recv_timer() 523 struct recv_reorder_ctrl *preorder_ctrl; in rtw_alloc_stainfo() local 588 preorder_ctrl = &psta->recvreorder_ctrl[i]; in rtw_alloc_stainfo() 589 preorder_ctrl->padapter = pstapriv->padapter; in rtw_alloc_stainfo() 590 preorder_ctrl->tid = i; in rtw_alloc_stainfo() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8821cs/core/ |
| H A D | rtw_sta_mgt.c | 450 struct recv_reorder_ctrl *preorder_ctrl; in _rtw_free_sta_priv() local 467 preorder_ctrl = &psta->recvreorder_ctrl[i]; in _rtw_free_sta_priv() 468 _cancel_timer_ex(&preorder_ctrl->reordering_ctrl_timer); in _rtw_free_sta_priv() 503 static void rtw_init_recv_timer(struct recv_reorder_ctrl *preorder_ctrl) in rtw_init_recv_timer() argument 505 _adapter *padapter = preorder_ctrl->padapter; in rtw_init_recv_timer() 508 …rtw_init_timer(&(preorder_ctrl->reordering_ctrl_timer), padapter, rtw_reordering_ctrl_timeout_hand… in rtw_init_recv_timer() 520 struct recv_reorder_ctrl *preorder_ctrl; in rtw_alloc_stainfo() local 585 preorder_ctrl = &psta->recvreorder_ctrl[i]; in rtw_alloc_stainfo() 586 preorder_ctrl->padapter = pstapriv->padapter; in rtw_alloc_stainfo() 587 preorder_ctrl->tid = i; in rtw_alloc_stainfo() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8822bs/core/ |
| H A D | rtw_sta_mgt.c | 442 struct recv_reorder_ctrl *preorder_ctrl; in _rtw_free_sta_priv() local 459 preorder_ctrl = &psta->recvreorder_ctrl[i]; in _rtw_free_sta_priv() 460 _cancel_timer_ex(&preorder_ctrl->reordering_ctrl_timer); in _rtw_free_sta_priv() 495 static void rtw_init_recv_timer(struct recv_reorder_ctrl *preorder_ctrl) in rtw_init_recv_timer() argument 497 _adapter *padapter = preorder_ctrl->padapter; in rtw_init_recv_timer() 500 …rtw_init_timer(&(preorder_ctrl->reordering_ctrl_timer), padapter, rtw_reordering_ctrl_timeout_hand… in rtw_init_recv_timer() 512 struct recv_reorder_ctrl *preorder_ctrl; in rtw_alloc_stainfo() local 575 preorder_ctrl = &psta->recvreorder_ctrl[i]; in rtw_alloc_stainfo() 576 preorder_ctrl->padapter = pstapriv->padapter; in rtw_alloc_stainfo() 577 preorder_ctrl->tid = i; in rtw_alloc_stainfo() [all …]
|
| /OK3568_Linux_fs/external/rkwifibt/drivers/rtl8188fu/core/ |
| H A D | rtw_sta_mgt.c | 444 struct recv_reorder_ctrl *preorder_ctrl; in _rtw_free_sta_priv() local 461 preorder_ctrl = &psta->recvreorder_ctrl[i]; in _rtw_free_sta_priv() 462 _cancel_timer_ex(&preorder_ctrl->reordering_ctrl_timer); in _rtw_free_sta_priv() 497 static void rtw_init_recv_timer(struct recv_reorder_ctrl *preorder_ctrl) in rtw_init_recv_timer() argument 499 _adapter *padapter = preorder_ctrl->padapter; in rtw_init_recv_timer() 502 …rtw_init_timer(&(preorder_ctrl->reordering_ctrl_timer), padapter, rtw_reordering_ctrl_timeout_hand… in rtw_init_recv_timer() 514 struct recv_reorder_ctrl *preorder_ctrl; in rtw_alloc_stainfo() local 579 preorder_ctrl = &psta->recvreorder_ctrl[i]; in rtw_alloc_stainfo() 580 preorder_ctrl->padapter = pstapriv->padapter; in rtw_alloc_stainfo() 581 preorder_ctrl->tid = i; in rtw_alloc_stainfo() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8723cs/core/ |
| H A D | rtw_sta_mgt.c | 449 struct recv_reorder_ctrl *preorder_ctrl; in _rtw_free_sta_priv() local 466 preorder_ctrl = &psta->recvreorder_ctrl[i]; in _rtw_free_sta_priv() 467 _cancel_timer_ex(&preorder_ctrl->reordering_ctrl_timer); in _rtw_free_sta_priv() 502 static void rtw_init_recv_timer(struct recv_reorder_ctrl *preorder_ctrl) in rtw_init_recv_timer() argument 504 _adapter *padapter = preorder_ctrl->padapter; in rtw_init_recv_timer() 507 …rtw_init_timer(&(preorder_ctrl->reordering_ctrl_timer), padapter, rtw_reordering_ctrl_timeout_hand… in rtw_init_recv_timer() 519 struct recv_reorder_ctrl *preorder_ctrl; in rtw_alloc_stainfo() local 584 preorder_ctrl = &psta->recvreorder_ctrl[i]; in rtw_alloc_stainfo() 585 preorder_ctrl->padapter = pstapriv->padapter; in rtw_alloc_stainfo() 586 preorder_ctrl->tid = i; in rtw_alloc_stainfo() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8188eu/core/ |
| H A D | rtw_sta_mgt.c | 443 struct recv_reorder_ctrl *preorder_ctrl; in _rtw_free_sta_priv() local 460 preorder_ctrl = &psta->recvreorder_ctrl[i]; in _rtw_free_sta_priv() 461 _cancel_timer_ex(&preorder_ctrl->reordering_ctrl_timer); in _rtw_free_sta_priv() 496 static void rtw_init_recv_timer(struct recv_reorder_ctrl *preorder_ctrl) in rtw_init_recv_timer() argument 498 _adapter *padapter = preorder_ctrl->padapter; in rtw_init_recv_timer() 501 …rtw_init_timer(&(preorder_ctrl->reordering_ctrl_timer), padapter, rtw_reordering_ctrl_timeout_hand… in rtw_init_recv_timer() 513 struct recv_reorder_ctrl *preorder_ctrl; in rtw_alloc_stainfo() local 576 preorder_ctrl = &psta->recvreorder_ctrl[i]; in rtw_alloc_stainfo() 577 preorder_ctrl->padapter = pstapriv->padapter; in rtw_alloc_stainfo() 578 preorder_ctrl->tid = i; in rtw_alloc_stainfo() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8188fu/core/ |
| H A D | rtw_sta_mgt.c | 443 struct recv_reorder_ctrl *preorder_ctrl; in _rtw_free_sta_priv() local 460 preorder_ctrl = &psta->recvreorder_ctrl[i]; in _rtw_free_sta_priv() 461 _cancel_timer_ex(&preorder_ctrl->reordering_ctrl_timer); in _rtw_free_sta_priv() 496 static void rtw_init_recv_timer(struct recv_reorder_ctrl *preorder_ctrl) in rtw_init_recv_timer() argument 498 _adapter *padapter = preorder_ctrl->padapter; in rtw_init_recv_timer() 501 …rtw_init_timer(&(preorder_ctrl->reordering_ctrl_timer), padapter, rtw_reordering_ctrl_timeout_hand… in rtw_init_recv_timer() 513 struct recv_reorder_ctrl *preorder_ctrl; in rtw_alloc_stainfo() local 576 preorder_ctrl = &psta->recvreorder_ctrl[i]; in rtw_alloc_stainfo() 577 preorder_ctrl->padapter = pstapriv->padapter; in rtw_alloc_stainfo() 578 preorder_ctrl->tid = i; in rtw_alloc_stainfo() [all …]
|
| /OK3568_Linux_fs/external/rkwifibt/drivers/rtl8852be/core/ |
| H A D | rtw_sta_mgt.c | 449 struct recv_reorder_ctrl *preorder_ctrl; in _rtw_free_sta_priv() local 463 preorder_ctrl = &psta->recvreorder_ctrl[i]; in _rtw_free_sta_priv() 464 _cancel_timer_ex(&preorder_ctrl->reordering_ctrl_timer); in _rtw_free_sta_priv() 500 static void rtw_init_recv_timer(struct recv_reorder_ctrl *preorder_ctrl) in rtw_init_recv_timer() argument 502 _adapter *padapter = preorder_ctrl->padapter; in rtw_init_recv_timer() 504 …rtw_init_timer(&(preorder_ctrl->reordering_ctrl_timer), rtw_reordering_ctrl_timeout_handler, preor… in rtw_init_recv_timer() 516 struct recv_reorder_ctrl *preorder_ctrl; in _rtw_alloc_core_stainfo() local 594 preorder_ctrl = &psta->recvreorder_ctrl[i]; in _rtw_alloc_core_stainfo() 595 preorder_ctrl->padapter = pstapriv->padapter; in _rtw_alloc_core_stainfo() 596 preorder_ctrl->tid = i; in _rtw_alloc_core_stainfo() [all …]
|
| /OK3568_Linux_fs/external/rkwifibt/drivers/rtl8852bs/core/ |
| H A D | rtw_sta_mgt.c | 449 struct recv_reorder_ctrl *preorder_ctrl; in _rtw_free_sta_priv() local 463 preorder_ctrl = &psta->recvreorder_ctrl[i]; in _rtw_free_sta_priv() 464 _cancel_timer_ex(&preorder_ctrl->reordering_ctrl_timer); in _rtw_free_sta_priv() 500 static void rtw_init_recv_timer(struct recv_reorder_ctrl *preorder_ctrl) in rtw_init_recv_timer() argument 502 _adapter *padapter = preorder_ctrl->padapter; in rtw_init_recv_timer() 504 …rtw_init_timer(&(preorder_ctrl->reordering_ctrl_timer), rtw_reordering_ctrl_timeout_handler, preor… in rtw_init_recv_timer() 516 struct recv_reorder_ctrl *preorder_ctrl; in _rtw_alloc_core_stainfo() local 594 preorder_ctrl = &psta->recvreorder_ctrl[i]; in _rtw_alloc_core_stainfo() 595 preorder_ctrl->padapter = pstapriv->padapter; in _rtw_alloc_core_stainfo() 596 preorder_ctrl->tid = i; in _rtw_alloc_core_stainfo() [all …]
|