Searched refs:fifo (Results 1 - 3 of 3) sorted by relevance

/net/dccp/
H A Dprobe.c47 struct kfifo fifo; member in struct:__anon36
71 kfifo_in_locked(&dccpw.fifo, tbuf, len, &dccpw.lock);
113 kfifo_reset(&dccpw.fifo);
135 kfifo_len(&dccpw.fifo) != 0);
139 cnt = kfifo_out_locked(&dccpw.fifo, tbuf, len, &dccpw.lock);
161 if (kfifo_alloc(&dccpw.fifo, bufsize, GFP_KERNEL))
181 kfifo_free(&dccpw.fifo);
188 kfifo_free(&dccpw.fifo);
/net/sctp/
H A Dprobe.c65 struct kfifo fifo; member in struct:__anon162
81 kfifo_in_locked(&sctpw.fifo, tbuf, len, &sctpw.lock);
87 kfifo_reset(&sctpw.fifo);
110 kfifo_len(&sctpw.fifo) != 0);
114 cnt = kfifo_out_locked(&sctpw.fifo, tbuf, len, &sctpw.lock);
213 if (kfifo_alloc(&sctpw.fifo, bufsize, GFP_KERNEL))
231 kfifo_free(&sctpw.fifo);
237 kfifo_free(&sctpw.fifo);
/net/openvswitch/
H A Dactions.c57 /* Deferred action fifo queue storage. */
58 struct deferred_action fifo[DEFERRED_ACTION_FIFO_SIZE]; member in struct:action_fifo
64 static void action_fifo_init(struct action_fifo *fifo) argument
66 fifo->head = 0;
67 fifo->tail = 0;
70 static bool action_fifo_is_empty(struct action_fifo *fifo) argument
72 return (fifo->head == fifo->tail);
75 static struct deferred_action *action_fifo_get(struct action_fifo *fifo) argument
77 if (action_fifo_is_empty(fifo))
83 action_fifo_put(struct action_fifo *fifo) argument
96 struct action_fifo *fifo; local
748 struct action_fifo *fifo = this_cpu_ptr(action_fifos); local
[all...]

Completed in 66 milliseconds