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

Commit 0bae40db authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "net: ppp: ppp_async: Fix data stall issue over low latency tty port."

parents ffb74150 12be3461
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -198,7 +198,7 @@ ppp_asynctty_open(struct tty_struct *tty)
		goto out_free;

	tty->disc_data = ap;
	tty->receive_room = 65536;
	tty->receive_room = 131072;
	return 0;

 out_free:
@@ -356,6 +356,7 @@ ppp_asynctty_receive(struct tty_struct *tty, const unsigned char *buf,
	if (!skb_queue_empty(&ap->rqueue))
		tasklet_schedule(&ap->tsk);
	ap_put(ap);
	if (tty->port && !tty->port->low_latency)
		tty_unthrottle(tty);
}