aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-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 ddadb4defe00..0e80e26ecf21 100644
--- a/include/linux/mm_types.h
+++ b/include/linux/mm_types.h
@@ -95,6 +95,9 @@ struct page {
95 void *virtual; /* Kernel virtual address (NULL if 95 void *virtual; /* Kernel virtual address (NULL if
96 not kmapped, ie. highmem) */ 96 not kmapped, ie. highmem) */
97#endif /* WANT_PAGE_VIRTUAL */ 97#endif /* WANT_PAGE_VIRTUAL */
98#ifdef CONFIG_WANT_PAGE_DEBUG_FLAGS
99 unsigned long debug_flags; /* Use atomic bitops on this */
100#endif
98}; 101};
99 102
100/* 103/*
@@ -175,9 +178,6 @@ struct vm_area_struct {
175#ifdef CONFIG_NUMA 178#ifdef CONFIG_NUMA
176 struct mempolicy *vm_policy; /* NUMA policy for the VMA */ 179 struct mempolicy *vm_policy; /* NUMA policy for the VMA */
177#endif 180#endif
178#ifdef CONFIG_WANT_PAGE_DEBUG_FLAGS
179 unsigned long debug_flags; /* Use atomic bitops on this */
180#endif
181}; 181};
182 182
183struct core_thread { 183struct core_thread {