mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
mm, counters: remove task argument to sync_mm_rss() and __sync_task_rss_stat()
sync_mm_rss() can only be used for current to avoid race conditions in iterating and clearing its per-task counters. Remove the task argument for it and its helper function, __sync_task_rss_stat(), to avoid thinking it can be used safely for anything other than current. Signed-off-by: David Rientjes <rientjes@google.com> Acked-by: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
90481622d7
commit
05af2e104a
5 changed files with 14 additions and 14 deletions
|
@ -824,7 +824,7 @@ static int exec_mmap(struct mm_struct *mm)
|
||||||
/* Notify parent that we're no longer interested in the old VM */
|
/* Notify parent that we're no longer interested in the old VM */
|
||||||
tsk = current;
|
tsk = current;
|
||||||
old_mm = current->mm;
|
old_mm = current->mm;
|
||||||
sync_mm_rss(tsk, old_mm);
|
sync_mm_rss(old_mm);
|
||||||
mm_release(tsk, old_mm);
|
mm_release(tsk, old_mm);
|
||||||
|
|
||||||
if (old_mm) {
|
if (old_mm) {
|
||||||
|
|
|
@ -1131,9 +1131,9 @@ static inline void setmax_mm_hiwater_rss(unsigned long *maxrss,
|
||||||
}
|
}
|
||||||
|
|
||||||
#if defined(SPLIT_RSS_COUNTING)
|
#if defined(SPLIT_RSS_COUNTING)
|
||||||
void sync_mm_rss(struct task_struct *task, struct mm_struct *mm);
|
void sync_mm_rss(struct mm_struct *mm);
|
||||||
#else
|
#else
|
||||||
static inline void sync_mm_rss(struct task_struct *task, struct mm_struct *mm)
|
static inline void sync_mm_rss(struct mm_struct *mm)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -934,7 +934,7 @@ void do_exit(long code)
|
||||||
acct_update_integrals(tsk);
|
acct_update_integrals(tsk);
|
||||||
/* sync mm's RSS info before statistics gathering */
|
/* sync mm's RSS info before statistics gathering */
|
||||||
if (tsk->mm)
|
if (tsk->mm)
|
||||||
sync_mm_rss(tsk, tsk->mm);
|
sync_mm_rss(tsk->mm);
|
||||||
group_dead = atomic_dec_and_test(&tsk->signal->live);
|
group_dead = atomic_dec_and_test(&tsk->signal->live);
|
||||||
if (group_dead) {
|
if (group_dead) {
|
||||||
hrtimer_cancel(&tsk->signal->real_timer);
|
hrtimer_cancel(&tsk->signal->real_timer);
|
||||||
|
|
18
mm/memory.c
18
mm/memory.c
|
@ -125,17 +125,17 @@ core_initcall(init_zero_pfn);
|
||||||
|
|
||||||
#if defined(SPLIT_RSS_COUNTING)
|
#if defined(SPLIT_RSS_COUNTING)
|
||||||
|
|
||||||
static void __sync_task_rss_stat(struct task_struct *task, struct mm_struct *mm)
|
static void __sync_task_rss_stat(struct mm_struct *mm)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
for (i = 0; i < NR_MM_COUNTERS; i++) {
|
for (i = 0; i < NR_MM_COUNTERS; i++) {
|
||||||
if (task->rss_stat.count[i]) {
|
if (current->rss_stat.count[i]) {
|
||||||
add_mm_counter(mm, i, task->rss_stat.count[i]);
|
add_mm_counter(mm, i, current->rss_stat.count[i]);
|
||||||
task->rss_stat.count[i] = 0;
|
current->rss_stat.count[i] = 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
task->rss_stat.events = 0;
|
current->rss_stat.events = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void add_mm_counter_fast(struct mm_struct *mm, int member, int val)
|
static void add_mm_counter_fast(struct mm_struct *mm, int member, int val)
|
||||||
|
@ -157,12 +157,12 @@ static void check_sync_rss_stat(struct task_struct *task)
|
||||||
if (unlikely(task != current))
|
if (unlikely(task != current))
|
||||||
return;
|
return;
|
||||||
if (unlikely(task->rss_stat.events++ > TASK_RSS_EVENTS_THRESH))
|
if (unlikely(task->rss_stat.events++ > TASK_RSS_EVENTS_THRESH))
|
||||||
__sync_task_rss_stat(task, task->mm);
|
__sync_task_rss_stat(task->mm);
|
||||||
}
|
}
|
||||||
|
|
||||||
void sync_mm_rss(struct task_struct *task, struct mm_struct *mm)
|
void sync_mm_rss(struct mm_struct *mm)
|
||||||
{
|
{
|
||||||
__sync_task_rss_stat(task, mm);
|
__sync_task_rss_stat(mm);
|
||||||
}
|
}
|
||||||
#else /* SPLIT_RSS_COUNTING */
|
#else /* SPLIT_RSS_COUNTING */
|
||||||
|
|
||||||
|
@ -643,7 +643,7 @@ static inline void add_mm_rss_vec(struct mm_struct *mm, int *rss)
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
if (current->mm == mm)
|
if (current->mm == mm)
|
||||||
sync_mm_rss(current, mm);
|
sync_mm_rss(mm);
|
||||||
for (i = 0; i < NR_MM_COUNTERS; i++)
|
for (i = 0; i < NR_MM_COUNTERS; i++)
|
||||||
if (rss[i])
|
if (rss[i])
|
||||||
add_mm_counter(mm, i, rss[i]);
|
add_mm_counter(mm, i, rss[i]);
|
||||||
|
|
|
@ -53,7 +53,7 @@ void unuse_mm(struct mm_struct *mm)
|
||||||
struct task_struct *tsk = current;
|
struct task_struct *tsk = current;
|
||||||
|
|
||||||
task_lock(tsk);
|
task_lock(tsk);
|
||||||
sync_mm_rss(tsk, mm);
|
sync_mm_rss(mm);
|
||||||
tsk->mm = NULL;
|
tsk->mm = NULL;
|
||||||
/* active_mm is still 'mm' */
|
/* active_mm is still 'mm' */
|
||||||
enter_lazy_tlb(mm, tsk);
|
enter_lazy_tlb(mm, tsk);
|
||||||
|
|
Loading…
Reference in a new issue