diff options
| author | mattis fjallstrom <mattis@acm.org> | 2015-02-26 16:12:14 -0800 |
|---|---|---|
| committer | mattis fjallstrom <mattis@acm.org> | 2015-02-26 16:12:14 -0800 |
| commit | a3a67e3f8c3a7219a20820431627d897272abb88 (patch) | |
| tree | 93a68ecb836deee651e6b32200beb6f3fdf7055a | |
| parent | 01388c8b2f25dca19d532c361d38fcea9344789a (diff) | |
| download | olio-linux-3.10-a3a67e3f8c3a7219a20820431627d897272abb88.tar.xz olio-linux-3.10-a3a67e3f8c3a7219a20820431627d897272abb88.zip | |
Increased size for tty buffer
Change-Id: I3041cd9b177d40d9f464ced49c29eb9000dccbc1
| -rw-r--r-- | include/linux/tty.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/linux/tty.h b/include/linux/tty.h index 3b0e7885150..7a175b4b241 100644 --- a/include/linux/tty.h +++ b/include/linux/tty.h @@ -269,7 +269,10 @@ struct tty_struct { void *driver_data; struct list_head tty_files; -#define N_TTY_BUF_SIZE 131072 + /* default was 4096 - at one place this is used in a short, so + * can't be big. + */ +#define N_TTY_BUF_SIZE 8192 unsigned char closing:1; unsigned short minimum_to_wake; |