diff options
author | Alan Cox <alan@redhat.com> | 2009-01-02 13:44:56 +0000 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-01-02 10:19:38 -0800 |
commit | c9b3976e3fec266be25c5001a70aa0a890b6c476 (patch) | |
tree | 6742587ae3193fcfbee2b394aa4f5daca392da17 /include | |
parent | d0eafc7db8f170d534a16b5f04617e98ae2025de (diff) | |
download | linux-3.10-c9b3976e3fec266be25c5001a70aa0a890b6c476.tar.gz linux-3.10-c9b3976e3fec266be25c5001a70aa0a890b6c476.tar.bz2 linux-3.10-c9b3976e3fec266be25c5001a70aa0a890b6c476.zip |
tty: Fix PPP hang under load
Signed-off-by: Alan Cox <alan@redhat.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/tty.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/tty.h b/include/linux/tty.h index f88169787a5..bbbeaef9962 100644 --- a/include/linux/tty.h +++ b/include/linux/tty.h @@ -301,6 +301,7 @@ struct tty_struct { #define TTY_PUSH 6 /* n_tty private */ #define TTY_CLOSING 7 /* ->close() in progress */ #define TTY_LDISC 9 /* Line discipline attached */ +#define TTY_LDISC_CHANGING 10 /* Line discipline changing */ #define TTY_HW_COOK_OUT 14 /* Hardware can do output cooking */ #define TTY_HW_COOK_IN 15 /* Hardware can do input cooking */ #define TTY_PTY_LOCK 16 /* pty private */ |