Skip to content

Commit

Permalink
coredump: turn core_state->nr_threads into atomic_t
Browse files Browse the repository at this point in the history
Turn core_state->nr_threads into atomic_t and kill now unneeded
down_write(&mm->mmap_sem) in exit_mm().

Signed-off-by: Oleg Nesterov <oleg@tv-sign.ru>
Cc: Roland McGrath <roland@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
Oleg Nesterov authored and Linus Torvalds committed Jul 25, 2008
1 parent 8cd9c24 commit c5f1cc8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion fs/exec.c
Original file line number Diff line number Diff line change
Expand Up @@ -1591,7 +1591,7 @@ static inline int zap_threads(struct task_struct *tsk, struct mm_struct *mm,
}
rcu_read_unlock();
done:
core_state->nr_threads = nr;
atomic_set(&core_state->nr_threads, nr);
return nr;
}

Expand Down
2 changes: 1 addition & 1 deletion include/linux/mm_types.h
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ struct vm_area_struct {
};

struct core_state {
int nr_threads;
atomic_t nr_threads;
struct completion startup;
};

Expand Down
5 changes: 2 additions & 3 deletions kernel/exit.c
Original file line number Diff line number Diff line change
Expand Up @@ -678,10 +678,9 @@ static void exit_mm(struct task_struct * tsk)
down_read(&mm->mmap_sem);
if (mm->core_state) {
up_read(&mm->mmap_sem);
down_write(&mm->mmap_sem);
if (!--mm->core_state->nr_threads)

if (atomic_dec_and_test(&mm->core_state->nr_threads))
complete(&mm->core_state->startup);
up_write(&mm->mmap_sem);

wait_for_completion(&mm->core_done);
down_read(&mm->mmap_sem);
Expand Down

0 comments on commit c5f1cc8

Please sign in to comment.