]> git.karo-electronics.de Git - karo-tx-linux.git/commit
isdn: avoid calling tty_ldisc_flush() in atomic context
authorTilman Schmidt <tilman@imap.cc>
Mon, 5 Jul 2010 14:18:27 +0000 (14:18 +0000)
committerPaul Gortmaker <paul.gortmaker@windriver.com>
Sun, 26 Jun 2011 16:47:08 +0000 (12:47 -0400)
commit513ea9e72a7138bd3649364f2231c746df789f3e
tree33c44f947f29e5eb819d550a16c7b732e1332f96
parent76a3554c35666627985b2eda1acec7a1865371b8
isdn: avoid calling tty_ldisc_flush() in atomic context

commit bc10f96757bd6ab3721510df8defa8f21c32f974 upstream.

Remove the call to tty_ldisc_flush() from the RESULT_NO_CARRIER
branch of isdn_tty_modem_result(), as already proposed in commit
00409bb045887ec5e7b9e351bc080c38ab6bfd33.
This avoids a "sleeping function called from invalid context" BUG
when the hardware driver calls the statcallb() callback with
command==ISDN_STAT_DHUP in atomic context, which in turn calls
isdn_tty_modem_result(RESULT_NO_CARRIER, ~), and from there,
tty_ldisc_flush() which may sleep.

Signed-off-by: Tilman Schmidt <tilman@imap.cc>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
drivers/isdn/i4l/isdn_tty.c