Searched defs:xillyfifo (Results 1 – 1 of 1) sorted by relevance
70 struct xillyfifo { struct71 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;[all …]