aboutsummaryrefslogtreecommitdiffstats
path: root/kernel
diff options
context:
space:
mode:
Diffstat (limited to 'kernel')
-rw-r--r--kernel/exit.c13
-rw-r--r--kernel/fork.c8
2 files changed, 16 insertions, 5 deletions
diff --git a/kernel/exit.c b/kernel/exit.c
index 34867cc5b42a..804fb6bb8161 100644
--- a/kernel/exit.c
+++ b/kernel/exit.c
@@ -423,6 +423,7 @@ void daemonize(const char *name, ...)
423 * user space pages. We don't need them, and if we didn't close them 423 * user space pages. We don't need them, and if we didn't close them
424 * they would be locked into memory. 424 * they would be locked into memory.
425 */ 425 */
426 mm_release(current, current->mm);
426 exit_mm(current); 427 exit_mm(current);
427 /* 428 /*
428 * We don't want to get frozen, in case system-wide hibernation 429 * We don't want to get frozen, in case system-wide hibernation
@@ -640,7 +641,6 @@ static void exit_mm(struct task_struct * tsk)
640 struct mm_struct *mm = tsk->mm; 641 struct mm_struct *mm = tsk->mm;
641 struct core_state *core_state; 642 struct core_state *core_state;
642 643
643 mm_release(tsk, mm);
644 if (!mm) 644 if (!mm)
645 return; 645 return;
646 /* 646 /*
@@ -960,9 +960,13 @@ void do_exit(long code)
960 preempt_count()); 960 preempt_count());
961 961
962 acct_update_integrals(tsk); 962 acct_update_integrals(tsk);
963 /* sync mm's RSS info before statistics gathering */ 963
964 if (tsk->mm) 964 /* Set exit_code before complete_vfork_done() in mm_release() */
965 sync_mm_rss(tsk->mm); 965 tsk->exit_code = code;
966
967 /* Release mm and sync mm's RSS info before statistics gathering */
968 mm_release(tsk, tsk->mm);
969
966 group_dead = atomic_dec_and_test(&tsk->signal->live); 970 group_dead = atomic_dec_and_test(&tsk->signal->live);
967 if (group_dead) { 971 if (group_dead) {
968 hrtimer_cancel(&tsk->signal->real_timer); 972 hrtimer_cancel(&tsk->signal->real_timer);
@@ -975,7 +979,6 @@ void do_exit(long code)
975 tty_audit_exit(); 979 tty_audit_exit();
976 audit_free(tsk); 980 audit_free(tsk);
977 981
978 tsk->exit_code = code;
979 taskstats_exit(tsk, group_dead); 982 taskstats_exit(tsk, group_dead);
980 983
981 exit_mm(tsk); 984 exit_mm(tsk);
diff --git a/kernel/fork.c b/kernel/fork.c
index ab5211b9e622..0560781c6904 100644
--- a/kernel/fork.c
+++ b/kernel/fork.c
@@ -619,6 +619,14 @@ void mmput(struct mm_struct *mm)
619 module_put(mm->binfmt->module); 619 module_put(mm->binfmt->module);
620 mmdrop(mm); 620 mmdrop(mm);
621 } 621 }
622
623 /*
624 * Final rss-counter synchronization. After this point there must be
625 * no pagefaults into this mm from the current context. Otherwise
626 * mm->rss_stat will be inconsistent.
627 */
628 if (mm)
629 sync_mm_rss(mm);
622} 630}
623EXPORT_SYMBOL_GPL(mmput); 631EXPORT_SYMBOL_GPL(mmput);
624 632