|
@@ -172,6 +172,7 @@ struct mm_struct {
|
|
atomic_t mm_users; /* How many users with user space? */
|
|
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_t mm_count; /* How many references to "struct mm_struct" (users count as 1) */
|
|
int map_count; /* number of VMAs */
|
|
int map_count; /* number of VMAs */
|
|
|
|
+ int core_waiters;
|
|
struct rw_semaphore mmap_sem;
|
|
struct rw_semaphore mmap_sem;
|
|
spinlock_t page_table_lock; /* Protects page tables and some counters */
|
|
spinlock_t page_table_lock; /* Protects page tables and some counters */
|
|
|
|
|
|
@@ -216,11 +217,10 @@ struct mm_struct {
|
|
unsigned long flags; /* Must use atomic bitops to access the bits */
|
|
unsigned long flags; /* Must use atomic bitops to access the bits */
|
|
|
|
|
|
/* coredumping support */
|
|
/* coredumping support */
|
|
- int core_waiters;
|
|
|
|
struct completion *core_startup_done, core_done;
|
|
struct completion *core_startup_done, core_done;
|
|
|
|
|
|
/* aio bits */
|
|
/* aio bits */
|
|
- rwlock_t ioctx_list_lock;
|
|
|
|
|
|
+ rwlock_t ioctx_list_lock; /* aio lock */
|
|
struct kioctx *ioctx_list;
|
|
struct kioctx *ioctx_list;
|
|
#ifdef CONFIG_CGROUP_MEM_RES_CTLR
|
|
#ifdef CONFIG_CGROUP_MEM_RES_CTLR
|
|
struct mem_cgroup *mem_cgroup;
|
|
struct mem_cgroup *mem_cgroup;
|