From: Matthew Wilcox (Oracle) Date: Thu, 13 Jan 2022 21:44:19 +0000 (-0500) Subject: pagevec: Initialise folio_batch->percpu_pvec_drained X-Git-Tag: v5.17-rc1~9^2~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6840f9094f2bd788a316d8cb0a4e42538d3e47dd;p=thirdparty%2Fkernel%2Flinux.git pagevec: Initialise folio_batch->percpu_pvec_drained When UBSAN is enabled, it reports an invalid value in __pagevec_release() when accessing pvec->percpu_pvec_drained, which is simply whatever garbage was on the stack. Initialise it when initialising the rest of the folio_batch. Fixes: 10331795fb79 ("pagevec: Add folio_batch") Reported-by: Randy Dunlap Tested-by: Randy Dunlap Signed-off-by: Matthew Wilcox (Oracle) --- diff --git a/include/linux/pagevec.h b/include/linux/pagevec.h index dda8d5868c816..67b1246f136b4 100644 --- a/include/linux/pagevec.h +++ b/include/linux/pagevec.h @@ -111,6 +111,7 @@ static_assert(offsetof(struct pagevec, pages) == static inline void folio_batch_init(struct folio_batch *fbatch) { fbatch->nr = 0; + fbatch->percpu_pvec_drained = false; } static inline unsigned int folio_batch_count(struct folio_batch *fbatch)