Home
last modified time | relevance | path

Searched refs:plist (Results 1 – 23 of 23) sorted by relevance

/linux-3.4.99/arch/mips/fw/cfe/
Dcfe_api.c90 xiocb.plist.xiocb_cpuctl.cpu_number = cpu; in cfe_cpu_start()
91 xiocb.plist.xiocb_cpuctl.cpu_command = CFE_CPU_CMD_START; in cfe_cpu_start()
92 xiocb.plist.xiocb_cpuctl.gp_val = gp; in cfe_cpu_start()
93 xiocb.plist.xiocb_cpuctl.sp_val = sp; in cfe_cpu_start()
94 xiocb.plist.xiocb_cpuctl.a1_val = a1; in cfe_cpu_start()
95 xiocb.plist.xiocb_cpuctl.start_addr = (long) fn; in cfe_cpu_start()
111 xiocb.plist.xiocb_cpuctl.cpu_number = cpu; in cfe_cpu_stop()
112 xiocb.plist.xiocb_cpuctl.cpu_command = CFE_CPU_CMD_STOP; in cfe_cpu_stop()
128 xiocb.plist.xiocb_envbuf.enum_idx = idx; in cfe_enumenv()
129 xiocb.plist.xiocb_envbuf.name_ptr = XPTR_FROM_NATIVE(name); in cfe_enumenv()
[all …]
Dcfe_api_int.h145 } plist; member
/linux-3.4.99/include/acpi/
Dacoutput.h212 #define ACPI_INFO(plist) acpi_info plist argument
213 #define ACPI_WARNING(plist) acpi_warning plist argument
214 #define ACPI_EXCEPTION(plist) acpi_exception plist argument
215 #define ACPI_ERROR(plist) acpi_error plist argument
222 #define ACPI_INFO(plist) argument
223 #define ACPI_WARNING(plist) argument
224 #define ACPI_EXCEPTION(plist) argument
225 #define ACPI_ERROR(plist) argument
269 #define ACPI_DEBUG_PRINT(plist) acpi_debug_print plist argument
270 #define ACPI_DEBUG_PRINT_RAW(plist) acpi_debug_print_raw plist argument
/linux-3.4.99/drivers/staging/rtl8712/
Drtl871x_sta_mgt.c82 struct list_head *plist, *phead; in mfree_all_stainfo() local
87 plist = get_next(phead); in mfree_all_stainfo()
88 while ((end_of_queue_search(phead, plist)) == false) { in mfree_all_stainfo()
89 psta = LIST_CONTAINOR(plist, struct sta_info, list); in mfree_all_stainfo()
90 plist = get_next(plist); in mfree_all_stainfo()
219 struct list_head *plist, *phead; in r8712_free_all_stainfo() local
230 plist = get_next(phead); in r8712_free_all_stainfo()
231 while ((end_of_queue_search(phead, plist)) == false) { in r8712_free_all_stainfo()
232 psta = LIST_CONTAINOR(plist, in r8712_free_all_stainfo()
234 plist = get_next(plist); in r8712_free_all_stainfo()
[all …]
Dosdep_service.h75 static inline void list_delete(struct list_head *plist) in list_delete() argument
77 list_del_init(plist); in list_delete()
129 static inline void list_insert_tail(struct list_head *plist, in list_insert_tail() argument
132 list_add_tail(plist, phead); in list_insert_tail()
153 static inline u32 end_of_queue_search(struct list_head *head, struct list_head *plist) in end_of_queue_search() argument
155 if (head == plist) in end_of_queue_search()
Drtl8712_recv.c207 struct list_head *plist, *phead; in recvframe_defrag() local
216 plist = get_next(phead); in recvframe_defrag()
217 prframe = LIST_CONTAINOR(plist, union recv_frame, u); in recvframe_defrag()
229 plist = get_list_head(defrag_q); in recvframe_defrag()
230 plist = get_next(plist); in recvframe_defrag()
232 while (end_of_queue_search(phead, plist) == false) { in recvframe_defrag()
233 pnextrframe = LIST_CONTAINOR(plist, union recv_frame, u); in recvframe_defrag()
254 plist = get_next(plist); in recvframe_defrag()
500 struct list_head *phead, *plist; in enqueue_reorder_recvframe() local
508 plist = get_next(phead); in enqueue_reorder_recvframe()
[all …]
Drtl871x_mlme.c87 struct list_head *plist = NULL; in _r8712_alloc_network() local
92 plist = get_next(&(free_queue->queue)); in _r8712_alloc_network()
93 pnetwork = LIST_CONTAINOR(plist , struct wlan_network, list); in _r8712_alloc_network()
147 struct list_head *phead, *plist; in _r8712_find_network() local
155 plist = get_next(phead); in _r8712_find_network()
156 while (plist != phead) { in _r8712_find_network()
157 pnetwork = LIST_CONTAINOR(plist, struct wlan_network, list); in _r8712_find_network()
158 plist = get_next(plist); in _r8712_find_network()
169 struct list_head *phead, *plist; in _free_network_queue() local
176 plist = get_next(phead); in _free_network_queue()
[all …]
Drtl871x_recv.c109 struct list_head *plist, *phead; in r8712_alloc_recvframe() local
118 plist = get_next(phead); in r8712_alloc_recvframe()
119 precvframe = LIST_CONTAINOR(plist, union recv_frame, u); in r8712_alloc_recvframe()
144 struct list_head *plist, *phead; in r8712_free_recvframe_queue() local
148 plist = get_next(phead); in r8712_free_recvframe_queue()
149 while (end_of_queue_search(phead, plist) == false) { in r8712_free_recvframe_queue()
150 precvframe = LIST_CONTAINOR(plist, union recv_frame, u); in r8712_free_recvframe_queue()
151 plist = get_next(plist); in r8712_free_recvframe_queue()
Drtl871x_xmit.c744 struct list_head *plist, *phead; in r8712_alloc_xmitbuf() local
752 plist = get_next(phead); in r8712_alloc_xmitbuf()
753 pxmitbuf = LIST_CONTAINOR(plist, struct xmit_buf, list); in r8712_alloc_xmitbuf()
798 struct list_head *plist, *phead; in r8712_alloc_xmitframe() local
806 plist = get_next(phead); in r8712_alloc_xmitframe()
807 pxframe = LIST_CONTAINOR(plist, struct xmit_frame, list); in r8712_alloc_xmitframe()
857 struct list_head *plist, *phead; in r8712_free_xmitframe_queue() local
862 plist = get_next(phead); in r8712_free_xmitframe_queue()
863 while (end_of_queue_search(phead, plist) == false) { in r8712_free_xmitframe_queue()
864 pxmitframe = LIST_CONTAINOR(plist, struct xmit_frame, list); in r8712_free_xmitframe_queue()
[all …]
Drtl871x_ioctl_set.c60 struct list_head *plist, *phead; in do_join() local
66 plist = get_next(phead); in do_join()
69 pmlmepriv->pscanned = plist; in do_join()
Drtl871x_ioctl_linux.c1237 struct list_head *plist, *phead; in r8711_wx_get_scan() local
1252 plist = get_next(phead); in r8711_wx_get_scan()
1254 if (end_of_queue_search(phead, plist) == true) in r8711_wx_get_scan()
1260 pnetwork = LIST_CONTAINOR(plist, struct wlan_network, list); in r8711_wx_get_scan()
1262 plist = get_next(plist); in r8711_wx_get_scan()
2013 struct list_head *plist, *phead; in r871x_get_ap_info() local
2034 plist = get_next(phead); in r871x_get_ap_info()
2036 if (end_of_queue_search(phead, plist) == true) in r871x_get_ap_info()
2038 pnetwork = LIST_CONTAINOR(plist, struct wlan_network, list); in r871x_get_ap_info()
2062 plist = get_next(plist); in r871x_get_ap_info()
/linux-3.4.99/drivers/gpu/drm/ttm/
Dttm_page_alloc.c708 struct list_head plist; in ttm_get_pages() local
742 INIT_LIST_HEAD(&plist); in ttm_get_pages()
743 npages = ttm_page_pool_get_pages(pool, &plist, flags, cstate, npages); in ttm_get_pages()
745 list_for_each_entry(p, &plist, lru) { in ttm_get_pages()
751 list_for_each_entry(p, &plist, lru) { in ttm_get_pages()
764 INIT_LIST_HEAD(&plist); in ttm_get_pages()
765 r = ttm_alloc_new_pages(&plist, gfp_flags, flags, cstate, npages); in ttm_get_pages()
766 list_for_each_entry(p, &plist, lru) { in ttm_get_pages()
/linux-3.4.99/drivers/acpi/acpica/
Dutresrc.c392 #define ACPI_RESOURCE_ERROR(plist) argument
394 #define ACPI_RESOURCE_ERROR(plist) ACPI_ERROR(plist) argument
Dacmacros.h343 #define ACPI_WARN_PREDEFINED(plist) acpi_ut_predefined_warning plist argument
344 #define ACPI_INFO_PREDEFINED(plist) acpi_ut_predefined_info plist argument
352 #define ACPI_WARN_PREDEFINED(plist) argument
353 #define ACPI_INFO_PREDEFINED(plist) argument
/linux-3.4.99/sound/core/
Dcontrol.c718 struct list_head *plist; in snd_ctl_elem_list() local
738 plist = card->controls.next; in snd_ctl_elem_list()
739 while (plist != &card->controls) { in snd_ctl_elem_list()
742 kctl = snd_kcontrol(plist); in snd_ctl_elem_list()
746 plist = plist->next; in snd_ctl_elem_list()
750 while (space > 0 && plist != &card->controls) { in snd_ctl_elem_list()
751 kctl = snd_kcontrol(plist); in snd_ctl_elem_list()
758 plist = plist->next; in snd_ctl_elem_list()
/linux-3.4.99/Documentation/
Drt-mutex-design.txt100 the task is blocked on. It also has the plist node structures to
187 on both mutexes and processes, I'll explain the plist. This is similar to
189 The implementation of plist is out of scope for this document, but it is
192 There are a few differences between plist and list, the most important one
193 being that plist is a priority sorted linked list. This means that the
194 priorities of the plist are sorted, such that it takes O(1) to retrieve the
208 has a plist to store these waiters by priority. This list is protected by
227 This list is stored in the task structure of a process as a plist called
427 should be at, but the plist nodes of the task's waiter have not been updated
451 The next check sees if the task's waiter plist node has the priority equal to
[all …]
Drt-mutex.txt37 priority enqueueing is handled by "plists", see include/linux/plist.h
/linux-3.4.99/drivers/staging/ft1000/ft1000-usb/
Dft1000_usb.h177 void ft1000_free_buffer(struct dpram_blk *pdpram_blk, struct list_head *plist);
Dft1000_debug.c116 void ft1000_free_buffer(struct dpram_blk *pdpram_blk, struct list_head *plist) in ft1000_free_buffer() argument
122 list_add_tail(&pdpram_blk->list, plist); in ft1000_free_buffer()
/linux-3.4.99/net/dccp/
Dfeat.c1203 u8 *plist, plen, type = dccp_feat_type(feat); in dccp_feat_confirm_recv() local
1255 plist = val; in dccp_feat_confirm_recv()
1258 plist = val + 1; in dccp_feat_confirm_recv()
1263 if (dccp_feat_reconcile(&entry->val, plist, plen, server, 0) != *val) { in dccp_feat_confirm_recv()
/linux-3.4.99/lib/
DMakefile15 is_single_threaded.o plist.o decompress.o
/linux-3.4.99/fs/reiserfs/
Dbitmap.c501 struct list_head *plist = &SB_JOURNAL(th->t_super)->j_prealloc_list; in reiserfs_discard_all_prealloc() local
505 while (!list_empty(plist)) { in reiserfs_discard_all_prealloc()
507 ei = list_entry(plist->next, struct reiserfs_inode_info, in reiserfs_discard_all_prealloc()
/linux-3.4.99/drivers/scsi/be2iscsi/
Dbe_main.c1500 struct list_head *plist; in hwi_free_async_msg() local
1506 plist = &pasync_ctx->async_entry[cri].wait_queue.list; in hwi_free_async_msg()
1508 list_for_each_entry_safe(pasync_handle, tmp_handle, plist, link) { in hwi_free_async_msg()
1654 struct list_head *plist; in hwi_fwd_async_msg() local
1662 plist = &pasync_ctx->async_entry[cri].wait_queue.list; in hwi_fwd_async_msg()
1664 list_for_each_entry(pasync_handle, plist, link) { in hwi_fwd_async_msg()