diff options
author | Oleg Nesterov <oleg@tv-sign.ru> | 2006-03-28 19:11:05 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-28 21:36:41 -0500 |
commit | 8fafabd86f1b75ed3cc6a6ffbe6c3e53e3d8457d (patch) | |
tree | 3ae1a8fc44870ac3046213b11cad4aa8b3ce5f04 /fs/exec.c | |
parent | d799f03597cabc6112acb518fc8ab4487aa4f953 (diff) |
[PATCH] remove add_parent()'s parent argument
add_parent(p, parent) is always called with parent == p->parent, and it makes
no sense to do it differently. This patch removes this argument.
No changes in affected .o files.
Signed-off-by: Oleg Nesterov <oleg@tv-sign.ru>
Cc: "Eric W. Biederman" <ebiederm@xmission.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs/exec.c')
-rw-r--r-- | fs/exec.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -725,8 +725,8 @@ static int de_thread(struct task_struct *tsk) | |||
725 | current->group_leader = current; | 725 | current->group_leader = current; |
726 | leader->group_leader = leader; | 726 | leader->group_leader = leader; |
727 | 727 | ||
728 | add_parent(current, current->parent); | 728 | add_parent(current); |
729 | add_parent(leader, leader->parent); | 729 | add_parent(leader); |
730 | if (ptrace) { | 730 | if (ptrace) { |
731 | current->ptrace = ptrace; | 731 | current->ptrace = ptrace; |
732 | __ptrace_link(current, parent); | 732 | __ptrace_link(current, parent); |