Message ID | cover.1701902977.git.wqu@suse.com (mailing list archive) |
---|---|
Headers | show |
Series | btrfs: migrate extent_buffer::pages[] to folio and more cleanups | expand |
On Thu, Dec 07, 2023 at 09:39:26AM +1030, Qu Wenruo wrote: > [CHANGELOG] > v2: > - Add a new patch to do more cleanups for metadata page pointers usage > > v3: > - Fix a bug in alloc_eb_folio_array() which accesses uninitialized stack > It turns out that I have CONFIG_INIT_STACK_ALL_ZERO, which prevents me > from exposing the bug. Now changed to CONFIG_INIT_STACK_ALL_PATTERN. Seems to be fixed, thanks. I had CONFIG_INIT_STACK_NONE=y so it got caught due to random data on the stack but with CONFIG_INIT_STACK_ALL_PATTERN the pattern makes it clear that it's due to that. Added to misc-next, thanks.