浏览代码

staging/fwserial: Up the tty buffer limit to 128K

The firewire driver can overrun the tty buffers before the
line discipline can throttle the input; up the buffer limit.

Signed-off-by: Peter Hurley <peter@hurleysoftware.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Peter Hurley 11 年之前
父节点
当前提交
2ead3911e0
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      drivers/staging/fwserial/fwserial.c

+ 1 - 0
drivers/staging/fwserial/fwserial.c

@@ -2225,6 +2225,7 @@ static int fwserial_create(struct fw_unit *unit)
 		port->index = FWTTY_INVALID_INDEX;
 		port->index = FWTTY_INVALID_INDEX;
 		port->port.ops = &fwtty_port_ops;
 		port->port.ops = &fwtty_port_ops;
 		port->serial = serial;
 		port->serial = serial;
+		tty_buffer_set_limit(&port->port, 128 * 1024);
 
 
 		spin_lock_init(&port->lock);
 		spin_lock_init(&port->lock);
 		INIT_DELAYED_WORK(&port->drain, fwtty_drain_tx);
 		INIT_DELAYED_WORK(&port->drain, fwtty_drain_tx);