summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/linux/tty.h5
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;