]> git.karo-electronics.de Git - linux-beck.git/commitdiff
tty: Reset c_line from driver's init_termios
authorPeter Hurley <peter@hurleysoftware.com>
Mon, 11 Jan 2016 06:40:57 +0000 (22:40 -0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 27 Jan 2016 23:01:44 +0000 (15:01 -0800)
After the ldisc is released, but before the tty is destroyed, the termios
is saved (in tty_free_termios()); this termios is restored if a new
tty is created on next open(). However, the line discipline is always
reset, which is not obvious in the current method. Instead, reset
as part of the restore.

Restore the original line discipline, which may not have been N_TTY.

Signed-off-by: Peter Hurley <peter@hurleysoftware.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/tty/tty_io.c
drivers/tty/tty_ldisc.c

index 524703a7df2b175d33241eada47bc852641748bc..71a9409c8d7ee50859e4faa0f06ff8ba38f4e663 100644 (file)
@@ -1387,9 +1387,10 @@ void tty_init_termios(struct tty_struct *tty)
        else {
                /* Check for lazy saved data */
                tp = tty->driver->termios[idx];
-               if (tp != NULL)
+               if (tp != NULL) {
                        tty->termios = *tp;
-               else
+                       tty->termios.c_line  = tty->driver->init_termios.c_line;
+               } else
                        tty->termios = tty->driver->init_termios;
        }
        /* Compatibility until drivers always set this */
index 713cc2d48846b05be255be258eb238a0c7aea449..b2e8210639ddc4b9fa0f9ad926311274a10f916c 100644 (file)
@@ -743,9 +743,6 @@ static void tty_ldisc_kill(struct tty_struct *tty)
        tty_ldisc_put(tty->ldisc);
        /* Force an oops if we mess this up */
        tty->ldisc = NULL;
-
-       /* Ensure the next open requests the N_TTY ldisc */
-       tty_set_termios_ldisc(tty, N_TTY);
 }
 
 /**