summaryrefslogtreecommitdiffstats
path: root/kernel/fork.c
diff options
context:
space:
mode:
authorGiancarlo Formicuccia2005-09-09 22:01:22 +0200
committerLinus Torvalds2005-09-09 22:56:43 +0200
commit4b5d37ac02954572e80e09255bb5737277aaee8e (patch)
tree6072a602430af9a95d2bcadf149bd41c8045ef67 /kernel/fork.c
parent[PATCH] x86: MP_processor_info fix (diff)
downloadkernel-qcow2-linux-4b5d37ac02954572e80e09255bb5737277aaee8e.tar.gz
kernel-qcow2-linux-4b5d37ac02954572e80e09255bb5737277aaee8e.tar.xz
kernel-qcow2-linux-4b5d37ac02954572e80e09255bb5737277aaee8e.zip
[PATCH] Clear task_struct->fs_excl on fork()
An oversight. We don't want to carry the IO scheduler's "we hold exclusive fs resources" hint over to the child across fork(). Acked-by: Jens Axboe <axboe@suse.de> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'kernel/fork.c')
-rw-r--r--kernel/fork.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/kernel/fork.c b/kernel/fork.c
index 7e1ead9a6ba4..dfeadf466f18 100644
--- a/kernel/fork.c
+++ b/kernel/fork.c
@@ -176,6 +176,7 @@ static struct task_struct *dup_task_struct(struct task_struct *orig)
/* One for us, one for whoever does the "release_task()" (usually parent) */
atomic_set(&tsk->usage,2);
+ atomic_set(&tsk->fs_excl, 0);
return tsk;
}