um: convert count_lock to mutex, fix a race in line_open()
authorAl Viro <viro@zeniv.linux.org.uk>
Fri, 9 Sep 2011 21:36:37 +0000 (17:36 -0400)
committerRichard Weinberger <richard@nod.at>
Sat, 24 Mar 2012 23:29:53 +0000 (00:29 +0100)
commitd8c215adbf3901aa7d00a0f17f08d77be689f838
tree88f7f49abb5944725f3b60d8f28a41580e7f915f
parent43574c1afea4f798592c03cf4d4ecea4fd0a8416
um: convert count_lock to mutex, fix a race in line_open()

If two processes are opening the same line, the second to get
into line_open() will decide that it doesn't need to do anything
(correctly) or wait for anything.  The latter, unfortunately,
is incorrect - the first opener might not be through yet.  We
need to have exclusion covering the entire line_init(), including
the blocking parts.  Moreover, the next patch will need to
widen the exclusion on mconsole side of things, also including
the blocking bits, so let's just convert that sucker to mutex...

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Richard Weinberger <richard@nod.at>
arch/um/drivers/line.c
arch/um/drivers/line.h
arch/um/drivers/ssl.c
arch/um/drivers/stdio_console.c