Home
last modified time | relevance | path

Searched refs:ih_fifo (Results 1 – 2 of 2) sorted by relevance

/linux/drivers/gpu/drm/amd/amdkfd/
H A Dkfd_interrupt.c57 r = kfifo_alloc(&node->ih_fifo, in kfd_interrupt_init()
69 kfifo_free(&node->ih_fifo); in kfd_interrupt_init()
102 kfifo_free(&node->ih_fifo); in kfd_interrupt_exit()
110 if (kfifo_is_full(&node->ih_fifo)) { in enqueue_ih_ring_entry()
116 kfifo_in(&node->ih_fifo, ih_ring_entry, node->kfd->device_info.ih_ring_entry_size); in enqueue_ih_ring_entry()
127 if (kfifo_is_empty(&node->ih_fifo)) in dequeue_ih_ring_entry()
130 count = kfifo_out_linear_ptr(&node->ih_fifo, ih_ring_entry, in dequeue_ih_ring_entry()
145 kfifo_skip_count(&dev->ih_fifo, dev->kfd->device_info.ih_ring_entry_size); in interrupt_wq()
H A Dkfd_priv.h276 struct kfifo ih_fifo; member