Searched refs:local_list (Results 1 – 9 of 9) sorted by relevance
/Linux-v4.19/block/ |
D | blk-softirq.c | 25 struct list_head *cpu_list, local_list; in blk_done_softirq() local 29 list_replace_init(cpu_list, &local_list); in blk_done_softirq() 32 while (!list_empty(&local_list)) { in blk_done_softirq() 35 rq = list_entry(local_list.next, struct request, ipi_list); in blk_done_softirq()
|
/Linux-v4.19/kernel/bpf/ |
D | bpf_lru_list.c | 444 loc_l = per_cpu_ptr(clru->local_list, cpu); in bpf_common_lru_pop_free() 473 steal_loc_l = per_cpu_ptr(clru->local_list, steal); in bpf_common_lru_pop_free() 517 loc_l = per_cpu_ptr(lru->common_lru.local_list, node->cpu); in bpf_common_lru_push_free() 668 clru->local_list = alloc_percpu(struct bpf_lru_locallist); in bpf_lru_init() 669 if (!clru->local_list) in bpf_lru_init() 675 loc_l = per_cpu_ptr(clru->local_list, cpu); in bpf_lru_init() 696 free_percpu(lru->common_lru.local_list); in bpf_lru_destroy()
|
D | bpf_lru_list.h | 50 struct bpf_lru_locallist __percpu *local_list; member
|
/Linux-v4.19/kernel/ |
D | padata.c | 68 LIST_HEAD(local_list); in padata_parallel_worker() 75 list_replace_init(&pqueue->parallel.list, &local_list); in padata_parallel_worker() 78 while (!list_empty(&local_list)) { in padata_parallel_worker() 81 padata = list_entry(local_list.next, in padata_parallel_worker() 331 LIST_HEAD(local_list); in padata_serial_worker() 338 list_replace_init(&squeue->serial.list, &local_list); in padata_serial_worker() 341 while (!list_empty(&local_list)) { in padata_serial_worker() 344 padata = list_entry(local_list.next, in padata_serial_worker()
|
/Linux-v4.19/drivers/net/wireless/broadcom/brcm80211/brcmfmac/ |
D | bcmsdh.c | 367 struct sk_buff_head local_list, *target_list; in brcmf_sdiod_sglist_rw() local 379 __skb_queue_head_init(&local_list); in brcmf_sdiod_sglist_rw() 391 __skb_queue_tail(&local_list, pkt_next); in brcmf_sdiod_sglist_rw() 399 __skb_queue_tail(&local_list, pkt_next); in brcmf_sdiod_sglist_rw() 400 target_list = &local_list; in brcmf_sdiod_sglist_rw() 488 local_pkt_next = local_list.next; in brcmf_sdiod_sglist_rw() 507 } while (!skb_queue_empty(&local_list)); in brcmf_sdiod_sglist_rw() 513 while ((pkt_next = __skb_dequeue(&local_list)) != NULL) in brcmf_sdiod_sglist_rw()
|
/Linux-v4.19/drivers/infiniband/core/ |
D | mad_priv.h | 102 struct list_head local_list; member
|
D | mad.c | 375 INIT_LIST_HEAD(&mad_agent_priv->local_list); in ib_register_mad_agent() 943 list_add_tail(&local->completion_list, &mad_agent_priv->local_list); in handle_outgoing_dr_smp() 2718 while (!list_empty(&mad_agent_priv->local_list)) { in local_completions() 2719 local = list_entry(mad_agent_priv->local_list.next, in local_completions()
|
/Linux-v4.19/drivers/net/wireless/intel/iwlwifi/mvm/ |
D | ops.c | 922 LIST_HEAD(local_list); in iwl_mvm_async_handlers_wk() 931 list_splice_init(&mvm->async_handlers_list, &local_list); in iwl_mvm_async_handlers_wk() 934 list_for_each_entry_safe(entry, tmp, &local_list, list) { in iwl_mvm_async_handlers_wk()
|
/Linux-v4.19/drivers/usb/core/ |
D | hcd.c | 1783 struct list_head local_list; in usb_giveback_urb_bh() local 1788 list_replace_init(&bh->head, &local_list); in usb_giveback_urb_bh() 1791 while (!list_empty(&local_list)) { in usb_giveback_urb_bh() 1794 urb = list_entry(local_list.next, struct urb, urb_list); in usb_giveback_urb_bh()
|