The patch titled Subject: ARM: thp: fix unterminated ifdef in header file has been removed from the -mm tree. Its filename was arm-thp-remove-infrastructure-for-handling-splitting-pmds-fix.patch This patch was dropped because it was folded into arm-thp-remove-infrastructure-for-handling-splitting-pmds.patch ------------------------------------------------------ From: Arnd Bergmann <arnd@xxxxxxxx> Subject: ARM: thp: fix unterminated ifdef in header file A recent change accidentally removed one line more than it should have, causing the build to fail with ARM LPAE: In file included from /git/arm-soc/arch/arm/include/asm/pgtable.h:31:0, from /git/arm-soc/include/linux/mm.h:55, from /git/arm-soc/arch/arm/kernel/asm-offsets.c:15: /git/arm-soc/arch/arm/include/asm/pgtable-3level.h:20:0: error: unterminated #ifndef #ifndef _ASM_PGTABLE_3LEVEL_H This puts the line back where it was. Fixes: f054144a1b23 ("arm, thp: remove infrastructure for handling splitting PMDs") Signed-off-by: Arnd Bergmann <arnd@xxxxxxxx> Cc: "Kirill A. Shutemov" <kirill.shutemov@xxxxxxxxxxxxxxx> Cc: Stephen Rothwell <sfr@xxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/arm/include/asm/pgtable-3level.h | 1 + 1 file changed, 1 insertion(+) diff -puN arch/arm/include/asm/pgtable-3level.h~arm-thp-remove-infrastructure-for-handling-splitting-pmds-fix arch/arm/include/asm/pgtable-3level.h --- a/arch/arm/include/asm/pgtable-3level.h~arm-thp-remove-infrastructure-for-handling-splitting-pmds-fix +++ a/arch/arm/include/asm/pgtable-3level.h @@ -231,6 +231,7 @@ static inline pte_t pte_mkspecial(pte_t #ifdef CONFIG_TRANSPARENT_HUGEPAGE #define pmd_trans_huge(pmd) (pmd_val(pmd) && !pmd_table(pmd)) +#endif #define PMD_BIT_FUNC(fn,op) \ static inline pmd_t pmd_##fn(pmd_t pmd) { pmd_val(pmd) op; return pmd; } _ Patches currently in -mm which might be from arnd@xxxxxxxx are logfs-fix-logfs-build-errors-and-dependencies.patch arm-thp-remove-infrastructure-for-handling-splitting-pmds.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html