]> git.karo-electronics.de Git - karo-tx-linux.git/commit
[PATCH] md: close a small race in md thread deregistration
authorNeilBrown <neilb@cse.unsw.edu.au>
Sat, 16 Apr 2005 22:26:41 +0000 (15:26 -0700)
committerLinus Torvalds <torvalds@ppc970.osdl.org>
Sat, 16 Apr 2005 22:26:41 +0000 (15:26 -0700)
commitd28446fe2d87ea344c14741c39962dcc7aee5c78
treeb41bec77e5e5123f8f5349eb01ced9ee8fd9a924
parent187a27845a9dc1c3da3995e24625ccf2e7a346aa
[PATCH] md: close a small race in md thread deregistration

There is a tiny race when de-registering an MD thread, in that the thread
could disappear before it is set a SIGKILL, causing send_sig to have
problems.

This is most easily closed by holding tasklist_lock between enabling the
thread to exit (setting ->run to NULL) and telling it to exit.

(akpm: ick.  Needs to use kthread API and stop using signals)

Signed-off-by: Neil Brown <neilb@cse.unsw.edu.au>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
drivers/md/md.c