1. NAME

kfifo_in - put data into the fifo

2. SYNOPSIS

kfifo_in( fifo , buf , n );

3. ARGUMENTS

fifo
    address of the fifo to be used

buf
    the data to be added

n
    number of elements to be added

4. DESCRIPTION

This macro copies the given buffer into the fifo and returns the number of copied elements.

Note that with only one concurrent reader and one concurrent writer, you donAqt need extra locking to use these macro.

5. COPYRIGHT