| /OK3568_Linux_fs/kernel/net/rxrpc/ |
| H A D | output.c | 19 struct rxrpc_wire_header whdr; member 27 struct rxrpc_wire_header whdr; member 105 pkt->whdr.flags |= RXRPC_REQUEST_ACK; in rxrpc_fill_out_ack() 207 pkt->whdr.epoch = htonl(conn->proto.epoch); in rxrpc_send_ack_packet() 208 pkt->whdr.cid = htonl(call->cid); in rxrpc_send_ack_packet() 209 pkt->whdr.callNumber = htonl(call->call_id); in rxrpc_send_ack_packet() 210 pkt->whdr.seq = 0; in rxrpc_send_ack_packet() 211 pkt->whdr.type = RXRPC_PACKET_TYPE_ACK; in rxrpc_send_ack_packet() 212 pkt->whdr.flags = RXRPC_SLOW_START_OK | conn->out_clientflag; in rxrpc_send_ack_packet() 213 pkt->whdr.userStatus = 0; in rxrpc_send_ack_packet() [all …]
|
| H A D | local_event.c | 28 struct rxrpc_wire_header whdr; in rxrpc_send_version_request() local 47 whdr.epoch = htonl(sp->hdr.epoch); in rxrpc_send_version_request() 48 whdr.cid = htonl(sp->hdr.cid); in rxrpc_send_version_request() 49 whdr.callNumber = htonl(sp->hdr.callNumber); in rxrpc_send_version_request() 50 whdr.seq = 0; in rxrpc_send_version_request() 51 whdr.serial = 0; in rxrpc_send_version_request() 52 whdr.type = RXRPC_PACKET_TYPE_VERSION; in rxrpc_send_version_request() 53 whdr.flags = RXRPC_LAST_PACKET | (~hdr->flags & RXRPC_CLIENT_INITIATED); in rxrpc_send_version_request() 54 whdr.userStatus = 0; in rxrpc_send_version_request() 55 whdr.securityIndex = 0; in rxrpc_send_version_request() [all …]
|
| H A D | conn_event.c | 31 struct rxrpc_wire_header whdr; in rxrpc_conn_retransmit_call() member 62 iov[0].iov_len = sizeof(pkt.whdr); in rxrpc_conn_retransmit_call() 68 pkt.whdr.epoch = htonl(conn->proto.epoch); in rxrpc_conn_retransmit_call() 69 pkt.whdr.cid = htonl(conn->proto.cid | channel); in rxrpc_conn_retransmit_call() 70 pkt.whdr.callNumber = htonl(call_id); in rxrpc_conn_retransmit_call() 71 pkt.whdr.seq = 0; in rxrpc_conn_retransmit_call() 72 pkt.whdr.type = chan->last_type; in rxrpc_conn_retransmit_call() 73 pkt.whdr.flags = conn->out_clientflag; in rxrpc_conn_retransmit_call() 74 pkt.whdr.userStatus = 0; in rxrpc_conn_retransmit_call() 75 pkt.whdr.securityIndex = conn->security_ix; in rxrpc_conn_retransmit_call() [all …]
|
| H A D | rxkad.c | 644 struct rxrpc_wire_header whdr; in rxkad_issue_challenge() local 670 whdr.epoch = htonl(conn->proto.epoch); in rxkad_issue_challenge() 671 whdr.cid = htonl(conn->proto.cid); in rxkad_issue_challenge() 672 whdr.callNumber = 0; in rxkad_issue_challenge() 673 whdr.seq = 0; in rxkad_issue_challenge() 674 whdr.type = RXRPC_PACKET_TYPE_CHALLENGE; in rxkad_issue_challenge() 675 whdr.flags = conn->out_clientflag; in rxkad_issue_challenge() 676 whdr.userStatus = 0; in rxkad_issue_challenge() 677 whdr.securityIndex = conn->security_ix; in rxkad_issue_challenge() 678 whdr._rsvd = 0; in rxkad_issue_challenge() [all …]
|
| H A D | input.c | 1180 struct rxrpc_wire_header whdr; in rxrpc_extract_header() local 1183 if (skb_copy_bits(skb, 0, &whdr, sizeof(whdr)) < 0) { in rxrpc_extract_header() 1190 sp->hdr.epoch = ntohl(whdr.epoch); in rxrpc_extract_header() 1191 sp->hdr.cid = ntohl(whdr.cid); in rxrpc_extract_header() 1192 sp->hdr.callNumber = ntohl(whdr.callNumber); in rxrpc_extract_header() 1193 sp->hdr.seq = ntohl(whdr.seq); in rxrpc_extract_header() 1194 sp->hdr.serial = ntohl(whdr.serial); in rxrpc_extract_header() 1195 sp->hdr.flags = whdr.flags; in rxrpc_extract_header() 1196 sp->hdr.type = whdr.type; in rxrpc_extract_header() 1197 sp->hdr.userStatus = whdr.userStatus; in rxrpc_extract_header() [all …]
|
| /OK3568_Linux_fs/kernel/include/trace/events/ |
| H A D | rxrpc.h | 908 TP_PROTO(unsigned int call_id, struct rxrpc_wire_header *whdr, 911 TP_ARGS(call_id, whdr, where), 916 __field_struct(struct rxrpc_wire_header, whdr ) 921 memcpy(&__entry->whdr, whdr, sizeof(__entry->whdr)); 927 ntohl(__entry->whdr.epoch), 928 ntohl(__entry->whdr.cid), 929 ntohl(__entry->whdr.callNumber), 930 ntohs(__entry->whdr.serviceId), 931 ntohl(__entry->whdr.serial), 932 ntohl(__entry->whdr.seq), [all …]
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8188eu/core/mesh/ |
| H A D | rtw_mesh.c | 1810 u8 *whdr = rframe->u.hdr.rx_data; in rtw_mesh_on_auth() local 1813 if (rtw_access_ctrl(adapter, get_addr2_ptr(whdr)) == _FALSE) in rtw_mesh_on_auth() 1817 if (!rtw_mesh_plink_get(adapter, get_addr2_ptr(whdr))) { in rtw_mesh_on_auth() 1819 rtw_mesh_acnode_set_notify_etime(adapter, whdr); in rtw_mesh_on_auth() 1823 issue_probereq(adapter, &adapter->mlmepriv.cur_network.network.mesh_id, get_addr2_ptr(whdr)); in rtw_mesh_on_auth() 2505 struct rtw_ieee80211_hdr *whdr; in rtw_mesh_construct_peer_mesh_close() local 2522 whdr = (struct rtw_ieee80211_hdr *)frame; in rtw_mesh_construct_peer_mesh_close() 2523 _rtw_memcpy(whdr->addr1, adapter_mac_addr(adapter), ETH_ALEN); in rtw_mesh_construct_peer_mesh_close() 2524 _rtw_memcpy(whdr->addr2, plink->addr, ETH_ALEN); in rtw_mesh_construct_peer_mesh_close() 2525 _rtw_memcpy(whdr->addr3, adapter_mac_addr(adapter), ETH_ALEN); in rtw_mesh_construct_peer_mesh_close() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8189fs/core/mesh/ |
| H A D | rtw_mesh.c | 1831 u8 *whdr = rframe->u.hdr.rx_data; in rtw_mesh_on_auth() local 1834 if (rtw_access_ctrl(adapter, get_addr2_ptr(whdr)) == _FALSE) in rtw_mesh_on_auth() 1838 if (!rtw_mesh_plink_get(adapter, get_addr2_ptr(whdr))) { in rtw_mesh_on_auth() 1840 rtw_mesh_acnode_set_notify_etime(adapter, whdr); in rtw_mesh_on_auth() 1844 issue_probereq(adapter, &adapter->mlmepriv.cur_network.network.mesh_id, get_addr2_ptr(whdr)); in rtw_mesh_on_auth() 2526 struct rtw_ieee80211_hdr *whdr; in rtw_mesh_construct_peer_mesh_close() local 2543 whdr = (struct rtw_ieee80211_hdr *)frame; in rtw_mesh_construct_peer_mesh_close() 2544 _rtw_memcpy(whdr->addr1, adapter_mac_addr(adapter), ETH_ALEN); in rtw_mesh_construct_peer_mesh_close() 2545 _rtw_memcpy(whdr->addr2, plink->addr, ETH_ALEN); in rtw_mesh_construct_peer_mesh_close() 2546 _rtw_memcpy(whdr->addr3, adapter_mac_addr(adapter), ETH_ALEN); in rtw_mesh_construct_peer_mesh_close() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8188fu/core/mesh/ |
| H A D | rtw_mesh.c | 1810 u8 *whdr = rframe->u.hdr.rx_data; in rtw_mesh_on_auth() local 1813 if (rtw_access_ctrl(adapter, get_addr2_ptr(whdr)) == _FALSE) in rtw_mesh_on_auth() 1817 if (!rtw_mesh_plink_get(adapter, get_addr2_ptr(whdr))) { in rtw_mesh_on_auth() 1819 rtw_mesh_acnode_set_notify_etime(adapter, whdr); in rtw_mesh_on_auth() 1823 issue_probereq(adapter, &adapter->mlmepriv.cur_network.network.mesh_id, get_addr2_ptr(whdr)); in rtw_mesh_on_auth() 2505 struct rtw_ieee80211_hdr *whdr; in rtw_mesh_construct_peer_mesh_close() local 2522 whdr = (struct rtw_ieee80211_hdr *)frame; in rtw_mesh_construct_peer_mesh_close() 2523 _rtw_memcpy(whdr->addr1, adapter_mac_addr(adapter), ETH_ALEN); in rtw_mesh_construct_peer_mesh_close() 2524 _rtw_memcpy(whdr->addr2, plink->addr, ETH_ALEN); in rtw_mesh_construct_peer_mesh_close() 2525 _rtw_memcpy(whdr->addr3, adapter_mac_addr(adapter), ETH_ALEN); in rtw_mesh_construct_peer_mesh_close() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8822bs/core/mesh/ |
| H A D | rtw_mesh.c | 1810 u8 *whdr = rframe->u.hdr.rx_data; in rtw_mesh_on_auth() local 1813 if (rtw_access_ctrl(adapter, get_addr2_ptr(whdr)) == _FALSE) in rtw_mesh_on_auth() 1817 if (!rtw_mesh_plink_get(adapter, get_addr2_ptr(whdr))) { in rtw_mesh_on_auth() 1819 rtw_mesh_acnode_set_notify_etime(adapter, whdr); in rtw_mesh_on_auth() 1823 issue_probereq(adapter, &adapter->mlmepriv.cur_network.network.mesh_id, get_addr2_ptr(whdr)); in rtw_mesh_on_auth() 2505 struct rtw_ieee80211_hdr *whdr; in rtw_mesh_construct_peer_mesh_close() local 2522 whdr = (struct rtw_ieee80211_hdr *)frame; in rtw_mesh_construct_peer_mesh_close() 2523 _rtw_memcpy(whdr->addr1, adapter_mac_addr(adapter), ETH_ALEN); in rtw_mesh_construct_peer_mesh_close() 2524 _rtw_memcpy(whdr->addr2, plink->addr, ETH_ALEN); in rtw_mesh_construct_peer_mesh_close() 2525 _rtw_memcpy(whdr->addr3, adapter_mac_addr(adapter), ETH_ALEN); in rtw_mesh_construct_peer_mesh_close() [all …]
|
| /OK3568_Linux_fs/external/rkwifibt/drivers/rtl8852bs/core/mesh/ |
| H A D | rtw_mesh.c | 1913 u8 *whdr = rframe->u.hdr.rx_data; in rtw_mesh_on_auth() local 1916 if (rtw_access_ctrl(adapter, get_addr2_ptr(whdr)) == _FALSE) in rtw_mesh_on_auth() 1920 if (!rtw_mesh_plink_get(adapter, get_addr2_ptr(whdr))) { in rtw_mesh_on_auth() 1922 rtw_mesh_acnode_set_notify_etime(adapter, whdr); in rtw_mesh_on_auth() 1926 issue_probereq(adapter, &adapter->mlmepriv.cur_network.network.mesh_id, get_addr2_ptr(whdr)); in rtw_mesh_on_auth() 2783 struct rtw_ieee80211_hdr *whdr; in rtw_mesh_construct_peer_mesh_close() local 2800 whdr = (struct rtw_ieee80211_hdr *)frame; in rtw_mesh_construct_peer_mesh_close() 2801 _rtw_memcpy(whdr->addr1, adapter_mac_addr(adapter), ETH_ALEN); in rtw_mesh_construct_peer_mesh_close() 2802 _rtw_memcpy(whdr->addr2, plink->addr, ETH_ALEN); in rtw_mesh_construct_peer_mesh_close() 2803 _rtw_memcpy(whdr->addr3, adapter_mac_addr(adapter), ETH_ALEN); in rtw_mesh_construct_peer_mesh_close() [all …]
|
| /OK3568_Linux_fs/external/rkwifibt/drivers/rtl8723ds/core/mesh/ |
| H A D | rtw_mesh.c | 1917 u8 *whdr = rframe->u.hdr.rx_data; in rtw_mesh_on_auth() local 1920 if (rtw_access_ctrl(adapter, get_addr2_ptr(whdr)) == _FALSE) in rtw_mesh_on_auth() 1924 if (!rtw_mesh_plink_get(adapter, get_addr2_ptr(whdr))) { in rtw_mesh_on_auth() 1926 rtw_mesh_acnode_set_notify_etime(adapter, whdr); in rtw_mesh_on_auth() 1930 issue_probereq(adapter, &adapter->mlmepriv.cur_network.network.mesh_id, get_addr2_ptr(whdr)); in rtw_mesh_on_auth() 2795 struct rtw_ieee80211_hdr *whdr; in rtw_mesh_construct_peer_mesh_close() local 2812 whdr = (struct rtw_ieee80211_hdr *)frame; in rtw_mesh_construct_peer_mesh_close() 2813 _rtw_memcpy(whdr->addr1, adapter_mac_addr(adapter), ETH_ALEN); in rtw_mesh_construct_peer_mesh_close() 2814 _rtw_memcpy(whdr->addr2, plink->addr, ETH_ALEN); in rtw_mesh_construct_peer_mesh_close() 2815 _rtw_memcpy(whdr->addr3, adapter_mac_addr(adapter), ETH_ALEN); in rtw_mesh_construct_peer_mesh_close() [all …]
|
| /OK3568_Linux_fs/external/rkwifibt/drivers/rtl8821cs/core/mesh/ |
| H A D | rtw_mesh.c | 1917 u8 *whdr = rframe->u.hdr.rx_data; in rtw_mesh_on_auth() local 1920 if (rtw_access_ctrl(adapter, get_addr2_ptr(whdr)) == _FALSE) in rtw_mesh_on_auth() 1924 if (!rtw_mesh_plink_get(adapter, get_addr2_ptr(whdr))) { in rtw_mesh_on_auth() 1926 rtw_mesh_acnode_set_notify_etime(adapter, whdr); in rtw_mesh_on_auth() 1930 issue_probereq(adapter, &adapter->mlmepriv.cur_network.network.mesh_id, get_addr2_ptr(whdr)); in rtw_mesh_on_auth() 2795 struct rtw_ieee80211_hdr *whdr; in rtw_mesh_construct_peer_mesh_close() local 2812 whdr = (struct rtw_ieee80211_hdr *)frame; in rtw_mesh_construct_peer_mesh_close() 2813 _rtw_memcpy(whdr->addr1, adapter_mac_addr(adapter), ETH_ALEN); in rtw_mesh_construct_peer_mesh_close() 2814 _rtw_memcpy(whdr->addr2, plink->addr, ETH_ALEN); in rtw_mesh_construct_peer_mesh_close() 2815 _rtw_memcpy(whdr->addr3, adapter_mac_addr(adapter), ETH_ALEN); in rtw_mesh_construct_peer_mesh_close() [all …]
|
| /OK3568_Linux_fs/external/rkwifibt/drivers/rtl8822cs/core/mesh/ |
| H A D | rtw_mesh.c | 1917 u8 *whdr = rframe->u.hdr.rx_data; in rtw_mesh_on_auth() local 1920 if (rtw_access_ctrl(adapter, get_addr2_ptr(whdr)) == _FALSE) in rtw_mesh_on_auth() 1924 if (!rtw_mesh_plink_get(adapter, get_addr2_ptr(whdr))) { in rtw_mesh_on_auth() 1926 rtw_mesh_acnode_set_notify_etime(adapter, whdr); in rtw_mesh_on_auth() 1930 issue_probereq(adapter, &adapter->mlmepriv.cur_network.network.mesh_id, get_addr2_ptr(whdr)); in rtw_mesh_on_auth() 2795 struct rtw_ieee80211_hdr *whdr; in rtw_mesh_construct_peer_mesh_close() local 2812 whdr = (struct rtw_ieee80211_hdr *)frame; in rtw_mesh_construct_peer_mesh_close() 2813 _rtw_memcpy(whdr->addr1, adapter_mac_addr(adapter), ETH_ALEN); in rtw_mesh_construct_peer_mesh_close() 2814 _rtw_memcpy(whdr->addr2, plink->addr, ETH_ALEN); in rtw_mesh_construct_peer_mesh_close() 2815 _rtw_memcpy(whdr->addr3, adapter_mac_addr(adapter), ETH_ALEN); in rtw_mesh_construct_peer_mesh_close() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8723cs/core/mesh/ |
| H A D | rtw_mesh.c | 1917 u8 *whdr = rframe->u.hdr.rx_data; in rtw_mesh_on_auth() local 1920 if (rtw_access_ctrl(adapter, get_addr2_ptr(whdr)) == _FALSE) in rtw_mesh_on_auth() 1924 if (!rtw_mesh_plink_get(adapter, get_addr2_ptr(whdr))) { in rtw_mesh_on_auth() 1926 rtw_mesh_acnode_set_notify_etime(adapter, whdr); in rtw_mesh_on_auth() 1930 issue_probereq(adapter, &adapter->mlmepriv.cur_network.network.mesh_id, get_addr2_ptr(whdr)); in rtw_mesh_on_auth() 2795 struct rtw_ieee80211_hdr *whdr; in rtw_mesh_construct_peer_mesh_close() local 2812 whdr = (struct rtw_ieee80211_hdr *)frame; in rtw_mesh_construct_peer_mesh_close() 2813 _rtw_memcpy(whdr->addr1, adapter_mac_addr(adapter), ETH_ALEN); in rtw_mesh_construct_peer_mesh_close() 2814 _rtw_memcpy(whdr->addr2, plink->addr, ETH_ALEN); in rtw_mesh_construct_peer_mesh_close() 2815 _rtw_memcpy(whdr->addr3, adapter_mac_addr(adapter), ETH_ALEN); in rtw_mesh_construct_peer_mesh_close() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8821cs/core/mesh/ |
| H A D | rtw_mesh.c | 1918 u8 *whdr = rframe->u.hdr.rx_data; in rtw_mesh_on_auth() local 1921 if (rtw_access_ctrl(adapter, get_addr2_ptr(whdr)) == _FALSE) in rtw_mesh_on_auth() 1925 if (!rtw_mesh_plink_get(adapter, get_addr2_ptr(whdr))) { in rtw_mesh_on_auth() 1927 rtw_mesh_acnode_set_notify_etime(adapter, whdr); in rtw_mesh_on_auth() 1931 issue_probereq(adapter, &adapter->mlmepriv.cur_network.network.mesh_id, get_addr2_ptr(whdr)); in rtw_mesh_on_auth() 2796 struct rtw_ieee80211_hdr *whdr; in rtw_mesh_construct_peer_mesh_close() local 2813 whdr = (struct rtw_ieee80211_hdr *)frame; in rtw_mesh_construct_peer_mesh_close() 2814 _rtw_memcpy(whdr->addr1, adapter_mac_addr(adapter), ETH_ALEN); in rtw_mesh_construct_peer_mesh_close() 2815 _rtw_memcpy(whdr->addr2, plink->addr, ETH_ALEN); in rtw_mesh_construct_peer_mesh_close() 2816 _rtw_memcpy(whdr->addr3, adapter_mac_addr(adapter), ETH_ALEN); in rtw_mesh_construct_peer_mesh_close() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8723ds/core/mesh/ |
| H A D | rtw_mesh.c | 1918 u8 *whdr = rframe->u.hdr.rx_data; in rtw_mesh_on_auth() local 1921 if (rtw_access_ctrl(adapter, get_addr2_ptr(whdr)) == _FALSE) in rtw_mesh_on_auth() 1925 if (!rtw_mesh_plink_get(adapter, get_addr2_ptr(whdr))) { in rtw_mesh_on_auth() 1927 rtw_mesh_acnode_set_notify_etime(adapter, whdr); in rtw_mesh_on_auth() 1931 issue_probereq(adapter, &adapter->mlmepriv.cur_network.network.mesh_id, get_addr2_ptr(whdr)); in rtw_mesh_on_auth() 2796 struct rtw_ieee80211_hdr *whdr; in rtw_mesh_construct_peer_mesh_close() local 2813 whdr = (struct rtw_ieee80211_hdr *)frame; in rtw_mesh_construct_peer_mesh_close() 2814 _rtw_memcpy(whdr->addr1, adapter_mac_addr(adapter), ETH_ALEN); in rtw_mesh_construct_peer_mesh_close() 2815 _rtw_memcpy(whdr->addr2, plink->addr, ETH_ALEN); in rtw_mesh_construct_peer_mesh_close() 2816 _rtw_memcpy(whdr->addr3, adapter_mac_addr(adapter), ETH_ALEN); in rtw_mesh_construct_peer_mesh_close() [all …]
|
| /OK3568_Linux_fs/external/rkwifibt/drivers/rtl8189fs/core/mesh/ |
| H A D | rtw_mesh.c | 1917 u8 *whdr = rframe->u.hdr.rx_data; in rtw_mesh_on_auth() local 1920 if (rtw_access_ctrl(adapter, get_addr2_ptr(whdr)) == _FALSE) in rtw_mesh_on_auth() 1924 if (!rtw_mesh_plink_get(adapter, get_addr2_ptr(whdr))) { in rtw_mesh_on_auth() 1926 rtw_mesh_acnode_set_notify_etime(adapter, whdr); in rtw_mesh_on_auth() 1930 issue_probereq(adapter, &adapter->mlmepriv.cur_network.network.mesh_id, get_addr2_ptr(whdr)); in rtw_mesh_on_auth() 2795 struct rtw_ieee80211_hdr *whdr; in rtw_mesh_construct_peer_mesh_close() local 2812 whdr = (struct rtw_ieee80211_hdr *)frame; in rtw_mesh_construct_peer_mesh_close() 2813 _rtw_memcpy(whdr->addr1, adapter_mac_addr(adapter), ETH_ALEN); in rtw_mesh_construct_peer_mesh_close() 2814 _rtw_memcpy(whdr->addr2, plink->addr, ETH_ALEN); in rtw_mesh_construct_peer_mesh_close() 2815 _rtw_memcpy(whdr->addr3, adapter_mac_addr(adapter), ETH_ALEN); in rtw_mesh_construct_peer_mesh_close() [all …]
|
| /OK3568_Linux_fs/external/rkwifibt/drivers/rtl8188fu/core/mesh/ |
| H A D | rtw_mesh.c | 1917 u8 *whdr = rframe->u.hdr.rx_data; in rtw_mesh_on_auth() local 1920 if (rtw_access_ctrl(adapter, get_addr2_ptr(whdr)) == _FALSE) in rtw_mesh_on_auth() 1924 if (!rtw_mesh_plink_get(adapter, get_addr2_ptr(whdr))) { in rtw_mesh_on_auth() 1926 rtw_mesh_acnode_set_notify_etime(adapter, whdr); in rtw_mesh_on_auth() 1930 issue_probereq(adapter, &adapter->mlmepriv.cur_network.network.mesh_id, get_addr2_ptr(whdr)); in rtw_mesh_on_auth() 2795 struct rtw_ieee80211_hdr *whdr; in rtw_mesh_construct_peer_mesh_close() local 2812 whdr = (struct rtw_ieee80211_hdr *)frame; in rtw_mesh_construct_peer_mesh_close() 2813 _rtw_memcpy(whdr->addr1, adapter_mac_addr(adapter), ETH_ALEN); in rtw_mesh_construct_peer_mesh_close() 2814 _rtw_memcpy(whdr->addr2, plink->addr, ETH_ALEN); in rtw_mesh_construct_peer_mesh_close() 2815 _rtw_memcpy(whdr->addr3, adapter_mac_addr(adapter), ETH_ALEN); in rtw_mesh_construct_peer_mesh_close() [all …]
|
| /OK3568_Linux_fs/external/rkwifibt/drivers/rtl8852be/core/mesh/ |
| H A D | rtw_mesh.c | 1913 u8 *whdr = rframe->u.hdr.rx_data; in rtw_mesh_on_auth() local 1916 if (rtw_access_ctrl(adapter, get_addr2_ptr(whdr)) == _FALSE) in rtw_mesh_on_auth() 1920 if (!rtw_mesh_plink_get(adapter, get_addr2_ptr(whdr))) { in rtw_mesh_on_auth() 1922 rtw_mesh_acnode_set_notify_etime(adapter, whdr); in rtw_mesh_on_auth() 1926 issue_probereq(adapter, &adapter->mlmepriv.cur_network.network.mesh_id, get_addr2_ptr(whdr)); in rtw_mesh_on_auth() 2783 struct rtw_ieee80211_hdr *whdr; in rtw_mesh_construct_peer_mesh_close() local 2800 whdr = (struct rtw_ieee80211_hdr *)frame; in rtw_mesh_construct_peer_mesh_close() 2801 _rtw_memcpy(whdr->addr1, adapter_mac_addr(adapter), ETH_ALEN); in rtw_mesh_construct_peer_mesh_close() 2802 _rtw_memcpy(whdr->addr2, plink->addr, ETH_ALEN); in rtw_mesh_construct_peer_mesh_close() 2803 _rtw_memcpy(whdr->addr3, adapter_mac_addr(adapter), ETH_ALEN); in rtw_mesh_construct_peer_mesh_close() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/bluetooth/ |
| H A D | btmtksdio.c | 132 struct mtk_wmt_hdr whdr; member 225 if (wmt_evt->whdr.op != hdr->op) { in mtk_hci_wmt_sync() 227 wmt_evt->whdr.op, hdr->op); in mtk_hci_wmt_sync() 232 switch (wmt_evt->whdr.op) { in mtk_hci_wmt_sync() 234 if (wmt_evt->whdr.flag == 2) in mtk_hci_wmt_sync()
|
| H A D | btmtkuart.c | 91 struct mtk_wmt_hdr whdr; member 207 if (wmt_evt->whdr.op != hdr->op) { in mtk_hci_wmt_sync() 209 wmt_evt->whdr.op, hdr->op); in mtk_hci_wmt_sync() 214 switch (wmt_evt->whdr.op) { in mtk_hci_wmt_sync() 216 if (wmt_evt->whdr.flag == 2) in mtk_hci_wmt_sync()
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8723ds/core/ |
| H A D | rtw_recv.c | 1282 u8 *whdr = get_recvframe_data(rframe); in rtw_sta_rx_data_validate_hdr() local 1283 u8 is_ra_bmc = IS_MCAST(GetAddr1Ptr(whdr)) ? 1 : 0; in rtw_sta_rx_data_validate_hdr() 1287 _rtw_memcpy(rattrib->ra, GetAddr1Ptr(whdr), ETH_ALEN); in rtw_sta_rx_data_validate_hdr() 1288 _rtw_memcpy(rattrib->ta, get_addr2_ptr(whdr), ETH_ALEN); in rtw_sta_rx_data_validate_hdr() 1289 _rtw_memcpy(rattrib->dst, GetAddr1Ptr(whdr), ETH_ALEN); in rtw_sta_rx_data_validate_hdr() 1290 _rtw_memcpy(rattrib->src, get_addr2_ptr(whdr), ETH_ALEN); in rtw_sta_rx_data_validate_hdr() 1291 _rtw_memcpy(rattrib->bssid, GetAddr3Ptr(whdr), ETH_ALEN); in rtw_sta_rx_data_validate_hdr() 1303 *sta = rtw_get_stainfo(stapriv, get_addr2_ptr(whdr)); in rtw_sta_rx_data_validate_hdr() 1319 , FUNC_ADPT_ARG(adapter), MAC_ARG(get_addr2_ptr(whdr)), MLME_STATE(adapter)); in rtw_sta_rx_data_validate_hdr() 1320 issue_deauth(adapter, get_addr2_ptr(whdr), WLAN_REASON_CLASS3_FRAME_FROM_NONASSOC_STA); in rtw_sta_rx_data_validate_hdr() [all …]
|
| /OK3568_Linux_fs/external/rkwifibt/drivers/rtl8822cs/core/ |
| H A D | rtw_recv.c | 1303 u8 *whdr = get_recvframe_data(rframe); in rtw_sta_rx_data_validate_hdr() local 1304 u8 is_ra_bmc = IS_MCAST(GetAddr1Ptr(whdr)) ? 1 : 0; in rtw_sta_rx_data_validate_hdr() 1308 _rtw_memcpy(rattrib->ra, GetAddr1Ptr(whdr), ETH_ALEN); in rtw_sta_rx_data_validate_hdr() 1309 _rtw_memcpy(rattrib->ta, get_addr2_ptr(whdr), ETH_ALEN); in rtw_sta_rx_data_validate_hdr() 1310 _rtw_memcpy(rattrib->dst, GetAddr1Ptr(whdr), ETH_ALEN); in rtw_sta_rx_data_validate_hdr() 1311 _rtw_memcpy(rattrib->src, get_addr2_ptr(whdr), ETH_ALEN); in rtw_sta_rx_data_validate_hdr() 1312 _rtw_memcpy(rattrib->bssid, GetAddr3Ptr(whdr), ETH_ALEN); in rtw_sta_rx_data_validate_hdr() 1324 *sta = rtw_get_stainfo(stapriv, get_addr2_ptr(whdr)); in rtw_sta_rx_data_validate_hdr() 1340 , FUNC_ADPT_ARG(adapter), MAC_ARG(get_addr2_ptr(whdr)), MLME_STATE(adapter)); in rtw_sta_rx_data_validate_hdr() 1341 issue_deauth(adapter, get_addr2_ptr(whdr), WLAN_REASON_CLASS3_FRAME_FROM_NONASSOC_STA); in rtw_sta_rx_data_validate_hdr() [all …]
|
| /OK3568_Linux_fs/external/rkwifibt/drivers/rtl8821cs/core/ |
| H A D | rtw_recv.c | 1303 u8 *whdr = get_recvframe_data(rframe); in rtw_sta_rx_data_validate_hdr() local 1304 u8 is_ra_bmc = IS_MCAST(GetAddr1Ptr(whdr)) ? 1 : 0; in rtw_sta_rx_data_validate_hdr() 1308 _rtw_memcpy(rattrib->ra, GetAddr1Ptr(whdr), ETH_ALEN); in rtw_sta_rx_data_validate_hdr() 1309 _rtw_memcpy(rattrib->ta, get_addr2_ptr(whdr), ETH_ALEN); in rtw_sta_rx_data_validate_hdr() 1310 _rtw_memcpy(rattrib->dst, GetAddr1Ptr(whdr), ETH_ALEN); in rtw_sta_rx_data_validate_hdr() 1311 _rtw_memcpy(rattrib->src, get_addr2_ptr(whdr), ETH_ALEN); in rtw_sta_rx_data_validate_hdr() 1312 _rtw_memcpy(rattrib->bssid, GetAddr3Ptr(whdr), ETH_ALEN); in rtw_sta_rx_data_validate_hdr() 1324 *sta = rtw_get_stainfo(stapriv, get_addr2_ptr(whdr)); in rtw_sta_rx_data_validate_hdr() 1340 , FUNC_ADPT_ARG(adapter), MAC_ARG(get_addr2_ptr(whdr)), MLME_STATE(adapter)); in rtw_sta_rx_data_validate_hdr() 1341 issue_deauth(adapter, get_addr2_ptr(whdr), WLAN_REASON_CLASS3_FRAME_FROM_NONASSOC_STA); in rtw_sta_rx_data_validate_hdr() [all …]
|