Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 24561
b: refs/heads/master
c: c81addc
h: refs/heads/master
i:
  24559: dfa9166
v: v3
  • Loading branch information
Oleg Nesterov authored and Linus Torvalds committed Mar 29, 2006
1 parent 6975a43 commit 40b2c1a
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 20 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: 29ff471234d53c7235db287bc52f91884c2977c6
refs/heads/master: c81addc9d3a0ebff2155e0cd86f90820ab97147e
2 changes: 1 addition & 1 deletion trunk/include/linux/sched.h
Original file line number Diff line number Diff line change
Expand Up @@ -1150,8 +1150,8 @@ 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 __exit_signal(struct task_struct *);
extern void __exit_sighand(struct task_struct *);
extern void exit_itimers(struct signal_struct *);

extern NORET_TYPE void do_group_exit(int);
Expand Down
12 changes: 11 additions & 1 deletion trunk/kernel/fork.c
Original file line number Diff line number Diff line change
Expand Up @@ -803,6 +803,16 @@ static inline int copy_sighand(unsigned long clone_flags, struct task_struct * t
return 0;
}

void cleanup_sighand(struct task_struct *tsk)
{
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);
}

static inline int copy_signal(unsigned long clone_flags, struct task_struct * tsk)
{
struct signal_struct *sig;
Expand Down Expand Up @@ -1224,7 +1234,7 @@ static task_t *copy_process(unsigned long clone_flags,
bad_fork_cleanup_signal:
cleanup_signal(p);
bad_fork_cleanup_sighand:
__exit_sighand(p);
cleanup_sighand(p);
bad_fork_cleanup_fs:
exit_fs(p); /* blocking */
bad_fork_cleanup_files:
Expand Down
19 changes: 2 additions & 17 deletions trunk/kernel/signal.c
Original file line number Diff line number Diff line change
Expand Up @@ -310,9 +310,7 @@ static void flush_sigqueue(struct sigpending *queue)
/*
* Flush all pending signals for a task.
*/

void
flush_signals(struct task_struct *t)
void flush_signals(struct task_struct *t)
{
unsigned long flags;

Expand All @@ -323,19 +321,6 @@ flush_signals(struct task_struct *t)
spin_unlock_irqrestore(&t->sighand->siglock, flags);
}

/*
* This function expects the tasklist_lock write-locked.
*/
void __exit_sighand(struct task_struct *tsk)
{
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);
}

/*
* This function expects the tasklist_lock write-locked.
*/
Expand Down Expand Up @@ -386,7 +371,7 @@ void __exit_signal(struct task_struct *tsk)
}

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

Expand Down

0 comments on commit 40b2c1a

Please sign in to comment.