The patch titled Subject: mm-allow-reuse-of-the-lower-16-bit-of-the-page-type-with-an-actual-type-fix has been added to the -mm mm-unstable branch. Its filename is mm-allow-reuse-of-the-lower-16-bit-of-the-page-type-with-an-actual-type-fix.patch This patch will shortly appear at https://git.kernel.org/pub/scm/linux/kernel/git/akpm/25-new.git/tree/patches/mm-allow-reuse-of-the-lower-16-bit-of-the-page-type-with-an-actual-type-fix.patch This patch will later appear in the mm-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: mm-allow-reuse-of-the-lower-16-bit-of-the-page-type-with-an-actual-type-fix Date: Wed May 29 12:04:52 PM PDT 2024 fix PG_hugetlb typo, per David Cc: David Hildenbrand <david@xxxxxxxxxx> Cc: Hyeonggon Yoo <42.hyeyoo@xxxxxxxxx> Cc: Matthew Wilcox (Oracle) <willy@xxxxxxxxxxxxx> Cc: Mike Rapoport (IBM) <rppt@xxxxxxxxxx> Cc: Minchan Kim <minchan@xxxxxxxxxx> Cc: Sergey Senozhatsky <senozhatsky@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/page-flags.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/include/linux/page-flags.h~mm-allow-reuse-of-the-lower-16-bit-of-the-page-type-with-an-actual-type-fix +++ a/include/linux/page-flags.h @@ -955,7 +955,7 @@ PAGEFLAG_FALSE(HasHWPoisoned, has_hwpois #define PG_offline 0x20000000 #define PG_table 0x10000000 #define PG_guard 0x08000000 -#define PG_hugetlb 0x04008000 +#define PG_hugetlb 0x04000000 #define PG_slab 0x02000000 #define PAGE_MAPCOUNT_RESERVE (~0x0000ffff) _ Patches currently in -mm which might be from akpm@xxxxxxxxxxxxxxxxxxxx are mm-allow-reuse-of-the-lower-16-bit-of-the-page-type-with-an-actual-type-fix.patch