/linux-5.19.10/drivers/net/wireless/ath/ath10k/ ! |
D | txrx.c | 156 struct ath10k_peer *ath10k_peer_find_by_id(struct ath10k *ar, int peer_id) in ath10k_peer_find_by_id() argument 160 if (peer_id >= BITS_PER_TYPE(peer->peer_ids)) in ath10k_peer_find_by_id() 166 if (test_bit(peer_id, peer->peer_ids)) in ath10k_peer_find_by_id() 210 if (ev->peer_id >= ATH10K_MAX_NUM_PEER_IDS) { in ath10k_peer_map_event() 213 ev->peer_id); in ath10k_peer_map_event() 231 ev->vdev_id, ev->addr, ev->peer_id); in ath10k_peer_map_event() 233 WARN_ON(ar->peer_map[ev->peer_id] && (ar->peer_map[ev->peer_id] != peer)); in ath10k_peer_map_event() 234 ar->peer_map[ev->peer_id] = peer; in ath10k_peer_map_event() 235 set_bit(ev->peer_id, peer->peer_ids); in ath10k_peer_map_event() 246 if (ev->peer_id >= ATH10K_MAX_NUM_PEER_IDS) { in ath10k_peer_unmap_event() [all …]
|
D | htt_rx.c | 1108 u16 peer_id; in ath10k_htt_rx_h_peer_channel() local 1127 peer_id = MS(__le32_to_cpu(rxd_mpdu_start->info0), in ath10k_htt_rx_h_peer_channel() 1130 peer = ath10k_peer_find_by_id(ar, peer_id); in ath10k_htt_rx_h_peer_channel() 1874 u16 peer_id, in ath10k_htt_rx_h_frag_pn_check() argument 1884 peer = ath10k_peer_find_by_id(ar, peer_id); in ath10k_htt_rx_h_frag_pn_check() 1923 u16 peer_id, in ath10k_htt_rx_h_mpdu() argument 2055 peer_id, in ath10k_htt_rx_h_mpdu() 2466 u16 peer_id; in ath10k_htt_rx_proc_rx_ind_hl() local 2474 peer_id = __le16_to_cpu(rx->hdr.peer_id); in ath10k_htt_rx_proc_rx_ind_hl() 2478 peer = ath10k_peer_find_by_id(ar, peer_id); in ath10k_htt_rx_proc_rx_ind_hl() [all …]
|
D | htt.h | 592 __le16 peer_id; member 791 __le16 peer_id; member 801 __le16 peer_id; member 809 __le16 peer_id; member 859 __le16 peer_id; member 1027 __le16 peer_id; member 1043 __le16 peer_id; member 1067 __le16 peer_id; member 1078 __le16 peer_id; member 1106 __le16 peer_id; member [all …]
|
D | txrx.h | 16 struct ath10k_peer *ath10k_peer_find_by_id(struct ath10k *ar, int peer_id);
|
D | debug.h | 224 u16 peer_id, u8 tid, 247 u16 peer_id, u8 tid, in ath10k_sta_update_rx_tid_stats_ampdu() argument
|
D | htt_tx.c | 47 u16 peer_id; in __ath10k_htt_tx_txq_recalc() local 61 peer_id = arsta->peer_id; in __ath10k_htt_tx_txq_recalc() 63 peer_id = arvif->peer_id; in __ath10k_htt_tx_txq_recalc() 67 bit = BIT(peer_id % 32); in __ath10k_htt_tx_txq_recalc() 68 idx = peer_id / 32; in __ath10k_htt_tx_txq_recalc() 73 if (unlikely(peer_id >= ar->htt.tx_q_state.num_peers) || in __ath10k_htt_tx_txq_recalc() 76 peer_id, tid); in __ath10k_htt_tx_txq_recalc() 80 ar->htt.tx_q_state.vaddr->count[tid][peer_id] = count; in __ath10k_htt_tx_txq_recalc() 85 peer_id, tid, count); in __ath10k_htt_tx_txq_recalc()
|
D | mac.h | 71 u16 peer_id,
|
D | core.h | 527 u16 peer_id; member 574 u16 peer_id; member 989 u16 peer_id; member
|
D | debugfs_sta.c | 48 void ath10k_sta_update_rx_tid_stats_ampdu(struct ath10k *ar, u16 peer_id, u8 tid, in ath10k_sta_update_rx_tid_stats_ampdu() argument 62 peer = ath10k_peer_find_by_id(ar, peer_id); in ath10k_sta_update_rx_tid_stats_ampdu()
|
/linux-5.19.10/drivers/net/wireless/ath/ath11k/ ! |
D | peer.c | 12 int peer_id) in ath11k_peer_find_list_by_id() argument 19 if (peer->peer_id != peer_id) in ath11k_peer_find_list_by_id() 64 int peer_id) in ath11k_peer_find_by_id() argument 73 peer = rhashtable_lookup_fast(ab->rhead_peer_id, &peer_id, in ath11k_peer_find_by_id() 96 void ath11k_peer_unmap_event(struct ath11k_base *ab, u16 peer_id) in ath11k_peer_unmap_event() argument 102 peer = ath11k_peer_find_list_by_id(ab, peer_id); in ath11k_peer_unmap_event() 105 peer_id); in ath11k_peer_unmap_event() 110 peer->vdev_id, peer->addr, peer_id); in ath11k_peer_unmap_event() 120 void ath11k_peer_map_event(struct ath11k_base *ab, u8 vdev_id, u16 peer_id, in ath11k_peer_map_event() argument 133 peer->peer_id = peer_id; in ath11k_peer_map_event() [all …]
|
D | peer.h | 15 int peer_id; member 40 void ath11k_peer_unmap_event(struct ath11k_base *ab, u16 peer_id); 41 void ath11k_peer_map_event(struct ath11k_base *ab, u8 vdev_id, u16 peer_id, 47 struct ath11k_peer *ath11k_peer_find_by_id(struct ath11k_base *ab, int peer_id);
|
D | dp_rx.c | 1234 u16 peer_id) in ath11k_get_ppdu_user_index() argument 1240 if (peer_id == ppdu_stats->user_stats[i].peer_id) in ath11k_get_ppdu_user_index() 1257 u16 peer_id; in ath11k_htt_tlv_ppdu_stats_parse() local 1278 peer_id = ((struct htt_ppdu_stats_user_rate *)ptr)->sw_peer_id; in ath11k_htt_tlv_ppdu_stats_parse() 1280 peer_id); in ath11k_htt_tlv_ppdu_stats_parse() 1284 user_stats->peer_id = peer_id; in ath11k_htt_tlv_ppdu_stats_parse() 1297 peer_id = ((struct htt_ppdu_stats_usr_cmpltn_cmn *)ptr)->sw_peer_id; in ath11k_htt_tlv_ppdu_stats_parse() 1299 peer_id); in ath11k_htt_tlv_ppdu_stats_parse() 1303 user_stats->peer_id = peer_id; in ath11k_htt_tlv_ppdu_stats_parse() 1317 peer_id = in ath11k_htt_tlv_ppdu_stats_parse() [all …]
|
D | hal_tx.h | 60 u16 peer_id; member
|
D | dp_tx.c | 434 peer = ath11k_peer_find_by_id(ab, ts->peer_id); in ath11k_dp_tx_update_txcompl() 437 "failed to find the peer by id %u\n", ts->peer_id); in ath11k_dp_tx_update_txcompl() 593 peer = ath11k_peer_find_by_id(ab, ts->peer_id); in ath11k_dp_tx_complete_msdu() 597 ts->peer_id); in ath11k_dp_tx_complete_msdu() 642 ts->peer_id = FIELD_GET(HAL_WBM_RELEASE_INFO3_PEER_ID, desc->info3); in ath11k_dp_tx_status_parse()
|
D | hw.c | 796 u16 peer_id = 0; in ath11k_hw_ipq8074_mpdu_info_get_peerid() local 800 peer_id = FIELD_GET(HAL_RX_MPDU_INFO_INFO0_PEERID, in ath11k_hw_ipq8074_mpdu_info_get_peerid() 803 return peer_id; in ath11k_hw_ipq8074_mpdu_info_get_peerid() 808 u16 peer_id = 0; in ath11k_hw_wcn6855_mpdu_info_get_peerid() local 812 peer_id = FIELD_GET(HAL_RX_MPDU_INFO_INFO0_PEERID_WCN6855, in ath11k_hw_wcn6855_mpdu_info_get_peerid() 814 return peer_id; in ath11k_hw_wcn6855_mpdu_info_get_peerid()
|
D | hal_rx.c | 1462 u16 peer_id; in ath11k_hal_rx_parse_mon_status_tlv() local 1464 peer_id = ab->hw_params.hw_ops->mpdu_info_get_peerid(tlv_data); in ath11k_hal_rx_parse_mon_status_tlv() 1465 if (peer_id) in ath11k_hal_rx_parse_mon_status_tlv() 1466 ppdu_info->peer_id = peer_id; in ath11k_hal_rx_parse_mon_status_tlv()
|
D | hal_rx.h | 135 u16 peer_id; member
|
/linux-5.19.10/net/tipc/ ! |
D | discover.c | 146 u8 *peer_id, in tipc_disc_addr_trial_msg() argument 180 sugg_addr = tipc_node_try_addr(net, peer_id, src); in tipc_disc_addr_trial_msg() 203 u8 peer_id[NODE_ID_LEN] = {0,}; in tipc_disc_rcv() local 218 memcpy(peer_id, msg_node_id(hdr), NODE_ID_LEN); in tipc_disc_rcv() 220 sprintf(peer_id, "%x", src); in tipc_disc_rcv() 234 src, sugg, peer_id, mtyp)) in tipc_disc_rcv() 247 tipc_node_check_dest(net, src, peer_id, b, caps, signature, pnet_hash, in tipc_disc_rcv()
|
D | link.h | 77 u32 peer, u8 *peer_id, u16 peer_caps, 83 bool tipc_link_bc_create(struct net *net, u32 ownnode, u32 peer, u8 *peer_id,
|
D | node.c | 137 u8 peer_id[16]; member 248 memcpy(id, &n->peer_id, TIPC_NODEID_LEN); in tipc_node_get_id() 363 if (!memcmp(id, n->peer_id, 16) && in tipc_node_find_by_id() 459 if (memcmp(n->peer_id, tn_peer->node_id, NODE_ID_LEN)) in tipc_node_assign_peer_net() 470 struct tipc_node *tipc_node_create(struct net *net, u32 addr, u8 *peer_id, in tipc_node_create() argument 483 tipc_node_find_by_id(net, peer_id); in tipc_node_create() 491 if (!tipc_link_bc_create(net, tipc_own_addr(net), addr, peer_id, U16_MAX, in tipc_node_create() 545 tipc_nodeid2string(n->peer_id_string, peer_id); in tipc_node_create() 556 memcpy(&n->peer_id, peer_id, 16); in tipc_node_create() 581 !tipc_link_bc_create(net, tipc_own_addr(net), addr, peer_id, U16_MAX, in tipc_node_create() [all …]
|
D | node.h | 83 struct tipc_node *tipc_node_create(struct net *net, u32 addr, u8 *peer_id,
|
D | link.c | 501 u32 peer, u8 *peer_id, u16 peer_caps, in tipc_link_create() argument 519 if (peer_id) { in tipc_link_create() 523 tipc_nodeid2string(peer_str, peer_id); in tipc_link_create() 577 bool tipc_link_bc_create(struct net *net, u32 ownnode, u32 peer, u8 *peer_id, in tipc_link_bc_create() argument 592 if (peer_id) { in tipc_link_bc_create() 595 tipc_nodeid2string(peer_str, peer_id); in tipc_link_bc_create()
|
/linux-5.19.10/drivers/misc/vmw_vmci/ ! |
D | vmci_queue_pair.c | 863 ev.payload.peer_id = context_id; in qp_notify_peer_local() 1453 u32 peer_id) in qp_notify_peer() argument 1459 peer_id == VMCI_INVALID_ID) in qp_notify_peer() 1470 ev.msg.hdr.dst = vmci_make_handle(peer_id, VMCI_EVENT_HANDLER); in qp_notify_peer() 1477 ev.payload.peer_id = my_id; in qp_notify_peer() 1483 attach ? "ATTACH" : "DETACH", peer_id); in qp_notify_peer() 2084 u32 peer_id; in vmci_qp_broker_detach() local 2116 peer_id = entry->attach_id; in vmci_qp_broker_detach() 2119 peer_id = entry->create_id; in vmci_qp_broker_detach() 2186 qp_notify_peer(false, handle, context_id, peer_id); in vmci_qp_broker_detach()
|
/linux-5.19.10/include/linux/ ! |
D | vmw_vmci_defs.h | 550 u32 peer_id; /* Context id of attaching/detaching VM. */ member 695 u32 peer_id; /* Context id of attaching/detaching VM. */ member
|
/linux-5.19.10/drivers/net/wireless/rsi/ ! |
D | rsi_mgmt.h | 384 u8 peer_id; member
|