Home
last modified time | relevance | path

Searched refs:preorder_ctrl (Results 1 – 8 of 8) sorted by relevance

/linux-6.14.4/drivers/staging/rtl8723bs/core/
Drtw_sta_mgt.c145 struct recv_reorder_ctrl *preorder_ctrl; in _rtw_free_sta_priv() local
160 preorder_ctrl = &psta->recvreorder_ctrl[i]; in _rtw_free_sta_priv()
161 del_timer_sync(&preorder_ctrl->reordering_ctrl_timer); in _rtw_free_sta_priv()
182 struct recv_reorder_ctrl *preorder_ctrl; in rtw_alloc_stainfo() local
236 preorder_ctrl = &psta->recvreorder_ctrl[i]; in rtw_alloc_stainfo()
238 preorder_ctrl->padapter = pstapriv->padapter; in rtw_alloc_stainfo()
240 preorder_ctrl->enable = false; in rtw_alloc_stainfo()
242 preorder_ctrl->indicate_seq = 0xffff; in rtw_alloc_stainfo()
243 preorder_ctrl->wend_b = 0xffff; in rtw_alloc_stainfo()
245 preorder_ctrl->wsize_b = 64;/* 64; */ in rtw_alloc_stainfo()
[all …]
Drtw_recv.c1322 precv_frame->u.hdr.preorder_ctrl = &psta->recvreorder_ctrl[pattrib->priority]; in validate_recv_data_frame()
1638 static int check_indicate_seq(struct recv_reorder_ctrl *preorder_ctrl, u16 seq_num) in check_indicate_seq() argument
1640 struct adapter *padapter = preorder_ctrl->padapter; in check_indicate_seq()
1643 u8 wsize = preorder_ctrl->wsize_b; in check_indicate_seq()
1644 u16 wend = (preorder_ctrl->indicate_seq + wsize - 1) & 0xFFF;/* 4096; */ in check_indicate_seq()
1647 if (preorder_ctrl->indicate_seq == 0xFFFF) in check_indicate_seq()
1648 preorder_ctrl->indicate_seq = seq_num; in check_indicate_seq()
1651 if (SN_LESS(seq_num, preorder_ctrl->indicate_seq)) in check_indicate_seq()
1659 if (SN_EQUAL(seq_num, preorder_ctrl->indicate_seq)) { in check_indicate_seq()
1660 preorder_ctrl->indicate_seq = (preorder_ctrl->indicate_seq + 1) & 0xFFF; in check_indicate_seq()
[all …]
Drtw_mlme.c949 struct recv_reorder_ctrl *preorder_ctrl; in rtw_joinbss_update_stainfo() local
1005 preorder_ctrl = &psta->recvreorder_ctrl[i]; in rtw_joinbss_update_stainfo()
1006 preorder_ctrl->enable = false; in rtw_joinbss_update_stainfo()
1007 preorder_ctrl->indicate_seq = 0xffff; in rtw_joinbss_update_stainfo()
1008 preorder_ctrl->wend_b = 0xffff; in rtw_joinbss_update_stainfo()
1009 preorder_ctrl->wsize_b = 64;/* max_ampdu_sz;ex. 32(kbytes) -> wsize_b =32 */ in rtw_joinbss_update_stainfo()
1015 preorder_ctrl = &bmc_sta->recvreorder_ctrl[i]; in rtw_joinbss_update_stainfo()
1016 preorder_ctrl->enable = false; in rtw_joinbss_update_stainfo()
1017 preorder_ctrl->indicate_seq = 0xffff; in rtw_joinbss_update_stainfo()
1018 preorder_ctrl->wend_b = 0xffff; in rtw_joinbss_update_stainfo()
[all …]
Drtw_wlan_util.c1628 struct recv_reorder_ctrl *preorder_ctrl; in process_addba_req() local
1640 preorder_ctrl = &psta->recvreorder_ctrl[tid]; in process_addba_req()
1642 preorder_ctrl->indicate_seq = 0xffff; in process_addba_req()
1644 preorder_ctrl->enable = pmlmeinfo->accept_addba_req; in process_addba_req()
Drtw_mlme_ext.c1628 struct recv_reorder_ctrl *preorder_ctrl; in OnAction_back() local
1702 preorder_ctrl = &psta->recvreorder_ctrl[tid]; in OnAction_back()
1703 preorder_ctrl->enable = false; in OnAction_back()
1704 preorder_ctrl->indicate_seq = 0xffff; in OnAction_back()
/linux-6.14.4/drivers/staging/rtl8723bs/include/
Drecv_osdep.h37 void rtw_init_recv_timer(struct recv_reorder_ctrl *preorder_ctrl);
Drtw_recv.h306 struct recv_reorder_ctrl *preorder_ctrl; member
/linux-6.14.4/drivers/staging/rtl8723bs/os_dep/
Drecv_linux.c223 void rtw_init_recv_timer(struct recv_reorder_ctrl *preorder_ctrl) in rtw_init_recv_timer() argument
225 timer_setup(&preorder_ctrl->reordering_ctrl_timer, in rtw_init_recv_timer()