1. NAME▲
kfifo_get - get data from the fifo
2. SYNOPSIS ▲
kfifo_get( fifo , val );
3. ARGUMENTS ▲
fifo
address of the fifo to be used
val
the var where to store the data to be added
4. DESCRIPTION ▲
This macro reads the data from the fifo. It returns 0 if the fifo was empty. Otherwise it returns the number processed elements.
Note that with only one concurrent reader and one concurrent writer, you donAqt need extra locking to use these macro.
5. COPYRIGHT ▲