Everything seems in place. We can now include <asm/pgtable.h> in <linux/mm_struct.h>. Signed-off-by: Kirill A. Shutemov <kirill.shutemov@xxxxxxxxxxxxxxx> --- include/linux/mm_struct.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/linux/mm_struct.h b/include/linux/mm_struct.h index 0a233c232a39..1759bed3dc61 100644 --- a/include/linux/mm_struct.h +++ b/include/linux/mm_struct.h @@ -8,6 +8,7 @@ #include <linux/uprobes.h> #include <asm/mmu.h> +#include <asm/pgtable.h> struct kioctx_table; struct vm_area_struct; @@ -54,7 +55,9 @@ struct mm_struct { atomic_t mm_users; /* How many users with user space? */ atomic_t mm_count; /* How many references to "struct mm_struct" (users count as 1) */ atomic_long_t nr_ptes; /* PTE page table pages */ +#if !__PAGETABLE_PMD_FOLDED atomic_long_t nr_pmds; /* PMD page table pages */ +#endif int map_count; /* number of VMAs */ spinlock_t page_table_lock; /* Protects page tables and some counters */ -- 2.1.4 -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@xxxxxxxxx. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@xxxxxxxxx"> email@xxxxxxxxx </a>