aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/fork.c
diff options
context:
space:
mode:
authorMariusz Kozlowski <m.kozlowski@tuxland.pl>2007-10-18 23:41:09 -0700
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2007-10-19 11:53:56 -0700
commita24efe62dd165be7d03431cf936ae17d345fed69 (patch)
treed6e89de347ac0e3b2fe478690cc1f58281022bc3 /kernel/fork.c
parentLinux Kernel Markers - Documentation (diff)
downloadlinux-dev-a24efe62dd165be7d03431cf936ae17d345fed69.tar.xz
linux-dev-a24efe62dd165be7d03431cf936ae17d345fed69.zip
kernel/fork.c: remove unneeded variable initialization in copy_process()
This initialization of is not needed so just remove it. Signed-off-by: Mariusz Kozlowski <m.kozlowski@tuxland.pl> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to '')
-rw-r--r--kernel/fork.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/fork.c b/kernel/fork.c
index 9d40367dd5db..43958d41e65a 100644
--- a/kernel/fork.c
+++ b/kernel/fork.c
@@ -978,7 +978,7 @@ static struct task_struct *copy_process(unsigned long clone_flags,
struct pid *pid)
{
int retval;
- struct task_struct *p = NULL;
+ struct task_struct *p;
int cgroup_callbacks_done = 0;
if ((clone_flags & (CLONE_NEWNS|CLONE_FS)) == (CLONE_NEWNS|CLONE_FS))