Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ec02f95f authored by Johan Hovold's avatar Johan Hovold Committed by Sasha Levin
Browse files

USB: serial: fix infinite wait_until_sent timeout



commit f528bf4f57e43d1af4b2a5c97f09e43e0338c105 upstream.

Make sure to handle an infinite timeout (0).

Note that wait_until_sent is currently never called with a 0-timeout
argument due to a bug in tty_wait_until_sent.

Fixes: dcf01050 ("USB: serial: add generic wait_until_sent
implementation")
Signed-off-by: default avatarJohan Hovold <johan@kernel.org>
Signed-off-by: default avatarSasha Levin <sasha.levin@oracle.com>
parent d6bc66d7
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -258,6 +258,7 @@ void usb_serial_generic_wait_until_sent(struct tty_struct *tty, long timeout)
	 * character or at least one jiffy.
	 */
	period = max_t(unsigned long, (10 * HZ / bps), 1);
	if (timeout)
		period = min_t(unsigned long, period, timeout);

	dev_dbg(&port->dev, "%s - timeout = %u ms, period = %u ms\n",
@@ -268,7 +269,7 @@ void usb_serial_generic_wait_until_sent(struct tty_struct *tty, long timeout)
		schedule_timeout_interruptible(period);
		if (signal_pending(current))
			break;
		if (time_after(jiffies, expire))
		if (timeout && time_after(jiffies, expire))
			break;
	}
}