Home
last modified time | relevance | path

Searched refs:phead (Results 1 – 25 of 28) sorted by relevance

12

/linux/drivers/firmware/arm_scmi/
A Dbus.c75 if (!phead) { in scmi_protocol_device_request()
81 phead = head; in scmi_protocol_device_request()
110 if (!phead) { in scmi_protocol_device_request()
111 phead = kzalloc(sizeof(*phead), GFP_KERNEL); in scmi_protocol_device_request()
112 if (!phead) { in scmi_protocol_device_request()
117 INIT_LIST_HEAD(phead); in scmi_protocol_device_request()
125 kfree(phead); in scmi_protocol_device_request()
167 struct list_head *phead; in scmi_protocol_device_unrequest() local
174 if (phead) { in scmi_protocol_device_unrequest()
194 kfree(phead); in scmi_protocol_device_unrequest()
[all …]
/linux/drivers/staging/rtl8723bs/core/
A Drtw_sta_mgt.c122 struct list_head *plist, *phead; in kfree_all_stainfo() local
127 plist = get_next(phead); in kfree_all_stainfo()
129 while (phead != plist) in kfree_all_stainfo()
143 struct list_head *phead, *plist; in _rtw_free_sta_priv() local
153 list_for_each(plist, phead) { in _rtw_free_sta_priv()
364 plist = get_next(phead); in rtw_free_stainfo()
366 while (!list_empty(phead)) { in rtw_free_stainfo()
463 struct list_head *plist, *phead; in rtw_get_stainfo() local
482 list_for_each(plist, phead) { in rtw_get_stainfo()
526 struct list_head *plist, *phead; in rtw_access_ctrl() local
[all …]
A Drtw_recv.c117 plist = get_next(phead); in _rtw_alloc_recvframe()
220 plist = get_next(phead); in rtw_free_recvframe_queue()
222 while (phead != plist) { in rtw_free_recvframe_queue()
283 plist = get_next(phead); in rtw_dequeue_recvbuf()
1030 plist = get_next(phead); in recvframe_defrag()
1050 while (phead != plist) { in recvframe_defrag()
1102 struct list_head *phead; in recvframe_chk_defrag() local
1687 plist = get_next(phead); in enqueue_reorder_recvframe()
1689 while (phead != plist) { in enqueue_reorder_recvframe()
1744 plist = get_next(phead); in recv_indicatepkts_in_order()
[all …]
A Drtw_xmit.c137 pxmitbuf->phead = pxmitbuf->pbuf; in _rtw_init_xmit_priv()
217 pxmitbuf->phead = pxmitbuf->pbuf; in _rtw_init_xmit_priv()
1457 plist = get_next(phead); in rtw_alloc_xmitbuf_ext()
1516 plist = get_next(phead); in rtw_alloc_xmitbuf()
1615 plist = get_next(phead); in rtw_alloc_xmitframe()
1640 phead = get_list_head(queue); in rtw_alloc_xmitframe_ext()
1641 plist = get_next(phead); in rtw_alloc_xmitframe_ext()
2416 phead = get_list_head(pqueue); in dequeue_pending_xmitbuf()
2417 plist = get_next(phead); in dequeue_pending_xmitbuf()
2442 plist = phead; in dequeue_pending_xmitbuf_under_survey()
[all …]
A Drtw_ap.c185 phead = &pstapriv->auth_list; in expire_timeout_chk()
210 phead = &pstapriv->asoc_list; in expire_timeout_chk()
1178 struct list_head *plist, *phead; in rtw_acl_add_sta() local
1192 list_for_each(plist, phead) { in rtw_acl_add_sta()
1684 struct list_head *phead, *plist; in associated_clients_update() local
1690 phead = &pstapriv->asoc_list; in associated_clients_update()
1692 list_for_each(plist, phead) { in associated_clients_update()
1942 phead = &pstapriv->asoc_list; in rtw_sta_flush()
2010 struct list_head *phead, *plist; in rtw_ap_restore_network() local
2040 phead = &pstapriv->asoc_list; in rtw_ap_restore_network()
[all …]
A Drtw_mlme.c203 list_for_each(plist, phead) { in _rtw_find_network()
210 if (plist == phead) in _rtw_find_network()
360 list_for_each(plist, phead) { in _rtw_find_same_network()
367 if (plist == phead) in _rtw_find_same_network()
382 list_for_each(plist, phead) { in rtw_get_oldest_wlan_network()
472 phead = get_list_head(queue); in rtw_update_scanned_network()
473 list_for_each(plist, phead) { in rtw_update_scanned_network()
788 plist = get_next(phead); in free_scanqueue()
790 while (plist != phead) { in free_scanqueue()
1666 struct list_head *phead; in rtw_select_roaming_candidate() local
[all …]
A Drtw_ioctl_set.c39 struct list_head *plist, *phead; in rtw_do_join() local
46 phead = get_list_head(queue); in rtw_do_join()
47 plist = get_next(phead); in rtw_do_join()
/linux/drivers/staging/rtl8712/
A Drtl871x_sta_mgt.c69 struct list_head *plist, *phead; in mfree_all_stainfo() local
72 phead = &pstapriv->free_sta_queue.queue; in mfree_all_stainfo()
73 plist = phead->next; in mfree_all_stainfo()
74 while (!end_of_queue_search(phead, plist)) in mfree_all_stainfo()
194 struct list_head *plist, *phead; in r8712_free_all_stainfo() local
204 phead = &(pstapriv->sta_hash[index]); in r8712_free_all_stainfo()
205 plist = phead->next; in r8712_free_all_stainfo()
221 struct list_head *plist, *phead; in r8712_get_stainfo() local
229 phead = &(pstapriv->sta_hash[index]); in r8712_get_stainfo()
230 plist = phead->next; in r8712_get_stainfo()
[all …]
A Drtl8712_recv.c109 precvbuf->phead = precvbuf->pbuf; in r8712_init_recvbuf()
171 struct list_head *plist, *phead; in recvframe_defrag() local
179 phead = &defrag_q->queue; in recvframe_defrag()
180 plist = phead->next; in recvframe_defrag()
238 struct list_head *phead; in r8712_recvframe_chk_defrag() local
270 phead = &pdefrag_q->queue; in r8712_recvframe_chk_defrag()
286 phead = &pdefrag_q->queue; in r8712_recvframe_chk_defrag()
471 plist = phead->next; in enqueue_reorder_recvframe()
501 plist = phead->next; in r8712_recv_indicatepkts_in_order()
504 if (list_empty(phead)) in r8712_recv_indicatepkts_in_order()
[all …]
A Drtl871x_mlme.c141 phead = &scanned_queue->queue; in r8712_find_network()
142 list_for_each(plist, phead) { in r8712_find_network()
147 if (plist == phead) in r8712_find_network()
162 phead = &scanned_queue->queue; in r8712_free_network_queue()
163 plist = phead->next; in r8712_free_network_queue()
263 phead = &scanned_queue->queue; in r8712_get_oldest_wlan_network()
264 plist = phead->next; in r8712_get_oldest_wlan_network()
342 phead = &queue->queue; in update_scanned_network()
343 plist = phead->next; in update_scanned_network()
1043 struct list_head *phead; in r8712_select_and_join_from_scan() local
[all …]
A Drtl871x_ioctl_set.c41 struct list_head *plist, *phead; in do_join() local
47 phead = &queue->queue; in do_join()
48 plist = phead->next; in do_join()
A Drtl871x_ioctl_linux.c993 struct list_head *phead; in r8711_wx_set_wap() local
1006 phead = &queue->queue; in r8711_wx_set_wap()
1007 pmlmepriv->pscanned = phead->next; in r8711_wx_set_wap()
1138 struct list_head *plist, *phead; in r8711_wx_get_scan() local
1152 phead = &queue->queue; in r8711_wx_get_scan()
1153 plist = phead->next; in r8711_wx_get_scan()
1193 struct list_head *phead; in r8711_wx_set_essid() local
1210 phead = &queue->queue; in r8711_wx_set_essid()
1891 struct list_head *plist, *phead; in r871x_get_ap_info() local
1913 phead = &queue->queue; in r871x_get_ap_info()
[all …]
A Drtl8712_recv.h98 u8 *phead; member
A Drtl871x_recv.c122 struct list_head *plist, *phead; in r8712_free_recvframe_queue() local
125 phead = &pframequeue->queue; in r8712_free_recvframe_queue()
126 plist = phead->next; in r8712_free_recvframe_queue()
127 while (!end_of_queue_search(phead, plist)) { in r8712_free_recvframe_queue()
A Drecv_linux.c53 precvbuf->phead = NULL; in r8712_os_recvbuf_resource_alloc()
A Dusb_ops_linux.c266 precvbuf->phead = precvbuf->pskb->head; in r8712_usb_read_port()
272 precvbuf->phead = precvbuf->pskb->head; in r8712_usb_read_port()
A Drtl871x_xmit.c853 struct list_head *plist, *phead; in r8712_free_xmitframe_queue() local
857 phead = &pframequeue->queue; in r8712_free_xmitframe_queue()
858 plist = phead->next; in r8712_free_xmitframe_queue()
859 while (!end_of_queue_search(phead, plist)) { in r8712_free_xmitframe_queue()
/linux/drivers/gpu/drm/nouveau/nvkm/engine/disp/
A Dhead.c43 nvkm_head_del(struct nvkm_head **phead) in nvkm_head_del() argument
45 struct nvkm_head *head = *phead; in nvkm_head_del()
49 kfree(*phead); in nvkm_head_del()
50 *phead = NULL; in nvkm_head_del()
/linux/arch/powerpc/kernel/
A Dnvram_64.c728 struct nvram_header phead; in nvram_write_header() local
730 memcpy(&phead, &part->header, NVRAM_HEADER_LEN); in nvram_write_header()
731 phead.length = cpu_to_be16(phead.length); in nvram_write_header()
987 struct nvram_header phead; in nvram_scan_partitions() local
1015 memcpy(&phead, header, NVRAM_HEADER_LEN); in nvram_scan_partitions()
1017 phead.length = be16_to_cpu(phead.length); in nvram_scan_partitions()
1020 c_sum = nvram_checksum(&phead); in nvram_scan_partitions()
1021 if (c_sum != phead.checksum) { in nvram_scan_partitions()
1024 phead.checksum, c_sum); in nvram_scan_partitions()
1028 if (!phead.length) { in nvram_scan_partitions()
[all …]
/linux/drivers/staging/rtl8723bs/hal/
A Drtl8723bs_xmit.c565 struct list_head *plist, *phead; in rtl8723bs_free_xmit_priv() local
571 phead = get_list_head(pqueue); in rtl8723bs_free_xmit_priv()
578 list_add_tail(&tmplist, phead); in rtl8723bs_free_xmit_priv()
579 list_del_init(phead); in rtl8723bs_free_xmit_priv()
583 phead = &tmplist; in rtl8723bs_free_xmit_priv()
584 while (list_empty(phead) == false) { in rtl8723bs_free_xmit_priv()
585 plist = get_next(phead); in rtl8723bs_free_xmit_priv()
/linux/fs/proc/
A Dproc_sysctl.c90 static int sysctl_follow_link(struct ctl_table_header **phead,
137 *phead = head; in find_entry()
357 *phead = head; in lookup_entry()
377 struct ctl_table_header **phead, struct ctl_table **pentry) in first_entry() argument
390 *phead = head; in first_entry()
396 struct ctl_table_header *head = *phead; in next_entry()
410 *phead = head; in next_entry()
1048 static int sysctl_follow_link(struct ctl_table_header **phead, in sysctl_follow_link() argument
1061 dir = xlate_dir(set, (*phead)->parent); in sysctl_follow_link()
1070 unuse_table(*phead); in sysctl_follow_link()
[all …]
/linux/drivers/staging/rtl8723bs/os_dep/
A Dxmit_linux.c126 struct list_head *phead, *plist; in rtw_mlcst2unicst() local
138 phead = &pstapriv->asoc_list; in rtw_mlcst2unicst()
140 list_for_each(plist, phead) { in rtw_mlcst2unicst()
A Dioctl_cfg80211.c1136 struct list_head *plist, *phead; in rtw_cfg80211_surveydone_event_callback() local
1143 phead = get_list_head(queue); in rtw_cfg80211_surveydone_event_callback()
1144 list_for_each(plist, phead) in rtw_cfg80211_surveydone_event_callback()
2345 struct list_head *phead, *plist, *tmp; in cfg80211_rtw_del_station() local
2372 phead = &pstapriv->asoc_list; in cfg80211_rtw_del_station()
2374 list_for_each_safe(plist, tmp, phead) { in cfg80211_rtw_del_station()
2409 struct list_head *phead, *plist; in rtw_sta_info_get_by_idx() local
2413 phead = &pstapriv->asoc_list; in rtw_sta_info_get_by_idx()
2414 plist = get_next(phead); in rtw_sta_info_get_by_idx()
2417 while (phead != plist) { in rtw_sta_info_get_by_idx()
/linux/drivers/infiniband/ulp/ipoib/
A Dipoib_ib.c596 void *phead; in ipoib_send() local
601 phead = skb->data; in ipoib_send()
618 phead = NULL; in ipoib_send()
678 address, dqpn, tx_req, phead, hlen); in ipoib_send()
/linux/drivers/staging/rtl8723bs/include/
A Drtw_recv.h273 u8 *phead; member

Completed in 61 milliseconds

12