The patch titled Subject: kfifo-add-kfifo_out_linear_ptr-fix has been added to the -mm mm-nonmm-unstable branch. Its filename is kfifo-add-kfifo_out_linear_ptr-fix.patch This patch will shortly appear at https://git.kernel.org/pub/scm/linux/kernel/git/akpm/25-new.git/tree/patches/kfifo-add-kfifo_out_linear_ptr-fix.patch This patch will later appear in the mm-nonmm-unstable branch at git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/process/submit-checklist.rst when testing your code *** The -mm tree is included into linux-next via the mm-everything branch at git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm and is updated there every 2-3 working days ------------------------------------------------------ From: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> Subject: kfifo-add-kfifo_out_linear_ptr-fix Date: Fri Feb 23 06:28:24 PM PST 2024 fix mismatched parenthesis build error Cc: "Jiri Slaby (SUSE)" <jirislaby@xxxxxxxxxx> Cc: Stefani Seibold <stefani@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- lib/kfifo.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) --- a/lib/kfifo.c~kfifo-add-kfifo_out_linear_ptr-fix +++ a/lib/kfifo.c @@ -497,7 +497,7 @@ unsigned int __kfifo_out_linear_r(struct if (tail) *tail = fifo->out + recsize; - return min(n, __kfifo_peek_n(fifo, recsize); + return min(n, __kfifo_peek_n(fifo, recsize)); } EXPORT_SYMBOL(__kfifo_out_linear_r); @@ -609,4 +609,3 @@ unsigned int __kfifo_dma_out_prepare_r(s return setup_sgl(fifo, sgl, nents, len, fifo->out + recsize); } EXPORT_SYMBOL(__kfifo_dma_out_prepare_r); - _ Patches currently in -mm which might be from akpm@xxxxxxxxxxxxxxxxxxxx are hugetlb-parallelize-1g-hugetlb-initialization-fix.patch mm-vmscan-do-not-turn-on-cache_trim_mode-if-it-doesnt-work-fix.patch kfifo-add-kfifo_out_linear_ptr-fix.patch