Lines Matching defs:xillyfifo
70 struct xillyfifo { struct
71 unsigned int bufsize; /* In bytes, always a power of 2 */
72 unsigned int bufnum;
73 unsigned int size; /* Lazy: Equals bufsize * bufnum */
74 unsigned int buf_order;
76 int fill; /* Number of bytes in the FIFO */
77 spinlock_t lock;
78 wait_queue_head_t waitq;
80 unsigned int readpos;
81 unsigned int readbuf;
82 unsigned int writepos;
83 unsigned int writebuf;
107 struct xillyfifo fifo; argument