diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/kfifo.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/kfifo.h b/include/linux/kfifo.h index 86ad50a900c8..7ad6d32dd673 100644 --- a/include/linux/kfifo.h +++ b/include/linux/kfifo.h | |||
@@ -113,6 +113,9 @@ extern unsigned int kfifo_in(struct kfifo *fifo, | |||
113 | const void *from, unsigned int len); | 113 | const void *from, unsigned int len); |
114 | extern __must_check unsigned int kfifo_out(struct kfifo *fifo, | 114 | extern __must_check unsigned int kfifo_out(struct kfifo *fifo, |
115 | void *to, unsigned int len); | 115 | void *to, unsigned int len); |
116 | extern __must_check unsigned int kfifo_out_peek(struct kfifo *fifo, | ||
117 | void *to, unsigned int len, unsigned offset); | ||
118 | |||
116 | 119 | ||
117 | /** | 120 | /** |
118 | * kfifo_reset - removes the entire FIFO contents | 121 | * kfifo_reset - removes the entire FIFO contents |