forked from Minki/linux
kfifo: fix sparse complaints
This patch fix complaints by the sparse tool when using kfifo_put() with non scalar types like structures (i.e. drivers/iio/industrialio-event.c). Casting a pointer to the value and read this pointer instead of directly casting the value will fix this. The generated code is equal. Signed-off-by: Stefani Seibold <stefani@seibold.net> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
ad4db3b24a
commit
21b2f44315
@ -401,7 +401,7 @@ __kfifo_int_must_check_helper( \
|
|||||||
((typeof(__tmp->type))__kfifo->data) : \
|
((typeof(__tmp->type))__kfifo->data) : \
|
||||||
(__tmp->buf) \
|
(__tmp->buf) \
|
||||||
)[__kfifo->in & __tmp->kfifo.mask] = \
|
)[__kfifo->in & __tmp->kfifo.mask] = \
|
||||||
(typeof(*__tmp->type))__val; \
|
*(typeof(__tmp->type))&__val; \
|
||||||
smp_wmb(); \
|
smp_wmb(); \
|
||||||
__kfifo->in++; \
|
__kfifo->in++; \
|
||||||
} \
|
} \
|
||||||
|
Loading…
Reference in New Issue
Block a user