Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1597746 > unrolled thread

[PATCH 3.16 172/370] USB: serial: quatech2: fix sleep-while-atomic in close

Started byBen Hutchings <ben@decadent.org.uk>
First post2017-03-10 15:10 +0100
Last post2017-03-10 15:10 +0100
Articles 1 — 1 participant

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  [PATCH 3.16 172/370] USB: serial: quatech2: fix sleep-while-atomic  in close Ben Hutchings <ben@decadent.org.uk> - 2017-03-10 15:10 +0100

#1597746 — [PATCH 3.16 172/370] USB: serial: quatech2: fix sleep-while-atomic in close

FromBen Hutchings <ben@decadent.org.uk>
Date2017-03-10 15:10 +0100
Subject[PATCH 3.16 172/370] USB: serial: quatech2: fix sleep-while-atomic in close
Message-ID<tjtp1-56o-59@gated-at.bofh.it>
3.16.42-rc1 review patch.  If anyone has any objections, please let me know.

------------------

From: Johan Hovold <johan@kernel.org>

commit f09d1886a41e9063b43da493ef0e845ac8afd2fa upstream.

The write URB was being killed using the synchronous interface while
holding a spin lock in close().

Simply drop the lock and busy-flag update, something which would have
been taken care of by the completion handler if the URB was in flight.

Fixes: f7a33e608d9a ("USB: serial: add quatech2 usb to serial driver")
Signed-off-by: Johan Hovold <johan@kernel.org>
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
---
 drivers/usb/serial/quatech2.c | 4 ----
 1 file changed, 4 deletions(-)

--- a/drivers/usb/serial/quatech2.c
+++ b/drivers/usb/serial/quatech2.c
@@ -408,16 +408,12 @@ static void qt2_close(struct usb_serial_
 {
 	struct usb_serial *serial;
 	struct qt2_port_private *port_priv;
-	unsigned long flags;
 	int i;
 
 	serial = port->serial;
 	port_priv = usb_get_serial_port_data(port);
 
-	spin_lock_irqsave(&port_priv->urb_lock, flags);
 	usb_kill_urb(port_priv->write_urb);
-	port_priv->urb_in_use = false;
-	spin_unlock_irqrestore(&port_priv->urb_lock, flags);
 
 	/* flush the port transmit buffer */
 	i = usb_control_msg(serial->dev,

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web