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