aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/linux/mm_types.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/include/linux/mm_types.h b/include/linux/mm_types.h
index 02a27ae78539..97819efd2333 100644
--- a/include/linux/mm_types.h
+++ b/include/linux/mm_types.h
@@ -159,6 +159,10 @@ struct vm_area_struct {
159#endif 159#endif
160}; 160};
161 161
162struct core_state {
163 struct completion startup;
164};
165
162struct mm_struct { 166struct mm_struct {
163 struct vm_area_struct * mmap; /* list of VMAs */ 167 struct vm_area_struct * mmap; /* list of VMAs */
164 struct rb_root mm_rb; 168 struct rb_root mm_rb;
@@ -220,7 +224,8 @@ struct mm_struct {
220 unsigned long flags; /* Must use atomic bitops to access the bits */ 224 unsigned long flags; /* Must use atomic bitops to access the bits */
221 225
222 /* coredumping support */ 226 /* coredumping support */
223 struct completion *core_startup_done, core_done; 227 struct core_state *core_state;
228 struct completion core_done;
224 229
225 /* aio bits */ 230 /* aio bits */
226 rwlock_t ioctx_list_lock; /* aio lock */ 231 rwlock_t ioctx_list_lock; /* aio lock */