Searched hist:"045 ed31e23aea840648c290dbde04797064960db" (Results 1 – 1 of 1) sorted by relevance
/linux/include/linux/ |
H A D | kfifo.h | diff 045ed31e23aea840648c290dbde04797064960db Fri Jun 24 07:30:04 CEST 2022 Dan Carpenter <dan.carpenter@oracle.com> kfifo: fix kfifo_to_user() return type
The kfifo_to_user() macro is supposed to return zero for success or negative error codes. Unfortunately, there is a signedness bug so it returns unsigned int. This only affects callers which try to save the result in ssize_t and as far as I can see the only place which does that is line6_hwdep_read().
TL;DR: s/_uint/_int/.
Link: https://lkml.kernel.org/r/YrVL3OJVLlNhIMFs@kili Fixes: 144ecf310eb5 ("kfifo: fix kfifo_alloc() to return a signed int value") Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Cc: Stefani Seibold <stefani@seibold.net> Cc: Randy Dunlap <randy.dunlap@oracle.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
|