Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 24572
b: refs/heads/master
c: a7e5328
h: refs/heads/master
v: v3
  • Loading branch information
Oleg Nesterov authored and Linus Torvalds committed Mar 29, 2006
1 parent e7c6893 commit 0f961fa
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 9 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 4a2c7a7837da1b91468e50426066d988050e4d56
refs/heads/master: a7e5328a06a2beee3a2bbfaf87ce2a7bbe937de1
2 changes: 1 addition & 1 deletion trunk/include/linux/sched.h
Original file line number Diff line number Diff line change
Expand Up @@ -1151,7 +1151,7 @@ extern void exit_thread(void);

extern void exit_files(struct task_struct *);
extern void __cleanup_signal(struct signal_struct *);
extern void cleanup_sighand(struct task_struct *);
extern void __cleanup_sighand(struct sighand_struct *);
extern void exit_itimers(struct signal_struct *);

extern NORET_TYPE void do_group_exit(int);
Expand Down
3 changes: 2 additions & 1 deletion trunk/kernel/exit.c
Original file line number Diff line number Diff line change
Expand Up @@ -114,10 +114,11 @@ static void __exit_signal(struct task_struct *tsk)
__unhash_process(tsk);

tsk->signal = NULL;
cleanup_sighand(tsk);
tsk->sighand = NULL;
spin_unlock(&sighand->siglock);
rcu_read_unlock();

__cleanup_sighand(sighand);
clear_tsk_thread_flag(tsk,TIF_SIGPENDING);
flush_sigqueue(&tsk->pending);
if (sig) {
Expand Down
8 changes: 2 additions & 6 deletions trunk/kernel/fork.c
Original file line number Diff line number Diff line change
Expand Up @@ -803,12 +803,8 @@ static inline int copy_sighand(unsigned long clone_flags, struct task_struct * t
return 0;
}

void cleanup_sighand(struct task_struct *tsk)
void __cleanup_sighand(struct sighand_struct *sighand)
{
struct sighand_struct * sighand = tsk->sighand;

/* Ok, we're done with the signal handlers */
tsk->sighand = NULL;
if (atomic_dec_and_test(&sighand->count))
kmem_cache_free(sighand_cachep, sighand);
}
Expand Down Expand Up @@ -1233,7 +1229,7 @@ static task_t *copy_process(unsigned long clone_flags,
bad_fork_cleanup_signal:
cleanup_signal(p);
bad_fork_cleanup_sighand:
cleanup_sighand(p);
__cleanup_sighand(p->sighand);
bad_fork_cleanup_fs:
exit_fs(p); /* blocking */
bad_fork_cleanup_files:
Expand Down

0 comments on commit 0f961fa

Please sign in to comment.