This is a note to let you know that I've just added the patch titled USB: mos7840: fix broken TIOCMIWAIT to the 3.4-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: usb-mos7840-fix-broken-tiocmiwait.patch and it can be found in the queue-3.4 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From 928ab2854c082067496ca91c0495a60b17d7bf9e Mon Sep 17 00:00:00 2001 From: Johan Hovold <jhovold@xxxxxxxxx> Date: Tue, 19 Mar 2013 09:21:19 +0100 Subject: USB: mos7840: fix broken TIOCMIWAIT From: Johan Hovold <jhovold@xxxxxxxxx> commit e670c6af12517d08a403487b1122eecf506021cf upstream. Make sure waiting processes are woken on modem-status changes. Currently processes are only woken on termios changes regardless of whether the modem status has changed. Signed-off-by: Johan Hovold <jhovold@xxxxxxxxx> [bwh: Backported to 3.2: adjust context] Signed-off-by: Ben Hutchings <ben@xxxxxxxxxxxxxxx> Cc: Yang Yingliang <yangyingliang@xxxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- drivers/usb/serial/mos7840.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) --- a/drivers/usb/serial/mos7840.c +++ b/drivers/usb/serial/mos7840.c @@ -453,6 +453,9 @@ static void mos7840_handle_new_msr(struc icount->rng++; smp_wmb(); } + + mos7840_port->delta_msr_cond = 1; + wake_up_interruptible(&mos7840_port->delta_msr_wait); } } @@ -2074,8 +2077,6 @@ static void mos7840_change_port_settings mos7840_port->read_urb_busy = false; } } - wake_up(&mos7840_port->delta_msr_wait); - mos7840_port->delta_msr_cond = 1; dbg("mos7840_change_port_settings mos7840_port->shadowLCR is End %x", mos7840_port->shadowLCR); } Patches currently in stable-queue which might be from jhovold@xxxxxxxxx are queue-3.4/usb-oti6858-fix-use-after-free-in-tiocmiwait.patch queue-3.4/usb-io_ti-fix-use-after-free-in-tiocmiwait.patch queue-3.4/usb-ch341-fix-use-after-free-in-tiocmiwait.patch queue-3.4/usb-io_edgeport-fix-use-after-free-in-tiocmiwait.patch queue-3.4/usb-ftdi_sio-fix-use-after-free-in-tiocmiwait.patch queue-3.4/usb-ark3116-fix-use-after-free-in-tiocmiwait.patch queue-3.4/usb-pl2303-fix-use-after-free-in-tiocmiwait.patch queue-3.4/usb-cypress_m8-fix-use-after-free-in-tiocmiwait.patch queue-3.4/usb-ssu100-fix-use-after-free-in-tiocmiwait.patch queue-3.4/usb-mct_u232-fix-use-after-free-in-tiocmiwait.patch queue-3.4/usb-spcp8x5-fix-use-after-free-in-tiocmiwait.patch queue-3.4/usb-ti_usb_3410_5052-fix-use-after-free-in-tiocmiwait.patch queue-3.4/usb-mos7840-fix-broken-tiocmiwait.patch queue-3.4/usb-serial-fix-hang-when-opening-port.patch queue-3.4/usb-mos7840-fix-use-after-free-in-tiocmiwait.patch queue-3.4/usb-serial-add-modem-status-change-wait-queue.patch -- To unsubscribe from this list: send the line "unsubscribe stable" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html