On 2022-03-27 19:00:23 [+0200], andrey.konovalov@xxxxxxxxx wrote: > From: Andrey Konovalov <andreyknvl@xxxxxxxxxx> > > KASAN changes that added new GFP flags mistakenly updated __GFP_BITS_SHIFT > as the total number of GFP bits instead of as a shift used to define > __GFP_BITS_MASK. > > This broke LOCKDEP, as __GFP_BITS_MASK now gets the 25th bit enabled > instead of the 28th for __GFP_NOLOCKDEP. > > Update __GFP_BITS_SHIFT to always count KASAN GFP bits. > > In the future, we could handle all combinations of KASAN and LOCKDEP to > occupy as few bits as possible. For now, we have enough GFP bits to be > inefficient in this quick fix. > > Fixes: 9353ffa6e9e9 ("kasan, page_alloc: allow skipping memory init for HW_TAGS") > Fixes: 53ae233c30a6 ("kasan, page_alloc: allow skipping unpoisoning for HW_TAGS") > Fixes: f49d9c5bb15c ("kasan, mm: only define ___GFP_SKIP_KASAN_POISON with HW_TAGS") > Reported-by: Sebastian Andrzej Siewior <bigeasy@xxxxxxxxxxxxx> > Signed-off-by: Andrey Konovalov <andreyknvl@xxxxxxxxxx> Tested-by: Sebastian Andrzej Siewior <bigeasy@xxxxxxxxxxxxx> Sebastian