Home
last modified time | relevance | path

Searched refs:recv_frame (Results 1 – 25 of 34) sorted by relevance

12

/linux-5.19.10/drivers/staging/rtl8712/
Drtl871x_recv.h126 union recv_frame *r8712_alloc_recvframe(struct __queue *pfree_recv_queue);
127 void r8712_free_recvframe(union recv_frame *precvframe,
131 int r8712_wlanhdr_to_ethhdr(union recv_frame *precvframe);
134 static inline u8 *get_rxmem(union recv_frame *precvframe) in get_rxmem()
142 static inline u8 *recvframe_pull(union recv_frame *precvframe, sint sz) in recvframe_pull()
158 static inline u8 *recvframe_put(union recv_frame *precvframe, sint sz) in recvframe_put()
175 static inline u8 *recvframe_pull_tail(union recv_frame *precvframe, sint sz) in recvframe_pull_tail()
197 union recv_frame *precvframe);
198 union recv_frame *r8712_decryptor(struct _adapter *adapter,
199 union recv_frame *precv_frame);
[all …]
Drtl871x_recv.c51 union recv_frame *precvframe; in _r8712_init_recv_priv()
60 sizeof(union recv_frame) + RXFRAME_ALIGN_SZ, in _r8712_init_recv_priv()
69 precvframe = (union recv_frame *)precvpriv->precv_frame_buf; in _r8712_init_recv_priv()
88 union recv_frame *r8712_alloc_recvframe(struct __queue *pfree_recv_queue) in r8712_alloc_recvframe()
91 union recv_frame *precvframe; in r8712_alloc_recvframe()
97 union recv_frame, u.hdr.list); in r8712_alloc_recvframe()
119 union recv_frame *precvframe; in r8712_free_recvframe_queue()
126 precvframe = container_of(plist, union recv_frame, u.list); in r8712_free_recvframe_queue()
134 union recv_frame *precvframe) in r8712_recvframe_chkmic()
194 union recv_frame *r8712_decryptor(struct _adapter *padapter, in r8712_decryptor()
[all …]
Drtl8712_recv.c114 void r8712_free_recvframe(union recv_frame *precvframe, in r8712_free_recvframe()
171 static union recv_frame *recvframe_defrag(struct _adapter *adapter, in recvframe_defrag()
178 union recv_frame *prframe, *pnextrframe; in recvframe_defrag()
184 prframe = container_of(plist, union recv_frame, u.list); in recvframe_defrag()
200 pnextrframe = container_of(plist, union recv_frame, u.list); in recvframe_defrag()
232 union recv_frame *r8712_recvframe_chk_defrag(struct _adapter *padapter, in r8712_recvframe_chk_defrag()
233 union recv_frame *precv_frame) in r8712_recvframe_chk_defrag()
242 union recv_frame *prtnframe = NULL; in r8712_recvframe_chk_defrag()
313 static void amsdu_to_msdu(struct _adapter *padapter, union recv_frame *prframe) in amsdu_to_msdu()
465 union recv_frame *prframe) in enqueue_reorder_recvframe()
[all …]
Drecv_osdep.h24 void r8712_recv_entry(union recv_frame *precv_frame);
26 union recv_frame *precv_frame);
32 union recv_frame *precvframe);
Drecv_linux.c33 union recv_frame *precvframe) in r8712_os_recv_resource_alloc()
93 union recv_frame *recvframe) in r8712_recv_indicatepkt()
Drtl871x_security.c216 struct rx_pkt_attrib *prxattrib = &(((union recv_frame *) in r8712_wep_decrypt()
220 pframe = (unsigned char *)((union recv_frame *)precvframe)-> in r8712_wep_decrypt()
232 length = ((union recv_frame *)precvframe)-> in r8712_wep_decrypt()
650 struct rx_pkt_attrib *prxattrib = &((union recv_frame *) in r8712_tkip_decrypt()
654 pframe = (unsigned char *)((union recv_frame *) in r8712_tkip_decrypt()
664 length = ((union recv_frame *)precvframe)-> in r8712_tkip_decrypt()
1349 struct rx_pkt_attrib *prxattrib = &((union recv_frame *) in r8712_aes_decrypt()
1353 pframe = (unsigned char *)((union recv_frame *)precvframe)-> in r8712_aes_decrypt()
1371 length = ((union recv_frame *)precvframe)-> in r8712_aes_decrypt()
Drtl8712_recv.h132 union recv_frame { union
/linux-5.19.10/drivers/staging/r8188eu/core/
Drtw_recv.c44 struct recv_frame *precvframe; in _rtw_init_recv_priv()
58 …precvpriv->pallocated_frame_buf = vzalloc(NR_RECVFRAME * sizeof(struct recv_frame) + RXFRAME_ALIGN… in _rtw_init_recv_priv()
67 precvframe = (struct recv_frame *)precvpriv->precv_frame_buf; in _rtw_init_recv_priv()
106 struct recv_frame *_rtw_alloc_recvframe(struct __queue *pfree_recv_queue) in _rtw_alloc_recvframe()
108 struct recv_frame *hdr; in _rtw_alloc_recvframe()
120 hdr = container_of(plist, struct recv_frame, list); in _rtw_alloc_recvframe()
131 return (struct recv_frame *)hdr; in _rtw_alloc_recvframe()
134 struct recv_frame *rtw_alloc_recvframe(struct __queue *pfree_recv_queue) in rtw_alloc_recvframe()
136 struct recv_frame *precvframe; in rtw_alloc_recvframe()
147 int rtw_free_recvframe(struct recv_frame *precvframe, struct __queue *pfree_recv_queue) in rtw_free_recvframe()
[all …]
/linux-5.19.10/drivers/staging/r8188eu/include/
Drtw_recv.h228 struct recv_frame { struct
246 struct recv_frame *_rtw_alloc_recvframe(struct __queue *pfree_recv_queue); argument
247 struct recv_frame *rtw_alloc_recvframe(struct __queue *pfree_recv_queue);
248 int rtw_free_recvframe(struct recv_frame *precvframe,
250 int _rtw_enqueue_recvframe(struct recv_frame *precvframe, struct __queue *queue);
251 int rtw_enqueue_recvframe(struct recv_frame *precvframe, struct __queue *queue);
258 static inline u8 *get_rxmem(struct recv_frame *precvframe) in get_rxmem()
266 static inline u8 *recvframe_pull(struct recv_frame *precvframe, int sz) in recvframe_pull()
284 static inline u8 *recvframe_put(struct recv_frame *precvframe, int sz) in recvframe_put()
303 static inline u8 *recvframe_pull_tail(struct recv_frame *precvframe, int sz) in recvframe_pull_tail()
[all …]
Drtw_mlme_ext.h187 typedef unsigned int (*mlme_handler)(struct adapter *adapt, struct recv_frame *frame);
428 u8 collect_bss_info(struct adapter *padapter, struct recv_frame *precv_frame,
479 void report_survey_event(struct adapter *padapter, struct recv_frame *precv_frame);
540 struct recv_frame *precv_frame);
542 struct recv_frame *precv_frame);
544 struct recv_frame *precv_frame);
546 struct recv_frame *precv_frame);
548 struct recv_frame *precv_frame);
550 struct recv_frame *precv_frame);
552 struct recv_frame *precv_frame);
[all …]
Drecv_osdep.h13 s32 rtw_recv_entry(struct recv_frame *precv_frame);
14 int rtw_recv_indicatepkt(struct adapter *adapter, struct recv_frame *recv_frame);
Drtl8188e_recv.h39 void update_recvframe_phyinfo_88e(struct recv_frame *fra, struct phy_stat *phy);
40 void update_recvframe_attrib_88e(struct recv_frame *fra, struct recv_stat *stat);
Drtw_security.h227 u32 rtw_aes_decrypt(struct adapter *padapter, struct recv_frame *precvframe);
228 u32 rtw_tkip_decrypt(struct adapter *padapter, struct recv_frame *precvframe);
229 void rtw_wep_decrypt(struct adapter *padapter, struct recv_frame *precvframe);
/linux-5.19.10/drivers/staging/rtl8723bs/include/
Drtw_recv.h343 union recv_frame { union
362 extern union recv_frame *_rtw_alloc_recvframe(struct __queue *pfree_recv_queue); /* get a free rec…
363 extern union recv_frame *rtw_alloc_recvframe(struct __queue *pfree_recv_queue); /* get a free recv…
364 extern int rtw_free_recvframe(union recv_frame *precvframe, struct __queue *pfree_recv_queue);
367 extern int _rtw_enqueue_recvframe(union recv_frame *precvframe, struct __queue *queue);
368 extern int rtw_enqueue_recvframe(union recv_frame *precvframe, struct __queue *queue);
379 static inline u8 *get_rxmem(union recv_frame *precvframe) in get_rxmem()
388 static inline u8 *recvframe_pull(union recv_frame *precvframe, signed int sz) in recvframe_pull()
413 static inline u8 *recvframe_put(union recv_frame *precvframe, signed int sz) in recvframe_put()
442 static inline u8 *recvframe_pull_tail(union recv_frame *precvframe, signed int sz) in recvframe_pull_tail()
[all …]
Drecv_osdep.h15 extern s32 rtw_recv_entry(union recv_frame *precv_frame);
16 extern int rtw_recv_indicatepkt(struct adapter *adapter, union recv_frame *precv_frame);
25 void rtw_os_recv_resource_alloc(struct adapter *padapter, union recv_frame *precvframe);
29 void rtw_os_free_recvframe(union recv_frame *precvframe);
34 struct sk_buff *rtw_os_alloc_msdu_pkt(union recv_frame *prframe, u16 nSubframe_Length, u8 *pdata);
Drtw_mlme_ext.h249 unsigned int (*func)(struct adapter *padapter, union recv_frame *precv_frame);
255 unsigned int (*func)(struct adapter *padapter, union recv_frame *precv_frame);
520 u8 collect_bss_info(struct adapter *padapter, union recv_frame *precv_frame, struct wlan_bssid_ex *…
571 void report_survey_event(struct adapter *padapter, union recv_frame *precv_frame);
609 unsigned int OnAssocReq(struct adapter *padapter, union recv_frame *precv_frame);
610 unsigned int OnAssocRsp(struct adapter *padapter, union recv_frame *precv_frame);
611 unsigned int OnProbeReq(struct adapter *padapter, union recv_frame *precv_frame);
612 unsigned int OnProbeRsp(struct adapter *padapter, union recv_frame *precv_frame);
613 unsigned int DoReserved(struct adapter *padapter, union recv_frame *precv_frame);
614 unsigned int OnBeacon(struct adapter *padapter, union recv_frame *precv_frame);
[all …]
Drtl8192c_recv.h38 void rtl8192c_translate_rx_signal_stuff(union recv_frame *precvframe, struct phy_stat *pphy_status);
39 void rtl8192c_query_rx_desc_status(union recv_frame *precvframe, struct recv_stat *pdesc);
Drtl8723b_recv.h87 void rtl8723b_query_rx_phy_status(union recv_frame *prframe, struct phy_stat *pphy_stat);
/linux-5.19.10/drivers/staging/rtl8723bs/core/
Drtw_recv.c35 union recv_frame *precvframe; in _rtw_init_recv_priv()
51 …precvpriv->pallocated_frame_buf = vzalloc(NR_RECVFRAME * sizeof(union recv_frame) + RXFRAME_ALIGN_… in _rtw_init_recv_priv()
62 precvframe = (union recv_frame *) precvpriv->precv_frame_buf; in _rtw_init_recv_priv()
105 union recv_frame *_rtw_alloc_recvframe(struct __queue *pfree_recv_queue) in _rtw_alloc_recvframe()
108 union recv_frame *precvframe; in _rtw_alloc_recvframe()
120 precvframe = (union recv_frame *)plist; in _rtw_alloc_recvframe()
133 union recv_frame *rtw_alloc_recvframe(struct __queue *pfree_recv_queue) in rtw_alloc_recvframe()
135 union recv_frame *precvframe; in rtw_alloc_recvframe()
146 int rtw_free_recvframe(union recv_frame *precvframe, struct __queue *pfree_recv_queue) in rtw_free_recvframe()
173 signed int _rtw_enqueue_recvframe(union recv_frame *precvframe, struct __queue *queue) in _rtw_enqueue_recvframe()
[all …]
Drtw_security.c102 struct rx_pkt_attrib *prxattrib = &(((union recv_frame *)precvframe)->u.hdr.attrib); in rtw_wep_decrypt()
106 pframe = (unsigned char *)((union recv_frame *)precvframe)->u.hdr.rx_data; in rtw_wep_decrypt()
117 length = ((union recv_frame *)precvframe)->u.hdr.len-prxattrib->hdrlen-prxattrib->iv_len; in rtw_wep_decrypt()
546 struct rx_pkt_attrib *prxattrib = &((union recv_frame *)precvframe)->u.hdr.attrib; in rtw_tkip_decrypt()
551 pframe = (unsigned char *)((union recv_frame *)precvframe)->u.hdr.rx_data; in rtw_tkip_decrypt()
606 length = ((union recv_frame *)precvframe)->u.hdr.len-prxattrib->hdrlen-prxattrib->iv_len; in rtw_tkip_decrypt()
1299 struct rx_pkt_attrib *prxattrib = &((union recv_frame *)precvframe)->u.hdr.attrib; in rtw_aes_decrypt()
1303 pframe = (unsigned char *)((union recv_frame *)precvframe)->u.hdr.rx_data; in rtw_aes_decrypt()
1360 length = ((union recv_frame *)precvframe)->u.hdr.len-prxattrib->hdrlen-prxattrib->iv_len; in rtw_aes_decrypt()
1374 struct rx_pkt_attrib *pattrib = &((union recv_frame *)precvframe)->u.hdr.attrib; in rtw_BIP_verify()
[all …]
Drtw_mlme_ext.c422 static void _mgt_dispatcher(struct adapter *padapter, struct mlme_handler *ptable, union recv_frame in _mgt_dispatcher()
437 void mgt_dispatcher(struct adapter *padapter, union recv_frame *precv_frame) in mgt_dispatcher()
510 unsigned int OnProbeReq(struct adapter *padapter, union recv_frame *precv_frame) in OnProbeReq()
555 unsigned int OnProbeRsp(struct adapter *padapter, union recv_frame *precv_frame) in OnProbeRsp()
568 unsigned int OnBeacon(struct adapter *padapter, union recv_frame *precv_frame) in OnBeacon()
679 unsigned int OnAuth(struct adapter *padapter, union recv_frame *precv_frame) in OnAuth()
861 unsigned int OnAuthClient(struct adapter *padapter, union recv_frame *precv_frame) in OnAuthClient()
938 unsigned int OnAssocReq(struct adapter *padapter, union recv_frame *precv_frame) in OnAssocReq()
1373 unsigned int OnAssocRsp(struct adapter *padapter, union recv_frame *precv_frame) in OnAssocRsp()
1463 unsigned int OnDeAuth(struct adapter *padapter, union recv_frame *precv_frame) in OnDeAuth()
[all …]
/linux-5.19.10/drivers/staging/r8188eu/hal/
Drtl8188e_rxdesc.c10 static void process_rssi(struct adapter *padapter, struct recv_frame *prframe) in process_rssi()
26 static void process_link_qual(struct adapter *padapter, struct recv_frame *prframe) in process_link_qual()
50 struct recv_frame *precvframe = (struct recv_frame *)prframe; in rtl8188e_process_phy_info()
58 void update_recvframe_attrib_88e(struct recv_frame *precvframe, struct recv_stat *prxstat) in update_recvframe_attrib_88e()
109 void update_recvframe_phyinfo_88e(struct recv_frame *precvframe, struct phy_stat *pphy_status) in update_recvframe_phyinfo_88e()
/linux-5.19.10/drivers/staging/rtl8723bs/os_dep/
Drecv_linux.c13 void rtw_os_free_recvframe(union recv_frame *precvframe) in rtw_os_free_recvframe()
23 void rtw_os_recv_resource_alloc(struct adapter *padapter, union recv_frame *precvframe) in rtw_os_recv_resource_alloc()
32 union recv_frame *precvframe; in rtw_os_recv_resource_free()
34 precvframe = (union recv_frame *) precvpriv->precv_frame_buf; in rtw_os_recv_resource_free()
54 struct sk_buff *rtw_os_alloc_msdu_pkt(union recv_frame *prframe, u16 nSubframe_Length, u8 *pdata) in rtw_os_alloc_msdu_pkt()
187 int rtw_recv_indicatepkt(struct adapter *padapter, union recv_frame *precv_frame) in rtw_recv_indicatepkt()
/linux-5.19.10/drivers/staging/rtl8723bs/hal/
Drtl8723b_rxdesc.c10 static void process_rssi(struct adapter *padapter, union recv_frame *prframe) in process_rssi()
30 static void process_link_qual(struct adapter *padapter, union recv_frame *prframe) in process_link_qual()
55 union recv_frame *precvframe = prframe; in rtl8723b_process_phy_info()
Drtl8723bs_recv.c21 union recv_frame *precvframe, in update_recvframe_attrib()
75 static void update_recvframe_phyinfo(union recv_frame *precvframe, in update_recvframe_phyinfo()
175 static inline union recv_frame *try_alloc_recvframe(struct recv_priv *precvpriv, in try_alloc_recvframe()
178 union recv_frame *precvframe; in try_alloc_recvframe()
196 union recv_frame *precvframe) in rx_crc_err()
209 union recv_frame *precvframe) in pkt_exceeds_tail()
226 union recv_frame *precvframe; in rtl8723bs_recv_tasklet()

12