blob: 9fad0527344fb1203bd8bdace4a77fc9045301b4 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Stefani Seibold45465482009-12-21 14:37:26 -08002 * A generic kernel FIFO implementation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
Stefani Seibold45465482009-12-21 14:37:26 -08004 * Copyright (C) 2009 Stefani Seibold <stefani@seibold.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Copyright (C) 2004 Stelian Pop <stelian@popies.net>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 *
21 */
Stefani Seibold7acd72e2009-12-21 14:37:28 -080022
23/*
24 * Howto porting drivers to the new generic fifo API:
25 *
26 * - Modify the declaration of the "struct kfifo *" object into a
27 * in-place "struct kfifo" object
28 * - Init the in-place object with kfifo_alloc() or kfifo_init()
29 * Note: The address of the in-place "struct kfifo" object must be
30 * passed as the first argument to this functions
31 * - Replace the use of __kfifo_put into kfifo_in and __kfifo_get
32 * into kfifo_out
33 * - Replace the use of kfifo_put into kfifo_in_locked and kfifo_get
34 * into kfifo_out_locked
35 * Note: the spinlock pointer formerly passed to kfifo_init/kfifo_alloc
36 * must be passed now to the kfifo_in_locked and kfifo_out_locked
37 * as the last parameter.
38 * - All formerly name __kfifo_* functions has been renamed into kfifo_*
39 */
40
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#ifndef _LINUX_KFIFO_H
42#define _LINUX_KFIFO_H
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <linux/kernel.h>
45#include <linux/spinlock.h>
46
47struct kfifo {
48 unsigned char *buffer; /* the buffer holding the data */
49 unsigned int size; /* the size of the allocated buffer */
50 unsigned int in; /* data is added at offset (in % size) */
51 unsigned int out; /* data is extracted from off. (out % size) */
Linus Torvalds1da177e2005-04-16 15:20:36 -070052};
53
Stefani Seibold37bdfbb2009-12-21 14:37:30 -080054/*
55 * Macros for declaration and initialization of the kfifo datatype
56 */
57
58/* helper macro */
59#define __kfifo_initializer(s, b) \
60 (struct kfifo) { \
61 .size = s, \
62 .in = 0, \
63 .out = 0, \
64 .buffer = b \
65 }
66
67/**
68 * DECLARE_KFIFO - macro to declare a kfifo and the associated buffer
69 * @name: name of the declared kfifo datatype
Andi Kleen5dab6002010-01-15 17:01:17 -080070 * @size: size of the fifo buffer. Must be a power of two.
Stefani Seibold37bdfbb2009-12-21 14:37:30 -080071 *
Randy Dunlap9c717de2009-12-23 09:23:33 -080072 * Note1: the macro can be used inside struct or union declaration
73 * Note2: the macro creates two objects:
Stefani Seibold37bdfbb2009-12-21 14:37:30 -080074 * A kfifo object with the given name and a buffer for the kfifo
75 * object named name##kfifo_buffer
76 */
77#define DECLARE_KFIFO(name, size) \
78union { \
79 struct kfifo name; \
80 unsigned char name##kfifo_buffer[size + sizeof(struct kfifo)]; \
81}
82
83/**
Rolf Eike Beered656d82009-12-26 17:58:11 +010084 * INIT_KFIFO - Initialize a kfifo declared by DECLARE_KFIFO
Stefani Seibold37bdfbb2009-12-21 14:37:30 -080085 * @name: name of the declared kfifo datatype
Stefani Seibold37bdfbb2009-12-21 14:37:30 -080086 */
87#define INIT_KFIFO(name) \
88 name = __kfifo_initializer(sizeof(name##kfifo_buffer) - \
David Härdeman530cd332010-04-06 14:34:43 -070089 sizeof(struct kfifo), \
90 name##kfifo_buffer + sizeof(struct kfifo))
Stefani Seibold37bdfbb2009-12-21 14:37:30 -080091
92/**
93 * DEFINE_KFIFO - macro to define and initialize a kfifo
94 * @name: name of the declared kfifo datatype
Andi Kleen5dab6002010-01-15 17:01:17 -080095 * @size: size of the fifo buffer. Must be a power of two.
Stefani Seibold37bdfbb2009-12-21 14:37:30 -080096 *
Randy Dunlap9c717de2009-12-23 09:23:33 -080097 * Note1: the macro can be used for global and local kfifo data type variables
98 * Note2: the macro creates two objects:
Stefani Seibold37bdfbb2009-12-21 14:37:30 -080099 * A kfifo object with the given name and a buffer for the kfifo
100 * object named name##kfifo_buffer
101 */
102#define DEFINE_KFIFO(name, size) \
103 unsigned char name##kfifo_buffer[size]; \
104 struct kfifo name = __kfifo_initializer(size, name##kfifo_buffer)
105
Andi Kleen8ecc2952010-01-15 17:01:12 -0800106extern void kfifo_init(struct kfifo *fifo, void *buffer,
Stefani Seiboldc1e13f22009-12-21 14:37:27 -0800107 unsigned int size);
Stefani Seibold45465482009-12-21 14:37:26 -0800108extern __must_check int kfifo_alloc(struct kfifo *fifo, unsigned int size,
Stefani Seiboldc1e13f22009-12-21 14:37:27 -0800109 gfp_t gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110extern void kfifo_free(struct kfifo *fifo);
Stefani Seibold9842c382009-12-21 14:37:29 -0800111extern unsigned int kfifo_in(struct kfifo *fifo,
Andi Kleen8ecc2952010-01-15 17:01:12 -0800112 const void *from, unsigned int len);
Stefani Seibold7acd72e2009-12-21 14:37:28 -0800113extern __must_check unsigned int kfifo_out(struct kfifo *fifo,
Andi Kleen8ecc2952010-01-15 17:01:12 -0800114 void *to, unsigned int len);
Andi Kleena5b9e2c2010-01-15 17:01:16 -0800115extern __must_check unsigned int kfifo_out_peek(struct kfifo *fifo,
116 void *to, unsigned int len, unsigned offset);
117
Andi Kleend994ffc2010-01-15 17:01:17 -0800118/**
119 * kfifo_initialized - Check if kfifo is initialized.
120 * @fifo: fifo to check
121 * Return %true if FIFO is initialized, otherwise %false.
122 * Assumes the fifo was 0 before.
123 */
124static inline bool kfifo_initialized(struct kfifo *fifo)
125{
Anton Vorontsov5a5e0f42010-01-27 17:09:38 +0300126 return fifo->buffer != NULL;
Andi Kleend994ffc2010-01-15 17:01:17 -0800127}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
129/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 * kfifo_reset - removes the entire FIFO contents
131 * @fifo: the fifo to be emptied.
132 */
133static inline void kfifo_reset(struct kfifo *fifo)
134{
Stefani Seibolde64c0262009-12-21 14:37:28 -0800135 fifo->in = fifo->out = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136}
137
138/**
Stefani Seibolda121f242009-12-21 14:37:31 -0800139 * kfifo_reset_out - skip FIFO contents
140 * @fifo: the fifo to be emptied.
141 */
142static inline void kfifo_reset_out(struct kfifo *fifo)
143{
144 smp_mb();
145 fifo->out = fifo->in;
146}
147
148/**
Stefani Seibold37bdfbb2009-12-21 14:37:30 -0800149 * kfifo_size - returns the size of the fifo in bytes
150 * @fifo: the fifo to be used.
151 */
152static inline __must_check unsigned int kfifo_size(struct kfifo *fifo)
153{
154 return fifo->size;
155}
156
157/**
Stefani Seibolde64c0262009-12-21 14:37:28 -0800158 * kfifo_len - returns the number of used bytes in the FIFO
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 * @fifo: the fifo to be used.
Stefani Seiboldc1e13f22009-12-21 14:37:27 -0800160 */
Stefani Seibolde64c0262009-12-21 14:37:28 -0800161static inline unsigned int kfifo_len(struct kfifo *fifo)
Stefani Seiboldc1e13f22009-12-21 14:37:27 -0800162{
163 register unsigned int out;
164
165 out = fifo->out;
166 smp_rmb();
167 return fifo->in - out;
168}
169
170/**
Stefani Seibold37bdfbb2009-12-21 14:37:30 -0800171 * kfifo_is_empty - returns true if the fifo is empty
172 * @fifo: the fifo to be used.
173 */
174static inline __must_check int kfifo_is_empty(struct kfifo *fifo)
175{
176 return fifo->in == fifo->out;
177}
178
179/**
180 * kfifo_is_full - returns true if the fifo is full
181 * @fifo: the fifo to be used.
182 */
183static inline __must_check int kfifo_is_full(struct kfifo *fifo)
184{
185 return kfifo_len(fifo) == kfifo_size(fifo);
186}
187
188/**
189 * kfifo_avail - returns the number of bytes available in the FIFO
190 * @fifo: the fifo to be used.
191 */
192static inline __must_check unsigned int kfifo_avail(struct kfifo *fifo)
193{
194 return kfifo_size(fifo) - kfifo_len(fifo);
195}
196
197/**
Stefani Seibold7acd72e2009-12-21 14:37:28 -0800198 * kfifo_in_locked - puts some data into the FIFO using a spinlock for locking
Stefani Seiboldc1e13f22009-12-21 14:37:27 -0800199 * @fifo: the fifo to be used.
200 * @from: the data to be added.
201 * @n: the length of the data to be added.
202 * @lock: pointer to the spinlock to use for locking.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 *
Viral Mehtaa8d89802010-03-17 19:31:17 +0530204 * This function copies at most @n bytes from the @from buffer into
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 * the FIFO depending on the free space, and returns the number of
206 * bytes copied.
207 */
Stefani Seibold9842c382009-12-21 14:37:29 -0800208static inline unsigned int kfifo_in_locked(struct kfifo *fifo,
Andi Kleen8ecc2952010-01-15 17:01:12 -0800209 const void *from, unsigned int n, spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210{
211 unsigned long flags;
212 unsigned int ret;
213
Stefani Seiboldc1e13f22009-12-21 14:37:27 -0800214 spin_lock_irqsave(lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
Stefani Seibold7acd72e2009-12-21 14:37:28 -0800216 ret = kfifo_in(fifo, from, n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Stefani Seiboldc1e13f22009-12-21 14:37:27 -0800218 spin_unlock_irqrestore(lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
220 return ret;
221}
222
223/**
Stefani Seibold7acd72e2009-12-21 14:37:28 -0800224 * kfifo_out_locked - gets some data from the FIFO using a spinlock for locking
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 * @fifo: the fifo to be used.
Stefani Seiboldc1e13f22009-12-21 14:37:27 -0800226 * @to: where the data must be copied.
227 * @n: the size of the destination buffer.
228 * @lock: pointer to the spinlock to use for locking.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 *
Viral Mehtaa8d89802010-03-17 19:31:17 +0530230 * This function copies at most @n bytes from the FIFO into the
Stefani Seiboldc1e13f22009-12-21 14:37:27 -0800231 * @to buffer and returns the number of copied bytes.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 */
Stefani Seibold7acd72e2009-12-21 14:37:28 -0800233static inline __must_check unsigned int kfifo_out_locked(struct kfifo *fifo,
Andi Kleen8ecc2952010-01-15 17:01:12 -0800234 void *to, unsigned int n, spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235{
236 unsigned long flags;
237 unsigned int ret;
238
Stefani Seiboldc1e13f22009-12-21 14:37:27 -0800239 spin_lock_irqsave(lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
Stefani Seibold7acd72e2009-12-21 14:37:28 -0800241 ret = kfifo_out(fifo, to, n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
Stefani Seiboldc1e13f22009-12-21 14:37:27 -0800243 spin_unlock_irqrestore(lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
245 return ret;
246}
247
Stefani Seibolda121f242009-12-21 14:37:31 -0800248extern void kfifo_skip(struct kfifo *fifo, unsigned int len);
249
Andi Kleen64ce1032010-01-15 17:01:15 -0800250extern __must_check int kfifo_from_user(struct kfifo *fifo,
251 const void __user *from, unsigned int n, unsigned *lenout);
Stefani Seibolda121f242009-12-21 14:37:31 -0800252
Andi Kleen64ce1032010-01-15 17:01:15 -0800253extern __must_check int kfifo_to_user(struct kfifo *fifo,
254 void __user *to, unsigned int n, unsigned *lenout);
Stefani Seibolda121f242009-12-21 14:37:31 -0800255
Randy Dunlap9c717de2009-12-23 09:23:33 -0800256/*
Stefani Seibolda121f242009-12-21 14:37:31 -0800257 * __kfifo_add_out internal helper function for updating the out offset
258 */
259static inline void __kfifo_add_out(struct kfifo *fifo,
260 unsigned int off)
261{
262 smp_mb();
263 fifo->out += off;
264}
265
Randy Dunlap9c717de2009-12-23 09:23:33 -0800266/*
Stefani Seibolda121f242009-12-21 14:37:31 -0800267 * __kfifo_add_in internal helper function for updating the in offset
268 */
269static inline void __kfifo_add_in(struct kfifo *fifo,
270 unsigned int off)
271{
272 smp_wmb();
273 fifo->in += off;
274}
275
Randy Dunlap9c717de2009-12-23 09:23:33 -0800276/*
Stefani Seibolda121f242009-12-21 14:37:31 -0800277 * __kfifo_off internal helper function for calculating the index of a
278 * given offeset
279 */
280static inline unsigned int __kfifo_off(struct kfifo *fifo, unsigned int off)
281{
282 return off & (fifo->size - 1);
283}
284
Randy Dunlap9c717de2009-12-23 09:23:33 -0800285/*
Stefani Seibold86d48802009-12-21 14:37:32 -0800286 * __kfifo_peek_n internal helper function for determinate the length of
287 * the next record in the fifo
288 */
289static inline unsigned int __kfifo_peek_n(struct kfifo *fifo,
290 unsigned int recsize)
291{
292#define __KFIFO_GET(fifo, off, shift) \
293 ((fifo)->buffer[__kfifo_off((fifo), (fifo)->out+(off))] << (shift))
294
295 unsigned int l;
296
297 l = __KFIFO_GET(fifo, 0, 0);
298
299 if (--recsize)
300 l |= __KFIFO_GET(fifo, 1, 8);
301
302 return l;
303#undef __KFIFO_GET
304}
305
Randy Dunlap9c717de2009-12-23 09:23:33 -0800306/*
Stefani Seibold86d48802009-12-21 14:37:32 -0800307 * __kfifo_poke_n internal helper function for storing the length of
308 * the next record into the fifo
309 */
310static inline void __kfifo_poke_n(struct kfifo *fifo,
311 unsigned int recsize, unsigned int n)
312{
313#define __KFIFO_PUT(fifo, off, val, shift) \
314 ( \
315 (fifo)->buffer[__kfifo_off((fifo), (fifo)->in+(off))] = \
316 (unsigned char)((val) >> (shift)) \
317 )
318
319 __KFIFO_PUT(fifo, 0, n, 0);
320
321 if (--recsize)
322 __KFIFO_PUT(fifo, 1, n, 8);
323#undef __KFIFO_PUT
324}
325
Randy Dunlap9c717de2009-12-23 09:23:33 -0800326/*
Stefani Seibold86d48802009-12-21 14:37:32 -0800327 * __kfifo_in_... internal functions for put date into the fifo
328 * do not call it directly, use kfifo_in_rec() instead
329 */
330extern unsigned int __kfifo_in_n(struct kfifo *fifo,
331 const void *from, unsigned int n, unsigned int recsize);
332
333extern unsigned int __kfifo_in_generic(struct kfifo *fifo,
334 const void *from, unsigned int n, unsigned int recsize);
335
336static inline unsigned int __kfifo_in_rec(struct kfifo *fifo,
337 const void *from, unsigned int n, unsigned int recsize)
338{
339 unsigned int ret;
340
341 ret = __kfifo_in_n(fifo, from, n, recsize);
342
343 if (likely(ret == 0)) {
344 if (recsize)
345 __kfifo_poke_n(fifo, recsize, n);
346 __kfifo_add_in(fifo, n + recsize);
347 }
348 return ret;
349}
350
351/**
352 * kfifo_in_rec - puts some record data into the FIFO
353 * @fifo: the fifo to be used.
354 * @from: the data to be added.
355 * @n: the length of the data to be added.
356 * @recsize: size of record field
357 *
358 * This function copies @n bytes from the @from into the FIFO and returns
359 * the number of bytes which cannot be copied.
360 * A returned value greater than the @n value means that the record doesn't
361 * fit into the buffer.
362 *
363 * Note that with only one concurrent reader and one concurrent
364 * writer, you don't need extra locking to use these functions.
365 */
366static inline __must_check unsigned int kfifo_in_rec(struct kfifo *fifo,
367 void *from, unsigned int n, unsigned int recsize)
368{
369 if (!__builtin_constant_p(recsize))
370 return __kfifo_in_generic(fifo, from, n, recsize);
371 return __kfifo_in_rec(fifo, from, n, recsize);
372}
373
Randy Dunlap9c717de2009-12-23 09:23:33 -0800374/*
Stefani Seibold86d48802009-12-21 14:37:32 -0800375 * __kfifo_out_... internal functions for get date from the fifo
376 * do not call it directly, use kfifo_out_rec() instead
377 */
378extern unsigned int __kfifo_out_n(struct kfifo *fifo,
379 void *to, unsigned int reclen, unsigned int recsize);
380
381extern unsigned int __kfifo_out_generic(struct kfifo *fifo,
382 void *to, unsigned int n,
383 unsigned int recsize, unsigned int *total);
384
385static inline unsigned int __kfifo_out_rec(struct kfifo *fifo,
386 void *to, unsigned int n, unsigned int recsize,
387 unsigned int *total)
388{
389 unsigned int l;
390
391 if (!recsize) {
392 l = n;
393 if (total)
394 *total = l;
395 } else {
396 l = __kfifo_peek_n(fifo, recsize);
397 if (total)
398 *total = l;
399 if (n < l)
400 return l;
401 }
402
403 return __kfifo_out_n(fifo, to, l, recsize);
404}
405
406/**
407 * kfifo_out_rec - gets some record data from the FIFO
408 * @fifo: the fifo to be used.
409 * @to: where the data must be copied.
410 * @n: the size of the destination buffer.
411 * @recsize: size of record field
412 * @total: pointer where the total number of to copied bytes should stored
413 *
414 * This function copies at most @n bytes from the FIFO to @to and returns the
415 * number of bytes which cannot be copied.
416 * A returned value greater than the @n value means that the record doesn't
417 * fit into the @to buffer.
418 *
419 * Note that with only one concurrent reader and one concurrent
420 * writer, you don't need extra locking to use these functions.
421 */
422static inline __must_check unsigned int kfifo_out_rec(struct kfifo *fifo,
423 void *to, unsigned int n, unsigned int recsize,
424 unsigned int *total)
425
426{
427 if (!__builtin_constant_p(recsize))
428 return __kfifo_out_generic(fifo, to, n, recsize, total);
429 return __kfifo_out_rec(fifo, to, n, recsize, total);
430}
431
Randy Dunlap9c717de2009-12-23 09:23:33 -0800432/*
Stefani Seibold86d48802009-12-21 14:37:32 -0800433 * __kfifo_from_user_... internal functions for transfer from user space into
434 * the fifo. do not call it directly, use kfifo_from_user_rec() instead
435 */
436extern unsigned int __kfifo_from_user_n(struct kfifo *fifo,
437 const void __user *from, unsigned int n, unsigned int recsize);
438
439extern unsigned int __kfifo_from_user_generic(struct kfifo *fifo,
440 const void __user *from, unsigned int n, unsigned int recsize);
441
442static inline unsigned int __kfifo_from_user_rec(struct kfifo *fifo,
443 const void __user *from, unsigned int n, unsigned int recsize)
444{
445 unsigned int ret;
446
447 ret = __kfifo_from_user_n(fifo, from, n, recsize);
448
449 if (likely(ret == 0)) {
450 if (recsize)
451 __kfifo_poke_n(fifo, recsize, n);
452 __kfifo_add_in(fifo, n + recsize);
453 }
454 return ret;
455}
456
457/**
458 * kfifo_from_user_rec - puts some data from user space into the FIFO
459 * @fifo: the fifo to be used.
460 * @from: pointer to the data to be added.
461 * @n: the length of the data to be added.
462 * @recsize: size of record field
463 *
464 * This function copies @n bytes from the @from into the
465 * FIFO and returns the number of bytes which cannot be copied.
466 *
467 * If the returned value is equal or less the @n value, the copy_from_user()
468 * functions has failed. Otherwise the record doesn't fit into the buffer.
469 *
470 * Note that with only one concurrent reader and one concurrent
471 * writer, you don't need extra locking to use these functions.
472 */
473static inline __must_check unsigned int kfifo_from_user_rec(struct kfifo *fifo,
474 const void __user *from, unsigned int n, unsigned int recsize)
475{
476 if (!__builtin_constant_p(recsize))
477 return __kfifo_from_user_generic(fifo, from, n, recsize);
478 return __kfifo_from_user_rec(fifo, from, n, recsize);
479}
480
Randy Dunlap9c717de2009-12-23 09:23:33 -0800481/*
Stefani Seibold86d48802009-12-21 14:37:32 -0800482 * __kfifo_to_user_... internal functions for transfer fifo data into user space
483 * do not call it directly, use kfifo_to_user_rec() instead
484 */
485extern unsigned int __kfifo_to_user_n(struct kfifo *fifo,
486 void __user *to, unsigned int n, unsigned int reclen,
487 unsigned int recsize);
488
489extern unsigned int __kfifo_to_user_generic(struct kfifo *fifo,
490 void __user *to, unsigned int n, unsigned int recsize,
491 unsigned int *total);
492
493static inline unsigned int __kfifo_to_user_rec(struct kfifo *fifo,
494 void __user *to, unsigned int n,
495 unsigned int recsize, unsigned int *total)
496{
497 unsigned int l;
498
499 if (!recsize) {
500 l = n;
501 if (total)
502 *total = l;
503 } else {
504 l = __kfifo_peek_n(fifo, recsize);
505 if (total)
506 *total = l;
507 if (n < l)
508 return l;
509 }
510
511 return __kfifo_to_user_n(fifo, to, n, l, recsize);
512}
513
514/**
515 * kfifo_to_user_rec - gets data from the FIFO and write it to user space
516 * @fifo: the fifo to be used.
517 * @to: where the data must be copied.
518 * @n: the size of the destination buffer.
519 * @recsize: size of record field
520 * @total: pointer where the total number of to copied bytes should stored
521 *
522 * This function copies at most @n bytes from the FIFO to the @to.
523 * In case of an error, the function returns the number of bytes which cannot
524 * be copied.
525 * If the returned value is equal or less the @n value, the copy_to_user()
526 * functions has failed. Otherwise the record doesn't fit into the @to buffer.
527 *
528 * Note that with only one concurrent reader and one concurrent
529 * writer, you don't need extra locking to use these functions.
530 */
531static inline __must_check unsigned int kfifo_to_user_rec(struct kfifo *fifo,
532 void __user *to, unsigned int n, unsigned int recsize,
533 unsigned int *total)
534{
535 if (!__builtin_constant_p(recsize))
536 return __kfifo_to_user_generic(fifo, to, n, recsize, total);
537 return __kfifo_to_user_rec(fifo, to, n, recsize, total);
538}
539
Randy Dunlap9c717de2009-12-23 09:23:33 -0800540/*
Stefani Seibold86d48802009-12-21 14:37:32 -0800541 * __kfifo_peek_... internal functions for peek into the next fifo record
542 * do not call it directly, use kfifo_peek_rec() instead
543 */
544extern unsigned int __kfifo_peek_generic(struct kfifo *fifo,
545 unsigned int recsize);
546
547/**
548 * kfifo_peek_rec - gets the size of the next FIFO record data
549 * @fifo: the fifo to be used.
550 * @recsize: size of record field
551 *
552 * This function returns the size of the next FIFO record in number of bytes
553 */
554static inline __must_check unsigned int kfifo_peek_rec(struct kfifo *fifo,
555 unsigned int recsize)
556{
557 if (!__builtin_constant_p(recsize))
558 return __kfifo_peek_generic(fifo, recsize);
559 if (!recsize)
560 return kfifo_len(fifo);
561 return __kfifo_peek_n(fifo, recsize);
562}
563
Randy Dunlap9c717de2009-12-23 09:23:33 -0800564/*
Stefani Seibold86d48802009-12-21 14:37:32 -0800565 * __kfifo_skip_... internal functions for skip the next fifo record
566 * do not call it directly, use kfifo_skip_rec() instead
567 */
568extern void __kfifo_skip_generic(struct kfifo *fifo, unsigned int recsize);
569
570static inline void __kfifo_skip_rec(struct kfifo *fifo,
571 unsigned int recsize)
572{
573 unsigned int l;
574
575 if (recsize) {
576 l = __kfifo_peek_n(fifo, recsize);
577
578 if (l + recsize <= kfifo_len(fifo)) {
579 __kfifo_add_out(fifo, l + recsize);
580 return;
581 }
582 }
583 kfifo_reset_out(fifo);
584}
585
586/**
587 * kfifo_skip_rec - skip the next fifo out record
588 * @fifo: the fifo to be used.
589 * @recsize: size of record field
590 *
591 * This function skips the next FIFO record
592 */
593static inline void kfifo_skip_rec(struct kfifo *fifo,
594 unsigned int recsize)
595{
596 if (!__builtin_constant_p(recsize))
597 __kfifo_skip_generic(fifo, recsize);
598 else
599 __kfifo_skip_rec(fifo, recsize);
600}
601
602/**
603 * kfifo_avail_rec - returns the number of bytes available in a record FIFO
604 * @fifo: the fifo to be used.
605 * @recsize: size of record field
606 */
607static inline __must_check unsigned int kfifo_avail_rec(struct kfifo *fifo,
608 unsigned int recsize)
609{
610 unsigned int l = kfifo_size(fifo) - kfifo_len(fifo);
611
612 return (l > recsize) ? l - recsize : 0;
613}
614
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615#endif