]> git.karo-electronics.de Git - karo-tx-linux.git/commit
virtio: console: fix race with port unplug and open/close
authorAmit Shah <amit.shah@redhat.com>
Mon, 29 Jul 2013 04:46:13 +0000 (14:16 +0930)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 15 Aug 2013 05:59:08 +0000 (22:59 -0700)
commit7b9f0c23359a5a20dccda4db14cc760625ad64c4
tree127a14d49cc7bf3ec0941f85ea07daf208012ca3
parent98c9710e0aa2b939423605488b5817f27118ce40
virtio: console: fix race with port unplug and open/close

commit 057b82be3ca3d066478e43b162fc082930a746c9 upstream.

There's a window between find_port_by_devt() returning a port and us
taking a kref on the port, where the port could get unplugged.  Fix it
by taking the reference in find_port_by_devt() itself.

Problem reported and analyzed by Mateusz Guzik.

Reported-by: Mateusz Guzik <mguzik@redhat.com>
Signed-off-by: Amit Shah <amit.shah@redhat.com>
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/char/virtio_console.c