Searched defs:head (Results 1 - 25 of 480) sorted by relevance

1234567891011>>

/drivers/gpu/drm/
H A Ddrm_legacy.h86 struct list_head head; member in struct:drm_agp_mem
H A Ddrm_auth.c40 struct list_head head; member in struct:drm_magic_entry
96 list_add_tail(&entry->head, &master->magicfree);
126 list_del(&pt->head);
/drivers/gpu/drm/nouveau/
H A Dnv10_fence.h10 struct nvif_object head[4]; member in struct:nv10_fence_chan
/drivers/scsi/arm/
H A Dqueue.h14 struct list_head head; member in struct:__anon5179
57 * Function: int __queue_add(Queue_t *queue, struct scsi_cmnd *SCpnt, int head)
61 * head - add command to head of queue
64 extern int __queue_add(Queue_t *queue, struct scsi_cmnd *SCpnt, int head);
/drivers/video/adf/
H A Dadf_fops.h24 struct list_head head; member in struct:adf_file
/drivers/block/drbd/
H A Ddrbd_nla.c8 struct nlattr *head = nla_data(nla); local
20 nla_for_each_attr(nla, head, len, rem) {
/drivers/dma/
H A Dvirt-dma.c65 LIST_HEAD(head);
68 list_splice_tail_init(&vc->desc_completed, &head);
80 while (!list_empty(&head)) {
81 vd = list_first_entry(&head, struct virt_dma_desc, node);
94 void vchan_dma_desc_free_list(struct virt_dma_chan *vc, struct list_head *head) argument
96 while (!list_empty(head)) {
97 struct virt_dma_desc *vd = list_first_entry(head,
H A Dvirt-dma.h44 void vchan_dma_desc_free_list(struct virt_dma_chan *vc, struct list_head *head);
127 * head: list of descriptors found
135 struct list_head *head)
137 list_splice_tail_init(&vc->desc_submitted, head);
138 list_splice_tail_init(&vc->desc_issued, head);
139 list_splice_tail_init(&vc->desc_completed, head);
145 LIST_HEAD(head);
148 vchan_get_all_descriptors(vc, &head);
151 vchan_dma_desc_free_list(vc, &head);
134 vchan_get_all_descriptors(struct virt_dma_chan *vc, struct list_head *head) argument
/drivers/gpu/drm/nouveau/core/engine/disp/
H A Dconn.h8 struct list_head head; member in struct:nvkm_connector
H A Doutp.h8 struct list_head head; member in struct:nvkm_output
/drivers/gpu/drm/nouveau/core/include/core/
H A Dengctx.h15 struct list_head head; member in struct:nouveau_engctx
H A Dhandle.h8 struct list_head head; member in struct:nouveau_handle
H A Dnotify.h6 struct list_head head; member in struct:nvkm_notify
/drivers/gpu/drm/nouveau/core/include/subdev/
H A Dinstmem.h10 struct list_head head; member in struct:nouveau_instobj
H A Dtimer.h8 struct list_head head; member in struct:nouveau_alarm
17 INIT_LIST_HEAD(&alarm->head);
/drivers/infiniband/hw/amso1100/
H A Dc2_alloc.c40 struct sp_chunk **head)
55 new_head->head = 0;
67 *head = new_head;
89 __be16 *c2_alloc_mqsp(struct c2_dev *c2dev, struct sp_chunk *head, argument
94 while (head) {
95 mqsp = head->head;
97 head->head = head
39 c2_alloc_mqsp_chunk(struct c2_dev *c2dev, gfp_t gfp_mask, struct sp_chunk **head) argument
124 struct sp_chunk *head; local
[all...]
/drivers/s390/cio/
H A Deadm_sch.h16 struct list_head head; member in struct:eadm_private
/drivers/staging/unisys/channels/
H A Dchannel.c50 unsigned int head, tail, nof; local
57 /* capture current head and tail */
58 head = readl(&pqhdr->Head);
61 /* queue is full if (head + 1) % n equals tail */
62 if (((head + 1) % readl(&pqhdr->MaxSignalSlots)) == tail) {
68 /* increment the head index */
69 head = (head + 1) % readl(&pqhdr->MaxSignalSlots);
71 /* copy signal to the head location from the area pointed to
75 (head * read
108 unsigned int head, tail; local
163 unsigned int head, tail, signalCount = 0; local
[all...]
/drivers/gpu/drm/vmwgfx/
H A Dvmwgfx_fence.h48 struct list_head head; member in struct:vmw_fence_action
57 struct list_head head; member in struct:vmw_fence_obj
/drivers/net/wireless/ath/
H A Ddfs_pri_detector.h26 * @head: list_head
36 struct list_head head; member in struct:pri_sequence
/drivers/staging/android/fiq_debugger/
H A Dfiq_debugger_ringbuf.h23 int head; member in struct:fiq_debugger_ringbuf
38 rbuf->head = 0;
52 int level = rbuf->head - rbuf->tail;
88 rbuf->buf[rbuf->head] = datum;
90 rbuf->head = (rbuf->head + 1) % rbuf->len;
/drivers/staging/lustre/lustre/ptlrpc/
H A Dnrs_fifo.c39 * enabled on a given NRS head.
81 struct nrs_fifo_head *head; local
83 OBD_CPT_ALLOC_PTR(head, nrs_pol2cptab(policy), nrs_pol2cptid(policy));
84 if (head == NULL)
87 INIT_LIST_HEAD(&head->fh_list);
88 policy->pol_private = head;
103 struct nrs_fifo_head *head = policy->pol_private; local
105 LASSERT(head != NULL);
106 LASSERT(list_empty(&head->fh_list));
108 OBD_FREE_PTR(head);
163 struct nrs_fifo_head *head = policy->pol_private; local
197 struct nrs_fifo_head *head; local
[all...]
/drivers/target/
H A Dtarget_core_ua.c123 * the head of the list following sam4r14,
205 int head = 1; local
221 * The highest priority Unit Attentions are placed at the head of the
240 * (head of the list) in the outgoing CHECK_CONDITION + sense.
242 if (head) {
245 head = 0;
273 int head = 1; local
289 * The highest priority Unit Attentions are placed at the head of the
300 if (head) {
303 head
[all...]
/drivers/gpu/drm/nouveau/core/engine/perfmon/
H A Dpriv.h8 struct list_head head; member in struct:nouveau_perfctr
49 struct list_head head; member in struct:nouveau_perfdom
/drivers/gpu/drm/nouveau/core/include/nvif/
H A Devent.h25 __u8 head; member in struct:nvif_notify_head_req_v0

Completed in 3637 milliseconds

1234567891011>>