On Wed, Mar 27, 2024 at 01:02:24PM +0000, Ryan Roberts wrote: > > #ifndef arch_clear_hugepage_flags > > You need to update this line to the new name. Currently failing to build on > arm64 since it now defines the new arch_clear_hugetlb_flags. Oops. Andrew, please add -fix: diff --git a/include/linux/hugetlb.h b/include/linux/hugetlb.h index 5001d1b6c46d..1a17d03b2fa5 100644 --- a/include/linux/hugetlb.h +++ b/include/linux/hugetlb.h @@ -836,7 +836,7 @@ static inline int is_hugepage_only_range(struct mm_struct *mm, #define is_hugepage_only_range is_hugepage_only_range #endif -#ifndef arch_clear_hugepage_flags +#ifndef arch_clear_hugetlb_flags static inline void arch_clear_hugetlb_flags(struct folio *folio) { } #define arch_clear_hugetlb_flags arch_clear_hugetlb_flags #endif