aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/linux/mm_types.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/linux/mm_types.h b/include/linux/mm_types.h
index 10f5a7272b80..011eb85d7b0f 100644
--- a/include/linux/mm_types.h
+++ b/include/linux/mm_types.h
@@ -65,9 +65,6 @@ struct page {
65 * this page is only used to 65 * this page is only used to
66 * free other pages. 66 * free other pages.
67 */ 67 */
68#if defined(CONFIG_TRANSPARENT_HUGEPAGE) && USE_SPLIT_PMD_PTLOCKS
69 pgtable_t pmd_huge_pte; /* protected by page->ptl */
70#endif
71 }; 68 };
72 69
73 union { 70 union {
@@ -135,6 +132,9 @@ struct page {
135 132
136 struct list_head list; /* slobs list of pages */ 133 struct list_head list; /* slobs list of pages */
137 struct slab *slab_page; /* slab fields */ 134 struct slab *slab_page; /* slab fields */
135#if defined(CONFIG_TRANSPARENT_HUGEPAGE) && USE_SPLIT_PMD_PTLOCKS
136 pgtable_t pmd_huge_pte; /* protected by page->ptl */
137#endif
138 }; 138 };
139 139
140 /* Remainder is not double word aligned */ 140 /* Remainder is not double word aligned */