Searched refs:list (Results 101 - 125 of 5576) sorted by relevance

1234567891011>>

/linux-master/include/linux/
H A Dkvm_irqfd.h27 * RCU list modified under kvm->irqfds.resampler_lock
29 struct list_head list; member in struct:kvm_kernel_irqfd_resampler
32 * Entry in list of kvm->irqfd.resampler_list. Use for sharing
34 * RCU list modified under kvm->irqfds.resampler_lock
53 /* Entry in list of irqfds for a resampler (resampler-only) */
57 struct list_head list; member in struct:kvm_kernel_irqfd
H A Dvirtio_vsock.h76 virtio_vsock_skb_queue_head(struct sk_buff_head *list, struct sk_buff *skb) argument
78 spin_lock_bh(&list->lock);
79 __skb_queue_head(list, skb);
80 spin_unlock_bh(&list->lock);
84 virtio_vsock_skb_queue_tail(struct sk_buff_head *list, struct sk_buff *skb) argument
86 spin_lock_bh(&list->lock);
87 __skb_queue_tail(list, skb);
88 spin_unlock_bh(&list->lock);
91 static inline struct sk_buff *virtio_vsock_skb_dequeue(struct sk_buff_head *list) argument
95 spin_lock_bh(&list
102 virtio_vsock_skb_queue_purge(struct sk_buff_head *list) argument
[all...]
H A Dirq_poll.h9 struct list_head list; member in struct:irq_poll
H A Dsyscore_ops.h11 #include <linux/list.h>
/linux-master/drivers/iommu/
H A Ddma-iommu.h17 void iommu_dma_get_resv_regions(struct device *dev, struct list_head *list);
41 static inline void iommu_dma_get_resv_regions(struct device *dev, struct list_head *list) argument
/linux-master/tools/testing/selftests/rseq/
H A Dbasic_percpu_ops_test.c170 void this_cpu_list_push(struct percpu_list *list, argument
181 /* Load list->c[cpu].head with single-copy atomicity. */
182 expect = (intptr_t)RSEQ_READ_ONCE(list->c[cpu].head);
184 targetptr = (intptr_t *)&list->c[cpu].head;
197 * Unlike a traditional lock-less linked list; the availability of a
201 struct percpu_list_node *this_cpu_list_pop(struct percpu_list *list, argument
211 targetptr = (intptr_t *)&list->c[cpu].head;
233 struct percpu_list_node *__percpu_list_pop(struct percpu_list *list, int cpu) argument
237 node = list->c[cpu].head;
240 list
247 struct percpu_list *list = (struct percpu_list *)arg; local
278 struct percpu_list list; local
[all...]
/linux-master/tools/lib/perf/include/internal/
H A Devlist.h5 #include <linux/list.h>
67 * @list: list_head instance to iterate
70 #define __perf_evlist__for_each_entry(list, evsel) \
71 list_for_each_entry(evsel, list, node)
83 * @list: list_head instance to iterate
86 #define __perf_evlist__for_each_entry_reverse(list, evsel) \
87 list_for_each_entry_reverse(evsel, list, node)
99 * @list: list_head instance to iterate
103 #define __perf_evlist__for_each_entry_safe(list, tmp, evsel) \
104 list_for_each_entry_safe(evsel, tmp, list, nod
[all...]
/linux-master/drivers/crypto/marvell/octeontx2/
H A Dotx2_cpt_reqmgr.h213 struct otx2_cpt_buf_ptr *list,
220 if (unlikely(!list)) {
221 dev_err(&pdev->dev, "Input list pointer is NULL\n");
226 if (unlikely(!list[i].vptr))
228 list[i].dma_addr = dma_map_single(&pdev->dev, list[i].vptr,
229 list[i].size,
231 if (unlikely(dma_mapping_error(&pdev->dev, list[i].dma_addr))) {
239 sg_ptr->len0 = cpu_to_be16(list[i * SG_COMPS_MAX + 0].size);
240 sg_ptr->len1 = cpu_to_be16(list[
212 setup_sgio_components(struct pci_dev *pdev, struct otx2_cpt_buf_ptr *list, int buf_count, u8 *buffer) argument
281 sgv2io_components_setup(struct pci_dev *pdev, struct otx2_cpt_buf_ptr *list, int buf_count, u8 *buffer) argument
[all...]
/linux-master/drivers/crypto/intel/qat/qat_common/
H A Dadf_dev_mgr.c4 #include <linux/list.h>
19 struct list_head list; member in struct:vf_id_map
40 list_entry(itr, struct vf_id_map, list);
54 list_entry(itr, struct vf_id_map, list);
75 map = list_entry(ptr, struct vf_id_map, list);
105 list_entry(itr, struct adf_accel_dev, list);
160 list_entry(itr, struct adf_accel_dev, list);
168 list_add_tail(&accel_dev->list, &accel_table);
184 list_add_tail(&map->list, &vfs_table);
194 list_add_tail(&accel_dev->list,
[all...]
/linux-master/net/netlabel/
H A Dnetlabel_addrlist.c5 * This file contains network address list functions used to manage ordered
19 #include <linux/list.h>
38 * @head: the list head
41 * Searches the IPv4 address list given by @head. If a matching address entry
51 list_for_each_entry_rcu(iter, head, list)
62 * @head: the list head
65 * Searches the IPv4 address list given by @head. If an exact match if found
76 list_for_each_entry_rcu(iter, head, list)
88 * @head: the list head
91 * Searches the IPv6 address list give
[all...]
/linux-master/drivers/media/platform/mediatek/vcodec/decoder/vdec/
H A Dvdec_h264_if.c51 * struct h264_ring_fb_list - ring frame buffer list
55 * @count : buffer count in list
99 * @list_free : free frame buffer ring list (AP-W/R, VPU-W)
100 * @list_disp : display frame buffer ring list (AP-R, VPU-W)
202 struct h264_ring_fb_list *list; local
204 list = disp_list ? &inst->vsi->list_disp : &inst->vsi->list_free;
206 if (list->count > H264_MAX_FB_NUM ||
207 list->read_idx >= H264_MAX_FB_NUM ||
208 list->write_idx >= H264_MAX_FB_NUM) {
209 mtk_vdec_err(inst->ctx, "%s list er
220 struct h264_ring_fb_list *list; local
425 vdec_h264_get_fb(struct vdec_h264_inst *inst, struct h264_ring_fb_list *list, bool disp_list, struct vdec_fb **out_fb) argument
[all...]
/linux-master/drivers/hid/intel-ish-hid/ishtp/
H A Dclient.c49 list_for_each_entry_safe(rb, next, &cl->dev->read_list.list, list)
51 list_del(&rb->list);
53 list_add_tail(&rb->list, &cl->free_rb_list.list);
99 INIT_LIST_HEAD(&cl->free_rb_list.list);
100 INIT_LIST_HEAD(&cl->tx_list.list);
101 INIT_LIST_HEAD(&cl->tx_free_list.list);
102 INIT_LIST_HEAD(&cl->in_process_list.list);
169 * client list
[all...]
/linux-master/arch/sh/include/asm/
H A Dunwinder.h9 struct list_head list; member in struct:unwinder
/linux-master/drivers/net/phy/
H A Dmdio-boardinfo.h14 struct list_head list; member in struct:mdio_board_entry
/linux-master/include/linux/sunrpc/
H A Dtypes.h17 #include <linux/list.h>
/linux-master/arch/powerpc/include/asm/
H A Deeh_event.h18 struct list_head list; /* to form event queue */ member in struct:eeh_event
/linux-master/arch/powerpc/platforms/cell/spufs/
H A Dgang.c10 #include <linux/list.h>
26 INIT_LIST_HEAD(&gang->list);
37 WARN_ON(gang->contexts || !list_empty(&gang->list));
56 list_add(&ctx->gang_list, &gang->list);
/linux-master/drivers/misc/vmw_vmci/
H A Dvmci_datagram.h12 #include <linux/list.h>
/linux-master/tools/testing/selftests/tc-testing/
H A Dtdc_helper.py9 """ Sort the master test list into categories. """
13 testcases[category] = list(filter(lambda x: category in x['category'], alltests))
19 """ For a list, return a list of the unique items in the list. """
21 return list(set(lst))
49 """ Print a list of strings prepended with a tab. """
51 if (type(l) == list):
65 if (isinstance(tcase[k], list)):
/linux-master/drivers/crypto/marvell/octeontx/
H A Dotx_cptpf.h25 struct list_head list; member in struct:otx_cpt_device
/linux-master/lib/
H A Dparman.c10 * notice, this list of conditions and the following disclaimer.
12 * notice, this list of conditions and the following disclaimer in the
39 #include <linux/list.h>
95 typeof(struct parman_item), list);
106 typeof(struct parman_item), list);
117 list_for_each_entry_from_reverse(prio, &parman->prio_list, list) {
143 list_move_tail(&item->list, &prio->item_list);
158 list_move(&item->list, &prio->item_list);
171 list_del(&item->list);
176 list_del(&last_item->list);
[all...]
/linux-master/drivers/gpu/drm/i915/
H A Di915_priolist_types.h10 #include <linux/list.h>
/linux-master/sound/pci/hda/
H A Dhda_intel.h19 /* card list (for power_save trigger) */
20 struct list_head list; member in struct:hda_intel
/linux-master/include/net/netfilter/
H A Dxt_rateest.h15 struct hlist_node list; member in struct:xt_rateest
/linux-master/include/net/netns/
H A Dbpf.h9 #include <linux/list.h>

Completed in 203 milliseconds

1234567891011>>