mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
[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>
This commit is contained in:
parent
1299232b57
commit
4b5d37ac02
1 changed files with 1 additions and 0 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue