Skip to content

Commit 5e10bf6

Browse files
committed
Merge tag 'mm-hotfixes-stable-2024-02-27-14-52' of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
Pull misc fixes from Andrew Morton: "Six hotfixes. Three are cc:stable and the remainder address post-6.7 issues or aren't considered appropriate for backporting" * tag 'mm-hotfixes-stable-2024-02-27-14-52' of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm: mm/debug_vm_pgtable: fix BUG_ON with pud advanced test mm: cachestat: fix folio read-after-free in cache walk MAINTAINERS: add memory mapping entry with reviewers mm/vmscan: fix a bug calling wakeup_kswapd() with a wrong zone index kasan: revert eviction of stack traces in generic mode stackdepot: use variable size records for non-evictable entries
2 parents 45ec2f5 + 720da1e commit 5e10bf6

File tree

10 files changed

+197
-225
lines changed

10 files changed

+197
-225
lines changed

MAINTAINERS

+11
Original file line numberDiff line numberDiff line change
@@ -14111,6 +14111,17 @@ F: mm/
1411114111
F: tools/mm/
1411214112
F: tools/testing/selftests/mm/
1411314113

14114+
MEMORY MAPPING
14115+
M: Andrew Morton <[email protected]>
14116+
R: Liam R. Howlett <[email protected]>
14117+
R: Vlastimil Babka <[email protected]>
14118+
R: Lorenzo Stoakes <[email protected]>
14119+
14120+
S: Maintained
14121+
W: http://www.linux-mm.org
14122+
T: git git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
14123+
F: mm/mmap.c
14124+
1411414125
MEMORY TECHNOLOGY DEVICES (MTD)
1411514126
M: Miquel Raynal <[email protected]>
1411614127
M: Richard Weinberger <[email protected]>

include/linux/poison.h

+3
Original file line numberDiff line numberDiff line change
@@ -92,4 +92,7 @@
9292
/********** VFS **********/
9393
#define VFS_PTR_POISON ((void *)(0xF5 + POISON_POINTER_DELTA))
9494

95+
/********** lib/stackdepot.c **********/
96+
#define STACK_DEPOT_POISON ((void *)(0xD390 + POISON_POINTER_DELTA))
97+
9598
#endif

0 commit comments

Comments
 (0)