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